@charset "UTF-8";
/*
Theme Name: senwood
Author: senwood
Version: 1.0.0
*/

/**
* 共通
*/
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    color: #2B2B2B;
    margin: 0;
}
a {
    text-decoration: none;
}
ul, ol, li {
    list-style: none;
}
div {
    box-sizing: border-box;
}
@media screen and (max-width: 768px) {
    html {
        font-size: calc(100vw / 768 * 10);
    }
}

.grecaptcha-badge { 
	visibility: hidden; 
}

/* PC/SP */
.disp_pc {
    display: block;
}
.disp_sp {
    display: none;
}
@media screen and (max-width: 768px) {
    .disp_pc {
        display: none;
    }
    .disp_sp {
        display: block;
    }
}

@media(min-width: 768px){
    a[href^="tel:"]{
        pointer-events: none;
    }
}
@media(max-width: 500px){
    body {
        overflow-x: hidden;
    }
}

.fadein {
	opacity: 0;
	transform: translateY(30px);
	transition-property: transform, opacity;
	transition-duration: 1.5s;
	transition-delay: 0s;
}
.fadein.is-active {
	opacity: 1;
	transform: translateY(0);
}


/* 
 * フォント
 */
body {
    font-size: 16px;
}
h2 {
    font-size: 22px;
}
@media(max-width: 1200px){
    body {
        font-size: clamp(14px, 1.57vw, 16px);
    }
    h2 {
        font-size: clamp(18px, 1.57vw, 22px);
    }
}
@media(max-width: 768px){
    body {
        font-size: clamp(14px, 2.5vw, 16px);
    }
}





/* 
 * ヘッダー
 */
header .inner{
    width: 85%;
    margin: 10px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .logo {
    margin: 10px 0;
}
header .logo img{
    width: 100%;
    max-width: 240px;
}
header .gnav ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .list {
    position: relative;
    margin: 0 20px;
    font-weight: 500;
}
header .list a{
    color: #2B2B2B;
}
header .list span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #333333;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s;
}
header .list span:hover::after {
    transform-origin: center top;
    transform: scale(1, 1);
}
header .list_contact {
    position: relative;
    background-color: #0068B7;
    border-radius: 20px;
    width: 140px;
    height: 40px;
    padding: 0;
    margin-left: 10px;
    text-align: center;
    transition: all .3s;
    border: solid #0068B7 1px;
}
header .list_contact a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
header .list_contact p{
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    margin: 0;
    width: 100%;
}
header .list_contact:hover{
    background-color: #ffffff;
}
header .list_contact:hover p{
    color: #0068B7;
}
@media(max-width: 1200px){
    header .inner{
        width: 95%;
        margin: 1vw auto 0 auto;
    }
    header .logo {
        margin: 1vw 0;
    }
    header .list {
        padding: 0 1.5vw;
        margin: 0 10px;
    }
    header .list_contact {
        width: clamp(120px, 11.66vw, 140px);
        height: clamp(30px, 3vw, 40px);
        padding: 0.75vw 0;
        margin-left: 1vw;
    }
}
@media(max-width: 768px){
    header .gnav {
        display: none;
    }

    header .inner{
        width: 90%;
        padding: 0.5rem 0;
    }
    header .logo {
        height: auto;
        padding: 2.5rem 0 1.5rem 0;
        margin: 0;
    }
    header .logo img{
        width: 100%;
        max-width: 200px;
    }
    header .inner{
        width: 90%;
        margin: 5px auto 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .gnav ul{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .list {
        padding: 0 20px;
        font-weight: 500;
    }
    header .list a{
        color: #2B2B2B;
    }
    header .list_contact {
        background-color: #0068B7;
        border-radius: 20px;
        width: 140px;
        padding: 8px 0;
        margin-left: 10px;
        text-align: center;
    }
    header .list_contact a{
        color: #ffffff;
    }
}

/* ハンバーガー */
.hamburger_gr {
    display: none;
}
@media(max-width: 768px){
    .hamburger_gr {
        display: block;
    }
    body.no-scroll {
        overflow: hidden;
    }
    .hamburger_gr {
        display: block;
        margin-right: 5px;
    }
    .hamburger {
        width: 25px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 30;
        position: relative;
    }
    .hamburger span {
        height: 1.5px;
        background: #333333;
        border-radius: 1px;
        transition: all 0.4s ease;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        transition: right 0.4s ease;
        z-index: 1000;
        padding: 60px 0;
        z-index: 20;
    }
    .nav-menu.active {
        display: block;
    }
    .nav-menu.active {
        right: 0;
    }  
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 40px;
    } 
    .nav-menu li {
        margin: 20px 0;
    } 
    .nav-menu a {
        color: #333333;
        text-decoration: none;
        font-size: 16px;
    }
}



/* 
 * トップページ 動画
 */
#visual {
    position: relative;
    overflow: hidden;
}
#visual .visual_sec {
    position: relative;
    height: 100vh;
    max-height: 820px;
    width: 100%;
    overflow: hidden;
}
#visual .visual_sec video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: center;
}
#visual .visual_txt_sec {
    position: absolute;
    bottom: 8vh;
    left: 0;
    width: 100%;
    margin-left: 80px;
    font-weight: 900;
}
#visual .visual_txt {
    font-family: "Zen Old Mincho", serif;
    font-size: 52px;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 20px;
    
}
#visual .visual_txt_min {
    font-family: "Zen Old Mincho", serif;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 44px;
    color: #ffffff;
}
@media(max-width: 1200px){
    #visual .visual_sec {
        max-height: 68.3vw;
    }
    #visual .visual_txt_sec {
        margin-left: 6.66vw;
    }
    #visual .visual_txt {
        font-size: 4.33vw;
        letter-spacing: 0.33vw;
        margin-bottom: 1.66vw;        
    }
    #visual .visual_txt_min {
        font-size: 1.66vw;
        letter-spacing: 0.16vw;
        line-height: 3.66vw;
    }
}
@media(max-width: 768px){
    #visual .visual_sec {
        max-height: 120rem;
    }
    #visual .visual_txt_sec {
        bottom: 4vh;
        margin-left: 4rem;
    }
    #visual .visual_txt {
        font-size: 5rem;
        letter-spacing: 0.4rem;
        margin-bottom: 2.5rem;
    }
    #visual .visual_txt_min {
        font-size: 2.8rem;
        line-height: 5.5rem;
    }
}


/* ボタン */
.cmn_button {
    position: relative;
    width: 320px;
    height: 70px;
    background-color: #FFAF13;
    margin: 20px 0;
    transition: all .3s;
}
.cmn_button p{
    position: absolute;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
    padding: 0 0 0 40px;
}
.cmn_button a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.cmn_button .link_arrow_orange{
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s;
}
.cmn_button:hover{
    background-color: #ffffff;
    font-weight: 700;
    border: solid #FFAF13 1.5px;
}
.cmn_button:hover p{
    color: #FFAF13;
}
.cmn_button:hover .link_arrow_orange{
    right: 30px;
}
@media(max-width: 1200px){
    .cmn_button {
        width: 26.6vw;
        height: 5.83vw;
        margin: 1.66vw 0;
    }
    .cmn_button p{
        font-size: 1.5vw;
        letter-spacing: 0.16vw;
        padding: 0 0 0 3.33vw;
    }
    .cmn_button .link_arrow_orange{
        right: 3.33vw;
    }
}
@media(max-width: 768px){
    .cmn_button {
        width: 70rem;
        height: 12rem;
        margin: 2rem auto;
    }
    .cmn_button p{
        font-size: 3rem;
        letter-spacing: 0.2rem;
        padding: 0.7rem 0 0 4rem;
    }
    .cmn_button .link_arrow_orange{
        right: 4rem;
    }
}


/* 矢印 */
.link_arrow {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 30px;
    background-color: #FFAF13;
}
.link_arrow img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.link_arrow_orange {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 30px;
    background-color: #ffffff;
}
.link_arrow_orange img{
    width: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media(max-width: 1200px){
    .link_arrow {
        width: 3.833vw;
        height: 3.833vw;
        border-radius: 2.5vw;
    }
    .link_arrow_orange {
        width: 3.833vw;
        height: 3.833vw;
        border-radius: 2.5vw;
    }
    .link_arrow_orange img{
        width: 1.5vw;
    }
}
@media(max-width: 768px){
    .link_arrow {
        width: 46px;
        height: 46px;
        border-radius: 30px;
    }
    .link_arrow_orange {
        width: 46px;
        height: 46px;
        border-radius: 30px;
    }
    .link_arrow_orange img{
        width: 18px;
    }
}



/* トップ 事業内容 */
.top_business {
    position: relative;
    line-height: 32px;
    width: 100vw;
    max-width: 1200px;
    margin: 80px auto 0 auto;
    padding-bottom: 180px;
    overflow: hidden;
}
.top_business_gr {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
}
.top_business_note {
    margin-bottom: 70px;
    text-align: justify;
}
.top_business_img_sm {
    position: relative;
    top: 120px;
    left: 40px;
    z-index: 1;
}
.top_business_img_sm img{
    width: 340px;
}

.top_business_img_bg {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}
.top_business_img_bg img{
    width: 520px;
}
@media(max-width: 1200px){
    .top_business {
        line-height: 2.66vw;
        margin: 6.66vw auto 0 auto;
        padding-bottom: 15vw;
    }
    .top_business_gr {
        max-width: 83.33vw;
    }
    .top_business_note {
        margin-bottom: 5.83vw;
    }
    .top_business_img_sm {
        top: 10vw;
        left: 3.33vw;
    }
    .top_business_img_sm img{
        width: 28.3vw;
    }
    
    .top_business_img_bg img{
        width: 43.3vw;
    }
}
@media(max-width: 768px){
    .top_business {
        line-height: 4rem;
        width: 90%;
        margin: 2rem auto 0 auto;
        padding-bottom: 4rem;
    }
    .top_business_gr {
        flex-direction: column;
        max-width: 100%;
    }
    .top_business_note {
        margin-bottom: 6rem;
        line-height: 5rem;
    }
    .top_business_img_sm {
        top: 4rem;
        left: auto;
    }
    .top_business_img_sm img{
        width: 34rem;
    }
    
    .top_business_img_bg {
        position: relative;
        top: -6rem;
        text-align: right;
    }
    .top_business_img_bg img{
        width: 56rem;
    }
}


/* トップスライダー */
.top_slider {
    margin: 40px auto;
}
.swiper-wrapper {
    transition-timing-function: linear;
}
.swiper-slide img {
    height: auto;
    width: 100%;
}
@media(max-width: 1200px){
    .top_slider {
        margin: 3.33vw auto;
    }
}


/* トップ お知らせ */
.top_news {
    max-width: 1000px;
    margin: 20px auto 140px auto;
}
.top_news .page_title {
    width: auto;
    margin-bottom: 80px;
}
.top_news_gr {
    display: flex;
    justify-content: space-between;
}

.top_news_parts {
    position: relative;
    padding-top: 45px;
    width: 95%;
    max-width: 600px;
    margin: 0;
    box-sizing: border-box; 
}
.top_news_parts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.top_news_parts li {
    position: relative;
    padding: 35px 25px;
    font-size: 16px;
}
.top_news_parts li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #0068B7;
}
.top_news_parts dl {
    display: flex;
}
.top_news_parts dd {
    flex: 1;
    margin-left: 40px;
}
.top_news_parts dd a {
    color: #333333;
    text-decoration: none;
}
@media(max-width: 1200px){
    .top_news {
        max-width: 83.3vw;
        margin: 1.66vw auto 11.66vw auto;
    }
    .top_news .page_title {
        margin-bottom: 6.66vw;
    }
    
    .top_news_parts {
        padding-top: 3.75vw;
        max-width: 50vw;
    }
    .top_news_parts li {
        padding: 2.916vw 2.083vw;
        font-size: 1.33vw;
    }
    .top_news_parts dd {
        margin-left: 3.33vw;
    }
}
@media(max-width: 768px){
    .top_news {
        width: 90%;
        max-width: none;
        margin: 2rem auto 20rem auto;
    }
    .top_news_gr {
        position: relative;
        flex-direction: column;
    }
    
    .top_news_parts {
        padding-top: 0;
        width: 100%;
        max-width: none;
        padding-bottom: 20rem;
    }
    .top_news_parts li {
        padding: 3rem 2rem;
        font-size: 15px;
    }
    .top_news_parts dd {
        margin-left: 5rem;
    }

    .top_news_txt .cmn_button {
        position: absolute;
        bottom: -2rem;
    }
}


/* 
 * お知らせ アーカイブページ
 */
.news_archive {
    width: 90%;
    max-width: 800px;
    line-height: 32px;
    margin: 20px auto 140px auto;
    position: relative;
    box-sizing: border-box; 
}
.news_archive ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.news_archive li {
    position: relative;
    padding: 35px 25px;
    font-size: 16px;
}
.news_archive li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #0068B7;
}
.news_archive dl {
    display: flex;
}
.news_archive dd {
    flex: 1;
    margin-left: 40px;
}
.news_archive dd a {
    color: #333333;
    text-decoration: none;
}
@media(max-width: 1200px){
    .news_archive {
        max-width: 70vw;
    }
    .news_archive li {
        padding: 2.916vw 2.083vw;
        font-size: 1.33vw;
    }
    .news_archive dd {
        margin-left: 3.33vw;
    }
}
@media(max-width: 768px){
    .news_archive {
        width: 90%;
        max-width: none;
        padding-bottom: 10rem;
    }
    .news_archive li {
        padding: 3rem 2rem;
        font-size: 15px;
    }
    .news_archive dd {
        margin-left: 5rem;
    }
}

/* 
 * お知らせ シングルページ
 */
#news_single {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    box-sizing: border-box; 
    padding: 90px 0; 
}
#news_single a{
    text-decoration: underline;
}
#news_single h2{
    font-size: 22px;
    font-weight: bold;
    margin-bottom: .6em;
    letter-spacing: 1.5px;
    line-height: 32px;
    text-align: left;
}
#news_single .news_date {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-align: left;
    padding-bottom: 30px;
    margin-bottom: 60px;
    border-bottom: .5px solid #0068B7;
}
#news_single .news_contents {
    letter-spacing: 1.5px;
    line-height: 32px;
    text-align: left;
}
#news_single .single-news_btn {
    width: 180px;
    height: 40px;
    background-color: #0068B7;
    color: #ffffff;
    padding: 5px;
    margin: 40px auto;
    text-align: center;
    border-radius: 5px;
}
#news_single .single-news_btn {
    width: 180px;
    height: 40px;
    background-color: #0068B7;
    color: #ffffff;
    padding: 5px;
    margin: 40px auto;
    text-align: center;
    border-radius: 5px;
}
#news_single .cmn_button {
    height: 64px;
    margin: 160px auto 40px auto;
}
#news_single .cmn_button a{
    text-decoration: none;
}
  @media screen and (max-width: 768px) {
    #news_single .single-news_btn {
        font-size: 14px;
        padding-top: 10px;
    }
  }


/* 
 * 子ページタイトル
 */
.page_top {
    position: relative;
}
.page_top_img {
    width: 100vw;
    height: 260px;
}
.page_top_img img{
    width: 100vw;
    height: 260px;
    object-fit: cover;
}
.page_top_title {
    width: 1000px;
    margin: 0 auto;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media(max-width: 1200px){
    .page_top_img {
        height: 21.66vw;
    }
    .page_top_img img{
        height: 21.66vw;
    }
    .page_top_title {
        width: 83.33vw;
        font-size: 2.5vw;
        letter-spacing: 0.25vw;
    }
}
@media(max-width: 768px){
    .page_top_img {
        height: 200px;
    }
    .page_top_img img{
        height: 200px;
    }
    .page_top_title {
        width: 85%;
        font-size: 5rem;
        letter-spacing: 3px;
    }
}


/* 
 * コンテンツタイトル
 */
.page_title {
    width: 1000px;
    margin: 80px auto 40px auto;
}
.page_title_en {
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0;
    margin: 0;
}
.page_title_jp {
    font-size: 20px;
    font-weight: 700;
    color: #FFAF13;
    letter-spacing: 2px;
    margin: 10px auto;
}
@media screen and (max-width: 1200px) {
    .page_title {
        width: 83.33vw;
        margin: 6.66vw auto 3.33vw auto;
    }
    .page_title_en {
        font-size: 4.166vw;
    }
    .page_title_jp {
        font-size: 1.66vw;
        letter-spacing: 0.166vw;
        margin: 0.833vw auto;
    }
}
@media screen and (max-width: 768px) {
    .page_title {
        width: 90vw;
        margin: 12rem auto 6rem auto;
    }
    .page_title_en {
        font-size: 5rem;
        line-height: 4rem;
    }
    .page_title_jp {
        font-size: 2.5rem;
        margin: 1rem auto;
    }
}
@media screen and (max-width: 540px) {
    .page_title_en {
        font-size: 8rem;
        line-height: 10rem;
    }
    .page_title_jp {
        font-size: 3.5rem;
    }
}



/* 
 * 会社概要ページ
 */
/* 会社概要 */
.page_company_table {
    max-width: 800px;
    line-height: 32px;
    margin: 80px auto;
}
.page_company_table dl{
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.page_company_table dl dt {
    width: 120px;
    padding: 25px 0 15px 15px;
    margin: 0;
    border-bottom: 1px solid #FFD480;
}
.page_company_table dl dd {
    width: 650px;
    padding: 25px 0 15px 15px;
    margin: 0;
    border-bottom: 1px solid #E3E3E3;
}
.page_company_table dl dd iframe {
    width: 100%;
    margin-top: 20px;
}
@media screen and (max-width: 1200px) {
    .page_company_table {
        max-width: 66.66vw;
        line-height: 2.66vw;
        margin: 6.66vw auto;
    }
    .page_company_table dl{
        font-size: 1.33vw;
    }
    .page_company_table dl dt {
        width: 10vw;
        padding: 2.0833vw 0 1.25vw 1.25vw;
        border-bottom: 0.0833vw solid #FFD480;
    }
    .page_company_table dl dd {
        width: 54vw;
        padding: 2.0833vw 0 1.25vw 1.25vw;
        border-bottom: 0.0833vw solid #E3E3E3;
    }
}
@media screen and (max-width: 768px) {
    .page_company_table {
        width: 90%;
        max-width: none;
        line-height: 1rem;
        margin: 6rem auto;
    }
    .page_company_table dl{
        font-size: 2.4rem;
    }
    .page_company_table dl dt {
        width: 20rem;
        padding: 3rem 2rem;
        border-bottom: 1px solid #FFD480;
    }
    .page_company_table dl dd {
        width: 100%;
        padding: 3rem 2rem;
        border-bottom: 1px solid #E3E3E3;
        line-height: 3.5rem;
    }
}
@media screen and (max-width: 540px) {
    .page_company_table {
        line-height: 2rem;
        margin: 8rem auto;
    }
    .page_company_table dl{
        font-size: 3rem;
    }
    .page_company_table dl dt {
        padding: 5rem 3rem;
    }
    .page_company_table dl dd {
        padding: 4rem 3rem;
        line-height: 4.5rem;
    }
}


/* センウッドの工場 */
.page_factory {
    max-width: 1000px;
    margin: 120px auto;
}
.page_factory_gr {
    display: flex;  
    gap: 45px; 
}
.page_factory_txt {
    padding-left: 15px;
}
.page_factory_txt_title {
    font-size: 30px;
    font-weight: 600;
    margin: 20px 0 40px 0;
}
.page_factory_txt_note {
    font-size: 17px;
    line-height: 32px;
    text-align: justify;
}
.page_factory_main_img img{
    width: 540px;
}

.page_factory_gallery {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.page_factory_gallery_img {
    width: 24%;
}
.page_factory_gallery_img img{
    width: 240px;
}
@media(max-width: 1200px){
    .page_factory {
        max-width: 83.33vw;
        margin: 10vw auto;
    }
    .page_factory_gr {
        gap: 3.75vw; 
    }
    .page_factory_txt {
        padding-left: 1.25vw;
    }
    .page_factory_txt_title {
        font-size: 2.5vw;
        margin: 1.66vw 0 3.33vw 0;
    }
    .page_factory_txt_note {
        font-size: 1.416vw;
        line-height: 2.66vw;
    }
    .page_factory_main_img img{
        width: 45vw;
    }
    
    .page_factory_gallery {
        margin-top: 0.833vw;
    }
    .page_factory_gallery_img img{
        width: 20vw;
    }
}
@media screen and (max-width: 768px) {
    .page_factory {
        width: 90%;
        max-width: none;
        margin: 12rem auto 20rem auto;
    }
    .page_factory_gr {
        flex-direction: column;
        gap: 5rem; 
    }
    .page_factory_txt {
        padding-left: 0;
    }
    .page_factory_txt_title {
        font-size: 4.5rem;
        line-height: 6.5rem;
        margin: 1rem 0 3rem 0;
    }
    .page_factory_txt_note {
        font-size: 2.5rem;
        line-height: 4.5rem;
    }
    .page_factory_main_img img{
        width: 100%;
    }
    
    .page_factory_gallery {
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 1rem;
    }
    .page_factory_gallery_img {
        width: 49%;
    }
    .page_factory_gallery_img img{
        width: 100%;
    }
}
@media screen and (max-width: 540px) {
    .page_factory_txt_title {
        font-size: 5.5rem;
        line-height: 8rem;
        margin: 1rem 0 4rem 0;
    }
    .page_factory_txt_note {
        font-size: 3rem;
        line-height: 5.5rem;
    }
}


/* 
 * 事業内容ページ
 */
/* 生活の中にあるセンウッド */
.page_life {
    width: 1000px;
    margin: 0 auto;
    padding: 120px 0;
}
.page_life_intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.page_life_intro_txt {
    width: 440px;
}
.page_life_intro_title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}
.page_life_intro_note {
    font-size: 17px;
    line-height: 36px;
}
.page_life_intro_img img{
    width: 500px;
}

.page_life_gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 0;
    margin: 80px auto;
}
.page_life_gallery_img {
    position: relative;
    width: 300px;
    height: 200px;
    overflow: hidden;
}
.page_life_gallery_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.page_life_gallery_img p{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 25px;
    color: #ffffff;
    margin: 0;
    font-size: 14px;
    text-align: center;
    padding-top: 4px;
}
.page_life_gallery_img:nth-of-type(2n-1)>.page_life_gallery_p{
    background-color: #0068B7;
}
.page_life_gallery_img:nth-of-type(2n)>.page_life_gallery_p{
    background-color: #FFAF13;
}
@media(max-width: 1200px){
    .page_life {
        width: 83.33vw;
        padding: 10vw 0;
    }
    .page_life_intro_txt {
        width: 36.66vw;
    }
    .page_life_intro_title {
        font-size: 2.33vw;
        margin-bottom: 3.33vw;
    }
    .page_life_intro_note {
        font-size: 1.416vw;
        line-height: 3vw;
    }
    .page_life_intro_img img{
        width: 41.66vw;
    }
    
    .page_life_gallery {
        gap: 2.5vw 0;
        margin: 6.66vw auto;
    }
    .page_life_gallery_img {
        width: 25vw;
        height: 16.66vw;
    }
    .page_life_gallery_img p{
        width: 10vw;
        height: 2.083vw;
        font-size: 1.166vw;
        padding-top: 0.33vw;
    }
}
@media screen and (max-width: 768px) {
    .page_life {
        width: 90%;
        max-width: none;
        padding: 14rem 0;
    }
    .page_life_intro {
        flex-direction: column;
    }
    .page_life_intro_txt {
        width: 100%;
        margin-bottom: 4rem;
    }
    .page_life_intro_title {
        font-size: 4.5rem;
        margin-bottom: 3rem;
    }
    .page_life_intro_note {
        font-size: 2.5rem;
        line-height: 4.5rem;
    }
    .page_life_intro_img img{
        width: 100%;        
    }
    
    .page_life_gallery {
        gap: 3rem 0;
        margin: 2rem auto;
    }
    .page_life_gallery_img {
        width: 48%;
        height: auto;
    }
    .page_life_gallery_img p{
        width: 14rem;
        height: 3.2rem;
        font-size: 1.8rem;
        letter-spacing: 0;
        padding-top: 0.2rem;
    }
}
@media screen and (max-width: 540px) {
    .page_life_intro_title {
        font-size: 5.5rem;
        margin-bottom: 4rem;
    }
    .page_life_intro_note {
        font-size: 3rem;
        line-height: 5.5rem;
    }
    
    .page_life_gallery_img p{
        width: 18rem;
        height: 4rem;
        font-size: 2.4rem;
    }
}


/* Howtoリンク */
.page_howto_link_gr {
    position: relative;
    width: 100vw;
    margin: 0 auto 40px auto;
}
.page_howto_link_bk {
    width: 100vw;
    height: 460px;
    overflow: hidden;
}
.page_howto_link_bk img{
    width: 100vw;
    height: 460px;
    object-fit: cover;
    object-position: left 40%;
    display: block;
}
.page_howto_link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(1);
    transition: transform .3s cubic-bezier(.25,.8,.25,1);
    width: 800px;
    height: 320px;
    background-color: rgba(255,255,255,0.95);
    transition: all .3s;
    will-change: transform;
}
.page_howto_link_inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.page_howto_link_inner a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.page_howto_link_title_en {
    font-size: 50px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    padding-top: 70px;
    padding-left: 120px;
}
.page_howto_link_title_jp {
    font-size: 20px;
    font-weight: 600;
    color: #FFAF13;
    margin-bottom: 20px;
    padding-left: 120px;
}
.page_howto_link_note {
    font-size: 17px;
    padding-left: 120px;
}
.page_howto_link .link_arrow {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    right: 120px;
    transition: all .3s;
}
.page_howto_link:hover {
    transform: translate(-50%,-50%) scale(1.02);
}
.page_howto_link:hover .link_arrow {
    right: 100px;
}
@media(max-width: 1200px){
    .page_howto_link_gr {
        margin: 0 auto 3.33vw auto;
    }
    .page_howto_link_bk {
        height: 38.33vw;
    }
    .page_howto_link_bk img{
        height: 38.33vw;
    }
    .page_howto_link {
        width: 66.66vw;
        height: 26.66vw;
    }
    .page_howto_link_title_en {
        font-size: 4.16vw;
        padding-top: 5.83vw;
        padding-left: 10vw;
    }
    .page_howto_link_title_jp {
        font-size: 1.66vw;
        margin-bottom: 1.66vw;
        padding-left: 10vw;
    }
    .page_howto_link_note {
        font-size: 1.416vw;
        padding-left: 10vw;
    }
    .page_howto_link .link_arrow {
        right: 10vw;
    }
}
@media screen and (max-width: 768px) {
    .page_howto_link_gr {
        margin: 0 auto 8rem auto;
    }
    .page_howto_link_bk {
        height: 60rem;
    }
    .page_howto_link_bk img{
        width: 100vw;
        height: 60rem;
        object-fit: cover;
        object-position: left 40%;
        display: block;
    }
    .page_howto_link {
        width: 70%;
        height: 45rem;
    }
    .page_howto_link_title_en {
        font-size: 5rem;
        padding-top: 8rem;
        padding-left: 6rem;
    }
    .page_howto_link_title_jp {
        font-size: 2.5rem;
        margin-bottom: 4rem;
        padding-left: 6rem;
    }
    .page_howto_link_note {
        font-size: 2.2rem;
        padding-left: 6rem;
    }
    .page_howto_link .link_arrow {
        top: auto;
        transform: none;
        bottom: 10rem;
        right: 6rem;
    }
}
@media screen and (max-width: 540px) {
    .page_howto_link_bk {
        height: 90rem;
    }
    .page_howto_link_bk img{
        height: 90rem;
    }
    .page_howto_link {
        width: 92%;
        height: 62rem;
    }
    .page_howto_link_title_en {
        font-size: 8rem;
        padding-top: 12rem;
    }
    .page_howto_link_title_jp {
        font-size: 3.5rem;
    }
    .page_howto_link_note {
        font-size: 3rem;
    }
}



/* 製品情報 */
.page_product {
    max-width: 1000px;
    line-height: 32px;
    margin: 120px auto;
}
.page_product_gr {
    margin: 40px auto 80px auto;
}
.page_product_txt {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page_product_txt_title {
    border-left: solid 6px #FFAF13;
    padding: 25px 0 25px 40px;
}
.page_product_txt_title_main {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 2px;
}
.page_product_txt_note {
    font-size: 16px;
    width: 640px;
    text-align: justify;
    margin-right: 100px;
}

.page_product_img_gr {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 20px auto;
}
.page_product_img {
    overflow: hidden;
    flex: 1;
}
.page_product_img img{
    width: 100%;
    object-fit: cover;
    display: block;
}

.page_product_gr_other {
    border-top: solid 4px #FFAF13;
}
.page_product_gr_other .page_product_other_txt {
    flex: 1;
    margin-top: 20px;
    padding-left: 10px;
}
.page_product_gr_other .page_product_img {
    flex: 1;
}
@media(max-width: 1200px){
    .page_product {
        max-width: 83.33vw;
        line-height: 2.66vw;
        margin: 10vw auto;
    }
    .page_product_gr {
        margin: 3.33vw auto 6.66vw auto;
    }
    .page_product_txt_title {
        border-left: solid 0.5vw #FFAF13;
        padding: 2.083vw 0 2.083vw 3.33vw;
    }
    .page_product_txt_title_main {
        font-size: 2.5vw;
        margin-bottom: 0.083vw;
    }
    .page_product_txt_note {
        font-size: 1.33vw;
        width: 53.33vw;
        margin-right: 8.33vw;
    }
    
    .page_product_img_gr {
        gap: 3.33vw;
        margin: 1.66vw auto;
    }
    
    .page_product_gr_other {
        border-top: solid 0.33vw #FFAF13;
    }
    .page_product_gr_other .page_product_other_txt {
        margin-top: 1.66vw;
        padding-left: 0.833vw;
    }
}
@media screen and (max-width: 768px) {
    .page_product {
        width: 90%;
        max-width: none;
        line-height: 4rem;
        margin: 14rem auto;
    }
    .page_product_gr {
        margin: 6rem auto;
    }
    .page_product_txt {
        flex-direction: column;
        align-items: flex-start;
    }
    .page_product_txt_title {
        border-left: solid 6px #FFAF13;
        padding: 2rem 0 2.5rem 4rem;
    }
    .page_product_txt_title_main {
        font-size: 3.5rem;
        margin-bottom: 0.1rem;
    }
    .page_product_txt_note {
        font-size: 2.2rem;
        width: 100%;
        margin-top: 2rem;
        margin-right: 0;
        line-height: 4rem;
    }
    .page_product_img_gr {
        gap: 1.5rem;
        margin: 2rem auto;
    }
    .page_product_img img{
        height: 20rem;
    }
    .page_product_gr_other {
        border-top: solid 4px #FFAF13;
    }
    .page_product_gr_other .page_product_img_gr {
        flex-wrap: wrap;
    }
    .page_product_gr_other .page_product_other_txt {
        flex-basis: 100%;
        font-size: 2.2rem;
        line-height: 4rem;
        margin-top: 2rem;
        padding-left: 0;
    }
}
@media screen and (max-width: 540px) {
    .page_product_gr {
        margin: 8rem auto 12rem auto;
    }
    .page_product_txt_title {
        padding: 3.5rem 0 4rem 6rem;
    }
    .page_product_txt_title_main {
        font-size: 5rem;
        margin-bottom: 0.1rem;
    }
    .page_product_txt_note {
        font-size: 3rem;
        margin-top: 3rem;
        line-height: 5rem;
    }
    .page_product_img_gr {
        margin: 4rem auto;
    }
    .page_product_gr_other .page_product_other_txt {
        font-size: 3rem;
        line-height: 5rem;
    }
}


/* 製品実績 */
.page_portfolio {
    max-width: 1000px;
    line-height: 32px;
    margin: 120px auto;
}
.page_portfolio_gr {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}
.page_portfolio_parts_img {
    width: 380px;
    height: 240px;
    overflow: hidden;
}
.page_portfolio_parts_img img{
    width: 380px;
    object-fit: cover;
    display: block;
}
.page_portfolio_parts_txt {
    position: relative;
    background-color: #F9F9F9;
    padding: 22px 28px;
}
.page_portfolio_parts_txt::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #0068B7;
}
.page_portfolio_parts_title {
    font-size: 18px;
    font-weight: 600;
}
.page_portfolio_parts_note {
    font-size: 15px;
}
@media(max-width: 1200px){
    .page_portfolio {
        max-width: 83.33vw;
        line-height: 2.66vw;
        margin: 10vw auto;
    }
    .page_portfolio_gr {
        max-width: 66.66vw;
        gap: 3.33vw;
    }
    .page_portfolio_parts_img {
        width: 31.66vw;
        height: 20vw;
    }
    .page_portfolio_parts_img img{
        width: 31.66vw;
    }
    .page_portfolio_parts_txt {
        padding: 1.833vw 2.33vw;
    }
    .page_portfolio_parts_txt::after {
        border-left: 1.25vw solid transparent;
        border-bottom: 1.25vw solid #0068B7;
    }
    .page_portfolio_parts_title {
        font-size: 1.5vw;
    }
    .page_portfolio_parts_note {
        font-size: 1.25vw;
    }
}
@media screen and (max-width: 768px) {
    .page_portfolio {
        width: 90%;
        max-width: none;
        line-height: 4rem;
        margin: 20rem auto 30rem auto;
    }
    .page_portfolio_gr {
        max-width: none;
        gap: 6rem;
    }
    .page_portfolio_parts_img {
        width: 100%;
        height: auto;
    }
    .page_portfolio_parts_img img{
        width: 100%;
    }
    .page_portfolio_parts_txt {
        padding: 4rem 5rem;
    }
    .page_portfolio_parts_txt::after {
        border-left: 15px solid transparent;
        border-bottom: 15px solid #0068B7;
    }
    .page_portfolio_parts_title {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    .page_portfolio_parts_note {
        font-size: 2.2rem;
        line-height: 3.5rem;
    }
}
@media screen and (max-width: 540px) {
    .page_portfolio_parts_title {
        font-size: 3.5rem;
    }
    .page_portfolio_parts_note {
        font-size: 2.8rem;
        line-height: 4.5rem;
    }
}


/* 
 * 製品ができるまでページ
 */
.page_howto_intro {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 120px auto 0 auto;
}
.page_howto_intro_txt {
    width: 460px;
}
.page_howto_intro_note {
    line-height: 32px;
    text-align: justify;
}
.page_howto_intro_note span{
    font-weight: 700;
    color: #0068B7;
}
.page_howto_intro_img01 img{
    width: 380px;
}
.page_howto_intro_img02 {
    position: absolute;
    bottom: -80px;
    right: 0;
    box-shadow: 7px 7px 4px #eeeeee;
}
.page_howto_intro_img02 img{
    width: 240px;
}

.page_howto_sec {
    width: 1200px;
    margin: 0 auto;
    padding: 120px 0;
}
.page_howto_parts {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 60px auto;
}
.page_howto_right {
    justify-content: flex-start;
}
.page_howto_left {
    justify-content: flex-end;
}
.page_howto_img img{
    width: 580px;
}
.page_howto_txt {
    width: 560px;
}
.page_howto_left .page_howto_txt {
    padding-left: 20px;
}
.page_howto_title {
    display: flex;
    align-items: center;
    gap: 30px;
}
.page_howto_title_no {
    font-size: 80px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    color: #FFAF13;
}
.page_howto_title_txt {
    font-size: 26px;
    font-weight: 600;
}
.page_howto_note_gr {
    background-color: #FFF6E6;
    border-radius: 10px;
}
.page_howto_note {
    font-size: 16px;
    text-align: justify;
    line-height: 30px;
    padding: 30px 40px 20px 30px;
}
.page_howto_note_sub {
    padding: 30px 20px 30px 0;
    text-align: center;
}
.page_howto_note_sub_img img{
    width: 160px;
}
.page_howto_note_sub_txt {
    font-size: 13px;
}
.page_howto_note_gr_02 {
    display: flex;
}
.page_howto_note_gr_02 .page_howto_note {
    width: 60%;
}
.page_howto_note_sub_gr {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    padding: 0 20px 10px 0;
}
.page_howto_note_sub_gr .page_howto_note_sub{
    padding: 0 20px 10px 0;
}

.page_howto_comment {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    position: relative;
}
.page_howto_comment::before {
    right: 100px;
    -webkit-transform: rotate(33deg);
    transform: rotate(33deg);
    position: absolute;
    top: 10px;
    display: block;
    width: 30px;
    height: 0;
    content: "";
    border-top: 3px solid #FFAF13;
    border-radius: 3px
}
.page_howto_comment::after {
    right: 100px;
    -webkit-transform: rotate(-33deg);
    transform: rotate(-33deg);
    position: absolute;
    bottom: 10px;
    display: block;
    width: 30px;
    height: 0;
    content: "";
    border-top: 3px solid #FFAF13;
    border-radius: 3px;
}
.page_howto_comment_note {
    font-size: 13px;
    margin-top: -10px;
}
.page_howto_comment_img img{
    position: relative;
    right: 20px;
    width: 70px;
    z-index: 2;
}
@media(max-width: 1200px){
    .page_howto_intro {
        gap: 5vw;
        max-width: 83.33vw;
        margin: 10vw auto 0 auto;
    }
    .page_howto_intro_txt {
        width: 38.33vw;
    }
    .page_howto_intro_note {
        line-height: 3vw;
    }
    .page_howto_intro_img01 img{
        width: 31.66vw;
    }
    .page_howto_intro_img02 {
        bottom: -6.66vw;
    }
    .page_howto_intro_img02 img{
        width: 20vw;
    }
    
    .page_howto_sec {
        width: 100vw;
        padding: 10vw 0;
    }
    .page_howto_parts {
        gap: 3.33vw;
        margin: 5vw auto;
    }
    .page_howto_img img{
        width: 48.33vw;
    }
    .page_howto_txt {
        width: 46.66vw;
    }
    .page_howto_left .page_howto_txt {
        padding-left: 1.66vw;
    }
    .page_howto_title {
        gap: 2.5vw;
    }
    .page_howto_title_no {
        font-size: 6.66vw;
    }
    .page_howto_title_txt {
        font-size: 2.166vw;
    }
    .page_howto_note_gr {
        border-radius: 0.833vw;
    }
    .page_howto_note {
        font-size: clamp(14px, 1.33vw, 16px);
        line-height: clamp(22px, 2.5vw, 26px);
        padding: 2.5vw 3.33vw 1.66vw 2.5vw;
        letter-spacing: 0.08vw;
    }
    .page_howto_note_sub {
        padding: 2.5vw 1.66vw 2.5vw 0;
    }
    .page_howto_note_sub_img img{
        width: 13.33vw;
    }
    .page_howto_note_sub_txt {
        font-size: 1.0833vw;
        font-size: clamp(10.5px, 1.0833vw, 13px);
    }
    .page_howto_note_sub_gr {
        gap: 3.33vw;
        padding: 0 1.66vw 0.833vw 0;
    }
    .page_howto_note_sub_gr .page_howto_note_sub{
        padding: 0 1.66vw 0.833vw 0;
    }
    
    .page_howto_comment {
        gap: 3.33vw;
    }
    .page_howto_comment::before {
        right: 8.33vw;
        top: 0.833vw;
        width: 2.5vw;
        border-top: 0.25vw solid #FFAF13;
        border-radius: 0.25vw
    }
    .page_howto_comment::after {
        right: 8.33vw;
        bottom: 0.833vw;
        width: 2.5vw;
        border-top: 0.25vw solid #FFAF13;
        border-radius: 0.25vw;
    }
    .page_howto_comment_note {
        font-size: 1.0833vw;
        margin-top: -0.833vw;
    }
    .page_howto_comment_img img{
        right: 1.66vw;
        width: 5.833vw;
    }
}
@media screen and (max-width: 768px) {
    .page_howto_intro {
        flex-direction: column;
        gap: 4rem;
        width: 90%;
        max-width: none;
        margin: 8rem auto 0 auto;
    }
    .page_howto_intro_txt {
        width: 100%;
    }
    .page_howto_intro_note {
        line-height: 3.5rem;
    }
    .page_howto_intro_img01 img{
        width: 80%;
    }
    .page_howto_intro_img02 {
        position: absolute;
        bottom: -20rem;
        right: 0;
    }
    .page_howto_intro_img02 img{
        width: 35rem;
    }

    .page_howto_sec {
        width: 90%;
        padding: 16rem 0;
    }
    .page_howto_parts {
        flex-direction: column;
        gap: 2rem;
        margin: 10rem auto;
    }
    .page_howto_right {
        flex-direction: column-reverse;
        justify-content: center;
    }
    .page_howto_left {
        justify-content: center;
    }
    .page_howto_img img{
        width: 100%;
    }
    .page_howto_txt {
        width: 100%;
    }
    .page_howto_left .page_howto_txt {
        padding-left: 0;
    }
    .page_howto_title {
        gap: 2rem;
    }
    .page_howto_title_no {
        font-size: 10rem;
    }
    .page_howto_title_txt {
        font-size: 4rem;
    }
    .page_howto_note_gr {
        border-radius: 10px;
        padding-bottom: 2.5rem;
    }
    .page_howto_note {
        font-size: 2.2rem;
        line-height: 4rem;
        padding: 5rem 6rem 2rem 5rem;
    }
    .page_howto_note_sub {
        padding: 0 0 3rem 0;;
    }
    .page_howto_note_sub_img img{
        width: 32rem;
    }
    .page_howto_note_sub_txt {
        font-size: 2rem;
        letter-spacing: 0.1rem;
    }
    .page_howto_note_gr_02 {
        flex-direction: column;
    }
    .page_howto_note_gr_02 .page_howto_note {
        width: 100%;
    }
    .page_howto_note_sub_gr {
        justify-content: center;
        gap: 2.5rem;
        padding: 0;
    }
    .page_howto_note_sub_gr .page_howto_note_sub{
        padding: 0;
    }

    .page_howto_note_sub_gr .page_howto_comment {
        flex-direction: column;
        gap: 2rem;
    }
    .page_howto_note_sub_gr .page_howto_comment::before {
        right: -3rem;
        -webkit-transform: rotate(-60deg);
        transform: rotate(-60deg);
        top: 4rem;
        width: 6rem;
        border-top: 3px solid #FFAF13;
        border-radius: 3px
    }
    .page_howto_note_sub_gr .page_howto_comment::after {
        right: auto;
        left: -3.4rem;
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        top: 4rem;
        bottom: auto;
        width: 6rem;
        border-top: 3px solid #FFAF13;
        border-radius: 3px;
    }
    .page_howto_comment {
        justify-content: center;
        gap: 2rem;
        margin: 3rem 0;
    }
    .page_howto_comment::before {
        right: 26rem;
        top: 0;
        width: 6rem;
        border-top: 3px solid #FFAF13;
        border-radius: 3px
    }
    .page_howto_comment::after {
        right: 26rem;
        bottom: -1rem;
        width: 6rem;
        border-top: 3px solid #FFAF13;
        border-radius: 3px;
    }
    .page_howto_comment_note {
        font-size: 1.8rem;
        margin: 0 2rem;
    }
    .page_howto_comment_img img{
        right: 2rem;
        width: 12rem;
    }
}
@media screen and (max-width: 540px) {
    .page_howto_intro {
        gap: 6rem;
        margin: 12rem auto 0 auto;
    }
    .page_howto_intro_note {
        line-height: 4.6rem;
    }
    .page_howto_intro_img01 img{
        width: 95%;
    }
    .page_howto_intro_img02 img{
        width: 40rem;
    }

    .page_howto_sec {
        padding: 18rem 0;
    }
    
    .page_howto_title {
        gap: 4rem;
    }
    .page_howto_title_no {
        font-size: 14rem;
    }
    .page_howto_title_txt {
        font-size: 4.5rem;
    }
    .page_howto_note {
        font-size: 3rem;
        line-height: 4.5rem;
    }
    .page_howto_note_sub_txt {
        font-size: 2.5rem;
    }

    .page_howto_comment::before {
        right: 24rem;
    }
    .page_howto_comment::after {
        right: 24rem;
    }
    .page_howto_comment_note {
        font-size: 2.2rem;
    }
}


/* 
 * 採用情報ページ
 */
/* メッセージ */
.page_recruit_message {
    width: 1000px;
    margin: 0 auto;
    padding: 20px 0 40px 0;
}
.page_recruit_message_gr {
    display: flex;
    gap: 60px;
}
.page_recruit_message_img img{
    width: 240px;
    height: 320px;
    object-fit: cover;
    margin-top: 10px;
}
.page_recruit_message_txt {
    flex: 1;
    padding-right: 40px;
}
.page_recruit_message_title {
    font-size: 30px;
    font-weight: 600;
    color: #0068B7;
    margin-bottom: 20px;
}
.page_recruit_message_note {
    font-size: 15.5px;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 20px;
}
.page_recruit_message_name {
    font-size: 14px;
    text-align: right;
}
.page_recruit_message_name span{
    font-size: 32px;
    font-family: "Zen Old Mincho", serif;
    letter-spacing: 2px;
    padding-left: 15px;
}
@media(max-width: 1200px){
    .page_recruit_message {
        width: 83.33vw;
        padding: 1.66vw 0 3.33vw 0;
    }
    .page_recruit_message_gr {
        gap: 5vw;
    }
    .page_recruit_message_img img{
        width: 20vw;
    }
    .page_recruit_message_txt {
        padding-right: 3.33vw;
    }
    .page_recruit_message_title {
        font-size: 2.5vw;
        margin-bottom: 1.66vw;
    }
    .page_recruit_message_note {
        font-size: 1.3vw;
        line-height: 2.5vw;
        margin-bottom: 1.66vw;
    }
    .page_recruit_message_name {
        font-size: 1.166vw;
    }
    .page_recruit_message_name span{
        font-size: 2.66vw;
        letter-spacing: 0.166vw;
        padding-left: 1.25vw;
    }
}
@media screen and (max-width: 768px) {
    .page_recruit_message {
        width: 90%;
        padding: 2rem 0 10rem 0;
    }
    .page_recruit_message_gr {
        align-items: flex-start;
        flex-direction: column;
        gap: 4rem;
    }
    .page_recruit_message_img {
        text-align: center;
        width: 70%;
    }
    .page_recruit_message_img img{
        width: 100%;
        height: 50rem;
        object-fit: cover;
        object-position: top;
    }
    .page_recruit_message_txt {
        padding-right: 0;
    }
    .page_recruit_message_title {
        font-size: 4rem;
        margin-bottom: 3rem;
    }
    .page_recruit_message_note {
        font-size: 2.2rem;
        line-height: 4.2rem;
        text-align: justify;
        margin-bottom: 4rem;
    }
    .page_recruit_message_name {
        font-size: 2rem;
    }
    .page_recruit_message_name span{
        font-size: 3.5rem;
        letter-spacing: 0.5rem;
        padding-left: 2rem;
    }
}
@media screen and (max-width: 540px) {
    .page_recruit_message_gr {
        align-items: center;
    }
    .page_recruit_message_img {
        width: 100%;
    }
    .page_recruit_message_img img{
        height: 70rem;
    }
    .page_recruit_message_title {
        font-size: 5.5rem;
    }
    .page_recruit_message_note {
        font-size: 3rem;
        line-height: 5.5rem;
    }
    .page_recruit_message_name {
        font-size: 2.5rem;
    }
    .page_recruit_message_name span{
        font-size: 4.5rem;
    }
}




/* 職種 */
.page_recruit_works_oya {
    position: relative;
    width: 100vw;
    height: auto;
}
.page_recruit_works_bk {
    position: absolute;
    width: 1040px;
    height: 820px;
    top: 140px;
    left: 0;
    background-color: #F9F9F9;
    z-index: -1;
}
.page_recruit_works {
    width: 1000px;
    margin: 0 auto;
    padding: 20px 0 120px 0;
}
.page_recruit_works_sec {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.page_recruit_works_gr {
    width: 48%;
}
.page_recruit_works_img {
    margin-bottom: 15px;
}
.page_recruit_works_img img{
    width: 480px;
}
.page_recruit_works_title {
    font-size: 26px;
    font-weight: 600;
    border-left: solid 6px #FFAF13;
    padding: 10px 0 10px 25px;
    margin-bottom: 15px;
}
.page_recruit_works_note {
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
}
@media(max-width: 1200px){
    .page_recruit_works_bk {
        width: 86.66vw;
        height: 68.33vw;
        top: 11.66vw;
    }
    .page_recruit_works {
        width: 83.33vw;
        padding: 1.66vw 0 10vw 0;
    }
    .page_recruit_works_sec {
        gap: 3.33vw;
    }
    .page_recruit_works_img {
        margin-bottom: 1.25vw;
    }
    .page_recruit_works_img img{
        width: 40vw;
    }
    .page_recruit_works_title {
        font-size: 2.166vw;
        border-left: solid 0.5vw #FFAF13;
        padding: 0.833vw 0 0.833vw 2.0833vw;
        margin-bottom: 1.25vw;
    }
    .page_recruit_works_note {
        font-size: 1.33vw;
        line-height: 2.33vw;
    }
}
@media screen and (max-width: 768px) {
    .page_recruit_works_bk {
        width: 90vw;
        height: 400rem;
        top: 22rem;
    }
    .page_recruit_works {
        width: 90%;
        padding: 4rem 0 20rem 0;
    }
    .page_recruit_works_sec {
        flex-direction: column;
        gap: 12rem;
    }
    .page_recruit_works_gr {
        width: 100%;
    }
    .page_recruit_works_img {
        margin-bottom: 1rem;
    }
    .page_recruit_works_img img{
        width: 100%;
    }
    .page_recruit_works_title {
        font-size: 3.5rem;
        border-left: solid 6px #FFAF13;
        padding: 2rem 0 2.5rem 4rem;
        margin-bottom: 1rem;
    }
    .page_recruit_works_note {
        font-size: 2rem;
        line-height: 3.5rem;
    }
}
@media screen and (max-width: 540px) {
    .page_recruit_works_title {
        font-size: 5rem;
        padding: 3.5rem 0 4rem 6rem;
    }
    .page_recruit_works_note {
        font-size: 3rem;
        line-height: 5rem;
    }
}


/* クロストークリンク */
.page_crosstalk_link_gr {
    position: relative;
    width: 100vw;
    margin: 0 auto 40px auto;
}
.page_crosstalk_link_bk {
    width: 100vw;
    height: 460px;
    overflow: hidden;
}
.page_crosstalk_link_bk img{
    width: 100vw;
    height: 460px;
    object-fit: cover;
    object-position: left 84%;
    display: block;
}
.page_crosstalk_link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(1);
    transition: transform .3s cubic-bezier(.25,.8,.25,1);
    width: 800px;
    height: 320px;
    background-color: rgba(255,255,255,0.95);
    transition: all .3s;
    will-change: transform;
}
.page_crosstalk_link_inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.page_crosstalk_link_inner a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.page_crosstalk_link_title_en {
    font-size: 50px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    padding-top: 70px;
    padding-left: 120px;
}
.page_crosstalk_link_title_jp {
    font-size: 20px;
    font-weight: 600;
    color: #FFAF13;
    margin-bottom: 20px;
    padding-left: 120px;
}
.page_crosstalk_link_note {
    font-size: 17px;
    padding-left: 120px;
}
.page_crosstalk_link .link_arrow {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    right: 120px;
    transition: all .3s;
}
.page_crosstalk_link:hover {
    transform: translate(-50%,-50%) scale(1.02);
}
.page_crosstalk_link:hover .link_arrow {
    right: 100px;
}
@media(max-width: 1200px){
    .page_crosstalk_link_gr {
        margin: 0 auto 3.33vw auto;
    }
    .page_crosstalk_link_bk {
        height: 38.33vw;
    }
    .page_crosstalk_link_bk img{
        height: 38.33vw;
    }
    .page_crosstalk_link {
        width: 66.66vw;
        height: 26.66vw;
    }
    .page_crosstalk_link_title_en {
        font-size: 4.166vw;
        padding-top: 5.833vw;
        padding-left: 10vw;
    }
    .page_crosstalk_link_title_jp {
        font-size: 1.66vw;
        margin-bottom: 1.66vw;
        padding-left: 10vw;
    }
    .page_crosstalk_link_note {
        font-size: 1.4166vw;
        padding-left: 10vw;
    }
    .page_crosstalk_link .link_arrow {
        right: 10vw;
    }
}
@media screen and (max-width: 768px) {
    .page_crosstalk_link_gr {
        margin: 0 auto 8rem auto;
    }
    .page_crosstalk_link_bk {
        height: 60rem;
    }
    .page_crosstalk_link_bk img{
        width: 100vw;
        height: 60rem;
        object-fit: cover;
        object-position: left 84%;
        display: block;
    }
    .page_crosstalk_link {
        width: 70%;
        height: 45rem;
    }
    .page_crosstalk_link_title_en {
        font-size: 5rem;
        padding-top: 8rem;
        padding-left: 6rem;
    }
    .page_crosstalk_link_title_jp {
        font-size: 2.5rem;
        margin-bottom: 4rem;
        padding-left: 6rem;
    }
    .page_crosstalk_link_note {
        font-size: 2.2rem;
        padding-left: 6rem;
    }
    .page_crosstalk_link .link_arrow {
        top: auto;
        transform: none;
        bottom: 10rem;
        right: 6rem;
    }
    .page_crosstalk_link:hover {
        transform: translate(-50%,-50%) scale(1);
    }
    .page_crosstalk_link:hover .link_arrow {
        right: 6rem;
    }
}
@media screen and (max-width: 540px) {
    .page_crosstalk_link_bk {
        height: 90rem;
    }
    .page_crosstalk_link_bk img{
        height: 90rem;
    }
    .page_crosstalk_link {
        width: 92%;
        height: 62rem;
    }
    .page_crosstalk_link_title_en {
        font-size: 8rem;
        padding-top: 12rem;
    }
    .page_crosstalk_link_title_jp {
        font-size: 3.5rem;
    }
    .page_crosstalk_link_note {
        font-size: 3rem;
    }
}


/* スケジュール */
.page_schedules_oya {
    position: relative;
    width: 100vw;
    height: auto;
}
.page_schedule_bk {
    position: absolute;
    width: 1040px;
    height: 600px;
    top: 140px;
    right: 0;
    background-color: #F9F9F9;
    z-index: -1;
}
.page_schedule {
    width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}
.page_schedule_gr {
    width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.page_schedule_list {
    position: relative;
    background-color: #F2F7FB;
    border-radius: 10px;
    width: 360px;
    padding: 70px 35px 20px 35px;
}
.page_schedule_title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    font-size: 18px;
    font-weight: 600;
    background: #0068B7;
    color: #ffffff;
    text-align: center;
    border-radius: 8px 8px 0 0;
    padding-top: 12px;
}
.page_schedule_list dl{
    display: flex;
    align-self: flex-start;
    margin: 0;
}
.page_schedule_list dl + dl {
    margin-top: 10px;
}
.page_schedule_list dl dt{
    font-size: 14px;
    width: 61px;
    margin: 0 0 0;
    padding: 3px 0;
    text-align: center;
    border: solid 1px #0068B7;
    border-radius: 22px;
    background: #ffffff;
    color: #0068B7;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.page_schedule_list dl.work dt{
    background: #0068B7;
    color: #ffffff;
}
.page_schedule_list dl dd{
    font-size: 16px;
    margin: 0 0 0 22px;
}
@media(max-width: 1200px){
    .page_schedule_bk {
        width: 86.66vw;
        height: 50vw;
        top: 11.66vw;
    }
    .page_schedule {
        width: 83.33vw;
        padding: 1.66vw 0;
    }
    .page_schedule_gr {
        width: 66.66vw;
    }
    
    .page_schedule_list {
        border-radius: 0.833vw;
        width: 30vw;
        padding: 5.833vw 2.9166vw 1.66vw 2.9166vw;
    }
    .page_schedule_title {
        height: 4vw;
        font-size: 1.5vw;
        border-radius: 0.66vw 0.66vw 0 0;
        padding-top: 1vw;
    }
    .page_schedule_list dl + dl {
        margin-top: 0.833vw;
    }
    .page_schedule_list dl dt{
        font-size: 1.166vw;
        width: 5vw;
        padding: 0.25vw 0;
        border-radius: 1.833vw;
    }
    .page_schedule_list dl dd{
        font-size: 1.33vw;
        margin: 0 0 0 1.833vw;
    }
}
@media screen and (max-width: 768px) {
    .page_schedule_bk {
        width: 60rem;
        height: 200rem;
        top: 22rem;
    }
    .page_schedule {
        width: 90%;
        padding: 4rem 0;
    }
    .page_schedule_gr {
        width: 100%;
        margin: 0 auto;
        flex-direction: column;
        gap: 4rem;
    }
    
    .page_schedule_list {
        position: relative;
        border-radius: 10px;
        width: 100%;
        padding: 12rem 6rem 6rem 6rem;
    }
    .page_schedule_title {
        height: 8rem;
        font-size: 2.5rem;
        border-radius: 8px 8px 0 0;
        padding-top: 2.2rem;
    }
    .page_schedule_list dl + dl {
        margin-top: 1.5rem;
    }
    .page_schedule_list dl dt{
        font-size: 2.2rem;
        width: 12rem;
        padding: 0.2rem 0;
        border: solid 1px #0068B7;
        border-radius: 22px;
    }
    .page_schedule_list dl dd{
        font-size: 2.2rem;
        margin: 0.3rem 0 0 4rem;
    }
}
@media screen and (max-width: 540px) {
    .page_schedule_list {
        padding: 14rem 6rem 6rem 6rem;
    }
    .page_schedule_title {
        height: 10rem;
        font-size: 3rem;
        padding-top: 2.8rem;
    }
    .page_schedule_list dl + dl {
        margin-top: 2rem;
    }
    .page_schedule_list dl dt{
        font-size: 2.8rem;
    }
    .page_schedule_list dl dd{
        font-size: 2.8rem;
    }
}


/* 数字で見るセンウッド */
.page_infographics_oya {
    position: relative;
    width: 100vw;
    height: auto;
}
.page_infographics_bk {
    position: absolute;
    width: 100vw;
    height: 1740px;
    top: 140px;
    left: 0;
    background-color: #F9F9F9;
    z-index: -1;
}
.page_infographics {
    width: 1000px;
    margin: 60px auto;
    padding: 20px 0;
}
.page_infographics_parts_column {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}
.page_infographics_parts {
    position: relative;
    border-top: solid #0068B7 10px;
    background-color: #ffffff;
}
.page_infographics_parts_2column .page_infographics_parts {
    width: 49%;
    padding: 20px 40px 20px 40px;
}
.page_infographics_parts_3column .page_infographics_parts {
    width: 32.3%;
    padding: 30px 30px 5px 40px;
}
.page_infographics_parts_gr {
    display: flex;
    justify-content: space-evenly;
}
.page_infographics_parts_2column .page_infographics_parts_gr {
    flex-direction: row;
    align-items: center;
}
.page_infographics_parts_3column .page_infographics_parts_gr {
    flex-direction: column;
    align-items: flex-start;
}
.page_infographics_parts_txt {
    width: 100%;
}
.page_infographics_parts_title {
    font-size: 22px;
    font-weight: 700;
    color: #0068B7;
}
.page_infographics_parts_num {
    font-family: "Montserrat", sans-serif;
    font-size: 100px;
    font-weight: 700;
    color: #FFAF13;
    margin: -10px 0;
    text-align: center;
}
.page_infographics_parts_num_ln {
    font-size: 80px;
    margin: 5px 0;
}
.page_infographics_parts_num span{
    font-size: 22px;
    font-weight: 700;
    color: #FFAF13;
}
.page_infographics_parts_2column .page_infographics_parts_img img{
    width: 180px;
}
.page_infographics_parts_3column .page_infographics_parts_img {
    width: 100%;
    text-align: center;
    margin-top: -20px;
}
.page_infographics_parts_3column .page_infographics_parts_img img{
    width: 140px;
}
.page_infographics_parts_note {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-align: center;
}
.page_infographics_parts_note span{
    font-size: 12px;
}
.page_infographics_ratio {
    font-size: 17px;
    font-weight: 600;
    color: #333333;
    text-align: left;
    line-height: 28px;
    margin-top: 30px;
}
@media(max-width: 1200px){
    .page_infographics_bk {
        height: 140vw;
        top: 11.66vw;
    }
    .page_infographics {
        width: 83.33vw;
        margin: 5vw auto;
        padding: 1.66vw 0;
    }
    .page_infographics_parts_column {
        margin: 1.25vw 0;
    }
    .page_infographics_parts {
        border-top: solid #0068B7 0.833vw;
    }
    .page_infographics_parts_2column .page_infographics_parts {
        padding: 1.66vw 3.33vw 1.66vw 3.33vw;
    }
    .page_infographics_parts_3column .page_infographics_parts {
        padding: 2.5vw 2.5vw 0.416vw 3.33vw;
    }
    .page_infographics_parts_title {
        font-size: 1.833vw;
    }
    .page_infographics_parts_num {
        font-size: 8.33vw;
        margin: -0.833vw 0;
    }
    .page_infographics_parts_num_ln {
        font-size: 6.6vw;
        margin: 0.5vw 0;
    }
    .page_infographics_parts_num span{
        font-size: 1.833vw;
    }
    .page_infographics_parts_2column .page_infographics_parts_img img{
        width: 15vw;
    }
    .page_infographics_parts_3column .page_infographics_parts_img {
        margin-top: -1.66vw;
    }
    .page_infographics_parts_3column .page_infographics_parts_img img{
        width: 11.66vw;
    }
    .page_infographics_parts_note {
        font-size: 1.25vw;
        letter-spacing: 0.125vw;
    }
    .page_infographics_parts_note span{
        font-size: 1vw;
    }
    .page_infographics_ratio {
        font-size: 1.4166vw;
        line-height: 2.33vw;
        margin-top: 2.5vw;
    }
}
@media screen and (max-width: 768px) {
    .page_infographics_oya {
        position: relative;
        width: 100vw;
        height: auto;
    }
    .page_infographics_bk {
        height: 580rem;
        top: 20rem;
    }
    .page_infographics {
        width: 90%;
        margin: 4rem auto;
        padding: 2rem 0;
    }
    .page_infographics_parts_column {
        flex-direction: column;
        margin: 0;
    }
    .page_infographics_parts {
        border-top: solid #0068B7 10px;
        margin: 1.5rem auto;
    }
    .page_infographics_parts_2column .page_infographics_parts {
        width: 90%;
        padding: 1rem 4rem 5rem 4rem;
    }
    .page_infographics_parts_3column .page_infographics_parts {
        width: 90%;
        padding: 1rem 4rem 5rem 4rem;
    }
    .page_infographics_parts_3column .page_infographics_parts_gr {
        flex-direction: row;
        align-items: center;
    }
    .page_infographics_parts_title {
        font-size: 3rem;
    }
    .page_infographics_parts_num {
        font-size: 10rem;
        margin-top: 1rem;
    }
    .page_infographics_parts_num_ln {
        font-size: 9rem;
        margin: 0.1rem 0;
    }
    .page_infographics_parts_num_sp {
        letter-spacing: 0;
    }
    .page_infographics_parts_num span{
        font-size: 3rem;
    }
    .page_infographics_parts_2column .page_infographics_parts_img img{
        width: 22rem;
    }
    .page_infographics_parts_3column .page_infographics_parts_img {
        margin-top: 0;
    }
    .page_infographics_parts_3column .page_infographics_parts_img img{
        width: 28rem;
    }
    .page_infographics_parts_3column .page_infographics_parts_img_spmin {
        width: 24rem;
        margin-top: 2rem;
    }
    .page_infographics_parts_3column .page_infographics_parts_img_spmin img{
        width: 24rem;
    }
    .page_infographics_parts_note {
        font-size: 2.2rem;
        letter-spacing: 0.2rem;
    }
    .page_infographics_parts_note span{
        font-size: 2rem;
    }
    .page_infographics_ratio {
        font-size: 2.2rem;
        line-height: 4.5rem;
        margin-top: 6rem;
    }
}
@media screen and (max-width: 540px) {
    .page_infographics_parts_2column .page_infographics_parts {
        width: 100%;
        padding: 4rem 5rem 6rem 5rem;
    }
    .page_infographics_parts_3column .page_infographics_parts {
        width: 100%;
        padding: 4rem 5rem 6rem 5rem;
    }
    .page_infographics_parts_3column .page_infographics_parts_gr {
        flex-direction: row;
    }
    .page_infographics_parts_title {
        font-size: 4rem;
        margin-right: -10px;
    }
    .page_infographics_parts_num {
        font-size: 14rem;
    }
    .page_infographics_parts_num_ln {
        font-size: 10rem;
        margin: 1.5rem 0;
    }
    .page_infographics_parts_num span{
        font-size: 3.5rem;
    }
    .page_infographics_parts_note {
        font-size: 3rem;
    }
    .page_infographics_parts_note span{
        font-size: 2.5rem;
    }
    .page_infographics_ratio {
        font-size: 3rem;
    }
}



/* よくある質問 */
.page_faq {
    width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}
.page_faq_gr {
    width: 800px;
    margin: 0 auto;
}
.page_faq_parts {
    margin: 30px auto;
}
.page_faq_q, .page_faq_a {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    margin: 10px auto;
    padding-left: 60px;
}
.page_faq_q::before, .page_faq_a::before {
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 600;
    display: inline-block;
}
.page_faq_q::before {
    content: 'Q.';
    color: #0068B7;
}
.page_faq_a::before {
    content: 'A.';
    color: #FFAF13;
}
.page_faq_a a{
    position: relative;
    color: #1558d6;
}
.page_faq_a a::before{
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #1558d6;
}
@media(max-width: 1200px){
    .page_faq {
        width: 83.33vw;
        padding: 3.33vw 0;
    }
    .page_faq_gr {
        width: 66.66vw;
    }
    .page_faq_parts {
        margin: 2.5vw auto;
    }
    .page_faq_q, .page_faq_a {
        font-size: 1.33vw;
        line-height: 2.166vw;
        margin: 0.833vw auto;
        padding-left: 5vw;
    }
    .page_faq_q::before, .page_faq_a::before {
        font-size: 2.5vw;
    }
    .page_faq_a a::before{
        bottom: -0.33vw;
        height: 0.083vw;
    }
}
@media screen and (max-width: 768px) {
    .page_faq {
        width: 90%;
        padding: 12rem 0;
    }
    .page_faq_gr {
        width: 100%;
    }
    .page_faq_parts {
        margin: 5rem auto;
    }
    .page_faq_q, .page_faq_a {
        font-size: 2.2rem;
        line-height: 4rem;
        margin: 1rem auto;
        padding-left: 7rem;
    }
    .page_faq_q::before, .page_faq_a::before {
        font-size: 4rem;
    }
}
@media screen and (max-width: 540px) {
    .page_faq_q, .page_faq_a {
        font-size: 3rem;
        line-height: 4.5rem;
    }
}



/* 募集要項 */
.page_descriptions {
    width: 1000px;
    margin: 0 auto;
    padding: 40px 0 120px 0;
}
.page_descriptions_table {
    width: 800px;
    margin: 0 auto;
}
.page_descriptions_table dl{
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.page_descriptions_table dl dt {
    width: 120px;
    padding: 20px 0 20px 15px;
    margin: 0;
    border-bottom: 1px solid #FFD480;
}
.page_descriptions_table dl dd {
    width: 650px;
    padding: 20px 0 20px 15px;
    margin: 0;
    border-bottom: 1px solid #E3E3E3;
    font-weight: 400;
    letter-spacing: 1.5px;
    line-height: 24px;
}
.page_descriptions_table dl dd a{
    position: relative;
    color: #1558d6;
}
.page_descriptions_table dl dd a::before{
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #1558d6;
}
@media(max-width: 1200px){
    .page_descriptions {
        width: 83.33vw;
        padding: 3.33vw 0 10vw 0;
    }
    .page_descriptions_table {
        width: 66.66vw;
    }
    .page_descriptions_table dl{
        font-size: 1.33vw;
    }
    .page_descriptions_table dl dt {
        width: 10vw;
        padding: 1.66vw 0 1.66vw 1.25vw;
    }
    .page_descriptions_table dl dd {
        width: 54vw;
        padding: 1.66vw 0 1.66vw 1.25vw;
        letter-spacing: 0.125vw;
        line-height: 2vw;
    }
    .page_descriptions_table dl dd a::before{
        bottom: -0.33vw;
    }
}
@media screen and (max-width: 768px) {
    .page_descriptions {
        width: 90%;
        padding: 0 0 30rem 0;
    }
    .page_descriptions_table {
        width: 100%;
        line-height: 1rem;
    }
    .page_descriptions_table dl{
        flex-direction: column;
        font-size: 2.4rem;
    }
    .page_descriptions_table dl dt {
        width: 20rem;
        padding: 3rem 2rem;
        border-bottom: 1px solid #FFD480;
    }
    .page_descriptions_table dl dd {
        width: 100%;
        padding: 3rem 2rem;
        border-bottom: 1px solid #E3E3E3;
        line-height: 3.5rem;
    }
}
@media screen and (max-width: 540px) {
    .page_descriptions_table {
        line-height: 2rem;
    }
    .page_descriptions_table dl{
        font-size: 3rem;
    }
    .page_descriptions_table dl dt {
        padding: 5rem 3rem;
    }
    .page_descriptions_table dl dd {
        padding: 4rem 3rem;
        line-height: 4.5rem;
    }
}


/* 
 * クロストークページ
 */
.page_crosstalk_intro {
    margin: 80px auto 0 auto;
    max-width: 1000px;
}
.page_crosstalk_intro_note {
    font-size: 17px;
    letter-spacing: 1.5px;
    line-height: 34px;
    text-align: center;
    margin-bottom: 40px;
}
.page_crosstalk_intro_member {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}
.page_crosstalk_intro_member_profile {
    text-align: center;
}
.page_crosstalk_intro_member_img img{
    width: 140px;
}
.page_crosstalk_intro_member_txt {
    font-size: 20px;
    font-weight: 700;
    color: #0068B7;
}
.page_crosstalk_intro_member_txt span{
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 22px;
    padding-top: 4px;
}

.page_crosstalk_parts {
    margin: 80px auto 160px auto;
}
.page_crosstalk_q {
    margin: 120px auto 40px auto;
}
.page_crosstalk_q_img img{
    width: 100vw;
    height: 240px;
    object-fit: cover;
    object-position: center 40%;
}
.page_crosstalk_q_txt {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 30px 10px;
    margin: -40px auto 0 auto;
    width: 800px;
    background-color: #ffffff;
    text-align: center;
}
.page_crosstalk_q_txt::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(50% - 50vw);
    height: 0.5px;
    width: 100vw;
    background-color: #FFAF13;
}
.page_crosstalk_talk {
    margin: 20px auto 40px auto;
    max-width: 740px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.page_crosstalk_talk_icon {
    position: relative;    
}
.page_crosstalk_talk_icon_img img{
    width: 80px;
}
.page_crosstalk_talk_icon_name {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
}
.page_crosstalk_talk_txt {
    font-size: 16px;
    letter-spacing: 1.5px;
    line-height: 28px;
}
.page_crosstalk_talk_txt span{
    font-weight: 700;
    color: #0068B7;
}
@media(max-width: 1200px){
    .page_crosstalk_intro {
        margin: 6.66vw auto 0 auto;
        max-width: 83.33vw;
    }
    .page_crosstalk_intro_note {
        font-size: 1.416vw;
        letter-spacing: 0.125vw;
        line-height: 2.833vw;
        margin-bottom: 3.33vw;
    }
    .page_crosstalk_intro_member {
        gap: 5vw;
    }
    .page_crosstalk_intro_member_img img{
        width: 11.66vw;
    }
    .page_crosstalk_intro_member_txt {
        font-size: 1.66vw;
    }
    .page_crosstalk_intro_member_txt span{
        font-size: 1.166vw;
        line-height: 1.833vw;
        padding-top: 0.33vw;
    }
    
    .page_crosstalk_parts {
        margin: 6.66vw auto 13.33vw auto;
    }
    .page_crosstalk_q {
        margin: 10vw auto 3.33vw auto;
    }
    .page_crosstalk_q_img img{
        height: 20vw;
    }
    .page_crosstalk_q_txt {
        font-size: 1.833vw;
        letter-spacing: 0.166vw;
        padding: 2.5vw 0.833vw;
        margin: -3.33vw auto 0 auto;
        width: 66.66vw;
    }
    .page_crosstalk_talk {
        margin: 1.66vw auto 3.33vw auto;
        max-width: 61.66vw;
        gap: 2.5vw;
    }
    .page_crosstalk_talk_icon_img img{
        width: 6.66vw;
    }
    .page_crosstalk_talk_icon_name {
        bottom: -1.25vw;
        font-size: 1.0833vw;
    }
    .page_crosstalk_talk_txt {
        font-size: 1.33vw;
        letter-spacing: 0.125vw;
        line-height: 2.33vw;
    }
}
@media screen and (max-width: 768px) {
    .page_crosstalk_intro {
        margin: 8rem auto 0 auto;
        width: 90%;
        max-width: none;
    }
    .page_crosstalk_intro_note {
        font-size: 2.5rem;
        letter-spacing: 0.2rem;
        line-height: 4.5rem;
        margin-bottom: 4rem;
    }
    .page_crosstalk_intro_member {
        justify-content: space-between;
        gap: 0;

    }
    .page_crosstalk_intro_member_img img{
        width: 20rem;
    }
    .page_crosstalk_intro_member_txt {
        font-size: 3rem;
    }
    .page_crosstalk_intro_member_txt span{
        display: inline-block;
        font-size: 2.2rem;
        line-height: 3.2rem;
        padding-top: 1rem;
    }
    
    .page_crosstalk_parts {
        margin: 8rem auto 16rem auto;
    }
    .page_crosstalk_q {
        margin: 16rem auto 8rem auto;
    }
    .page_crosstalk_q_img img{
        width: 100vw;
        height: 24rem;
    }
    .page_crosstalk_q_txt {
        font-size: 2.5rem;
        letter-spacing: 0.2rem;
        line-height: 3.5rem;
        padding: 3rem 0;
        margin: -5rem auto 0 auto;
        width: 80%;
    }
    .page_crosstalk_q_txt::before {
        height: 0.5px;
        width: 100vw;
        background-color: #FFAF13;
    }
    .page_crosstalk_talk {
        margin: 4rem auto 6rem auto;
        width: 95%;
        max-width: none;
        gap: 3rem;
    }
    .page_crosstalk_talk_icon {
        position: relative;    
    }
    .page_crosstalk_talk_icon_img img{
        width: 12rem;
    }
    .page_crosstalk_talk_icon_name {
        bottom: -3rem;
        font-size: 2rem;
    }
    .page_crosstalk_talk_txt {
        font-size: 1.9rem;
        letter-spacing: 0.1rem;
        line-height: 3.2rem;
    }
}
@media screen and (max-width: 540px) {
    .page_crosstalk_intro {
        margin: 12rem auto 0 auto;
    }
    .page_crosstalk_intro_note {
        font-size: 3rem;
        line-height: 6rem;
        margin-bottom: 8rem;
    }
    .page_crosstalk_intro_member_txt {
        font-size: 3.5rem;
    }
    .page_crosstalk_intro_member_txt span{
        font-size: 2.6rem;
        line-height: 4rem;
    }
    
    .page_crosstalk_q_img img{
        height: 30rem;
    }
    .page_crosstalk_q_txt {
        font-size: 3.4rem;
        line-height: 5.5rem;
        padding: 4rem 0;
        margin: -8rem auto 0 auto;
        width: 90%;
    }
    .page_crosstalk_talk_icon_img img{
        width: 16rem;
    }
    .page_crosstalk_talk_icon_name {
        font-size: 2.2rem;
    }
    .page_crosstalk_talk_txt {
        font-size: 3rem;
        line-height: 5rem;
    }
}



/* 
 * 問合せページ
 */
.page_contact_intro {
    width: 100vw;
    background-color: #F9F9F9;
    padding: 80px 0 40px 0;
}
.page_contact_intro_main {
    width: 600px;
    margin: 0 auto 40px auto;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    line-height: 40px;
}
.page_contact_intro_note {
    width: 600px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 30px;
}

.page_contact_form {
    width: 100vw;
    background-color: #F9F9F9;
    padding: 40px 0;
}
.contact_form {
    width: 95%;
    max-width: 700px;
    margin: 0 auto;
}
.contact_form_tr {
    display: flex;
    align-items: center;
    margin: 15px auto;
    padding: 3px 10px;
}
.contact_form_th {
    width: 180px;
    font-size: 15px;
    font-weight: 800;
}
.contact_form_td {
    flex: 1;
    width: 100%;
    height: auto;
    border: solid 1px #DADADA;
    border-radius: 10px;
    background-color: #ffffff;
}
.contact_form_th p, .contact_form_td p{
    padding: 8px 0;
    margin: 0;
}
.contact_radio .contact_form_td {
    border: none;
    background-color: transparent;
}
.wpcf7-radio .wpcf7-list-item {
    margin-top:5px;
    display: block;
}
button, input, select, textarea {
    border: none;
    background-color: transparent;
}

input,
textarea {
    font-size: 16px;
}
input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 90%;
    padding: 7px 5%;
}
input[type="submit"] {
    cursor: pointer;
}
textarea {
    width: 90%;
    height: 100px;
    padding: 10px 5% 0;
    resize: none;
    line-height: 24px;
}
.wpcf7-form-control wpcf7-radio {
    display: block;
}

.form_submit {
    margin: 80px auto;
    text-align: center;
    width: 300px;
}
.form_submit p{
    margin: 0;
}
.form_submit input{
    position: relative;
    width: 300px;
    height: 56px;
    transition-duration: 0.5s;
    display: block;
    border-radius: 30px;
    border: solid 1px #474747;
    transition-duration: 0.5s;
    color: #474747;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 10px;
}
div.wpcf7 .wpcf7-spinner {
    display: block;
}
.has-text-align-center {
    margin-bottom: 160px;
}
@media(max-width: 1200px){
    .page_contact_intro {
        padding: 6.66vw 0 3.33vw 0;
    }
    .page_contact_intro_main {
        width: 50vw;
        margin: 0 auto 3.33vw auto;
        font-size: 1.833vw;
        line-height: 3.33vw;
    }
    .page_contact_intro_note {
        width: 50vw;
        font-size: 1.25vw;
        line-height: 2.5vw;
    }
    
    .page_contact_form {
        padding: 3.33vw 0;
    }
    .contact_form {
        max-width: 58.33vw;
    }
    .contact_form_tr {
        margin: 1.25vw auto;
        padding: 0.25vw 0.833vw;
    }
    .contact_form_th {
        width: 15vw;
        font-size: 1.25vw;
    }
    .contact_form_td {
        border-radius: 0.833vw;
    }
    .contact_form_th p, .contact_form_td p{
        padding: 0.66vw 0;
    }
    .wpcf7-radio .wpcf7-list-item {
        margin-top: 0.4166vw;
        font-size: 1.25vw;
    }
    
    input,
    textarea {
        font-size: 1.33vw;
    }
    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        padding: 0.5833vw 5%;
    }
    textarea {
        height: 8.33vw;
        padding: 0.833vw 5% 0;
        line-height: 2vw;
    }
    
    .form_submit {
        margin: 6.66vw auto;
        width: 25vw;
    }
    .form_submit input{
        width: 25vw;
        height: 4.66vw;
        border-radius: 2.5vw;
        font-size: 1.5vw;
        letter-spacing: 0.833vw;
    }
    .has-text-align-center {
        margin-bottom: 13.33vw;
    }
}
@media screen and (max-width: 768px) {
    .page_contact_intro {
        padding: 6rem 0 4rem 0;
    }
    .page_contact_intro_main {
        width: 100%;
        margin: 0 auto 6rem auto;
        font-size: 3rem;
        line-height: 5rem;
    }
    .page_contact_intro_note {
        width: 80%;
        font-size: 2.4rem;
        line-height: 4rem;
    }

    .page_contact_form {
        padding: 4rem 0;
    }
    .contact_form {
        max-width: none;
    }
    .contact_form_tr {
        flex-direction: column;
        align-items: flex-start;
        margin: 4rem auto;
        padding: 0 2rem;
    }
    .contact_form_th {
        width: auto;
        font-size: 2.4rem;
    }
    .contact_form_th p, .contact_form_td p{
        padding: 0.5rem 0;
    }
    .wpcf7-radio .wpcf7-list-item {
        margin-top: 0.5rem;
        font-size: 2.2rem;
    }

    input,
    textarea {
        font-size: 2.5rem;
    }
    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        padding: 0.5rem 2%;
    }
    textarea {
        height: 25rem;
        padding: 1rem 4% 0;
        line-height: 4rem;
    }
    .wpcf7-form-control wpcf7-radio {
        display: block;
    }

    .form_submit {
        margin: 14rem auto;
        width: 280px;
    }
    .form_submit input{
        width: 280px;
        height: 56px;
        border-radius: 30px;
        border: solid 1px #474747;
        font-size: 16px;
        letter-spacing: 10px;
    }
    div.wpcf7 .wpcf7-spinner {
        display: block;
    }
    .has-text-align-center {
        margin-bottom: 24rem;
    }
}
@media screen and (max-width: 540px) {
    .page_contact_intro {
        padding: 10rem 0 4rem 0;
    }
    .page_contact_intro_main {
        font-size: 3.5rem;
        line-height: 6rem;
    }
    .page_contact_intro_note {
        font-size: 2.8rem;
    }

    .contact_form_th {
        font-size: 2.8rem;
    }
    .wpcf7-radio .wpcf7-list-item {
        font-size: 2.8rem;
    }

    input,
    textarea {
        font-size: 3rem;
    }
}


/* プライバシーポリシー */
.privacy_policy_txt {
    width: 90%;
    max-width: 900px;
    margin: 80px auto 160px auto;
    line-height: 28px;
}
.privacy_policy_mae {
    font-size: 15px;
    margin-bottom: 60px;
}
.privacy_policy_h {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.privacy_policy_note {
    font-size: 15px;
    padding-left: 10px;
    margin-bottom: 60px;
}
.privacy_policy_note a{
    text-decoration: underline;
}



/* 
 * 404
 */
.error_404 {
    margin: 80px auto 140px auto;
    text-align: center;
}
.error_404_title {
    font-size: 36px;
    margin-bottom: 60px;
}
.error_404_txt {
    font-size: 17px;
    margin-bottom: 80px;
}
.error_404_link {
    position: relative;
    width: 360px;
    height: 60px;
    background-color: #FFAF13;
    color: #ffffff;
    margin: 60px auto;
    transition: all .3s;
}
.error_404_link a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.error_404_link p{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    letter-spacing: 1.5px;
    margin: 0;
}
.error_404_link:hover{
    background-color: #ffffff;
    color: #FFAF13;
    font-weight: 700;
    border: solid #FFAF13 1.5px;
}
@media(max-width: 768px){
    .error_404 {
        width: 90%;
    }
    .error_404_title {
        font-size: 26px;
    }
    .error_404_txt {
        font-size: 16px;
    }
    .error_404_link {
        width: 100%;
        max-width: 360px;
        margin: 8rem auto 1rem auto;
    }
}


/* ページトップに戻る */
.page_top_arrow {
    width: 70px;
    height: 70px;
    position: fixed;
    right: 15px;
    bottom: 10px;
    background: #FFAF13;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 400ms ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    z-index: 999;
}
.page_top_arrow.is-shown {
    opacity: 0.9;
}
.page_top_arrow .arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid #fff;
    margin-bottom: 3px;
}
.page_top_arrow .text {
    font-size: 12px;
}


/* 
 * footer
 */
.footer_link_sec {
    width: 100vw;
    height: 300px;
    display: flex;
}
.footer_link {
    position: relative;
    width: 50vw;
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    display: block;
    transition: all .3s;
}
.footer_link a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}
.footer_link::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:inherit;
    background-size:inherit;
    background-position:inherit;
    transition:transform .6s ease;
    transform:scale(1);
    z-index:1;
}

.footer_link_01 {
    background-image: url("./img/footer_recruit.jpg");
}
.footer_link_02 {
    background-image: url("./img/footer_contact.jpg");
}
.footer_link_gr {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 340px;
    margin-left: 100px;
    z-index: 3;
    transition: all .3s;
}
.footer_link_txt {
    color: #ffffff;
    font-weight: 700;
}
.footer_link_txt_en {
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    letter-spacing: 0;
    margin: 0;
}
.footer_link_txt_jp {
    font-size: 20px;
    letter-spacing: 2px;
    margin: 0;
}
.footer_link:hover::before,
.footer_link:focus-visible::before{
    transform: scale(1.1);
}
.footer_link:hover .footer_link_gr{
    width: 350px;
}

.footer_sec {
    width: 85%;
    margin: 10px auto 40px auto;
}
.footer_logo {
    margin: 90px auto 10px auto;
}
.footer_logo img {
    width: 360px;
}
.footer_gr {
    display: flex;
    justify-content: space-between;
}
.footer_info_company {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 22px;
}
.footer_info_add a{
    color: #2B2B2B;
}
.footer_menu {
    display: flex;
    justify-content: space-between;
}
.footer_menu li {
    padding-bottom: 16px;
}
.footer_menu li a{
    color: #2B2B2B;
}

.policy, .copyright {
    width: 85%;
    margin: 20px auto;
}
.policy p, .copyright p{
    font-size: 12px;
    font-weight: 600;
}
.policy a {
    color: #2B2B2B;
}

@media screen and (max-width: 1200px) {
    .footer_link_sec {
        height: 25vw;
    }
    .footer_link {
        height: 25vw;
    }
    .footer_link_gr {
        width: 28.33vw;
        margin-left: 8.33vw;
    }
    .footer_link_txt_en {
        font-size: 4.166vw;
    }
    .footer_link_txt_jp {
        font-size: 1.66vw;
        letter-spacing: 0.166vw;
    }
    
    .footer_sec {
        margin: 0.833vw auto 3.33vw auto;
    }
    .footer_logo {
        margin: 7.5vw auto 0.833vw auto;
    }
    .footer_logo img {
        width: 30vw;
    }
    .footer_info_company {
        font-size: 1.66vw;
        margin-bottom: 1.833vw;
    }
    .footer_menu li {
        padding-bottom: 1.33vw;
    }
    
    .policy, .copyright {
        margin: 1.66vw auto;
    }
    .policy p, .copyright p{
        font-size: 1vw;
    }
}
@media screen and (max-width: 768px) {
    footer {
        margin-bottom: 6rem;
    }
    .footer_link_sec {
        flex-direction: column;
        gap: 5px;
        height: 505px;
    }
    .footer_link {
        width: 100vw;
        height: 250px;
    }
    .footer_link_gr {
        width: 80vw;
    }
    .footer_link_txt_en {
        font-size: 5.5rem;
    }
    .footer_link_txt_jp {
        font-size: 2.8rem;
        letter-spacing: 0.2rem;
    }
    
    .footer_sec {
        width: 90%;
        margin: 8rem auto 6rem auto;
    }
    .footer_logo {
        margin: 0 auto 2rem auto;
    }
    .footer_logo img {
        width: 60%;
    }
    .footer_gr {
        flex-direction: column;
    }
    .footer_info_company {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    .footer_menu {
        flex-direction: column;
        margin-top: 8rem;
        padding-left: 1rem;
    }
    .footer_menu ul {
        margin: 0;
        padding: 0;
    }
    .footer_menu li {
        padding-bottom: 2rem;
    }
    
    .policy, .copyright {
        width: 90%;
        margin: 2rem auto;
    }
    .policy p, .copyright p{
        font-size: 13px;
    }
}
@media screen and (max-width: 540px) {
    footer {
        margin-bottom: 8rem;
    }
    .footer_link_sec {
        height: 405px;
    }
    .footer_link {
        height: 200px;
    }
    .footer_link_txt_en {
        font-size: 8rem;
    }
    .footer_link_txt_jp {
        font-size: 4rem;
    }
    
    .footer_sec {
        margin: 16rem auto 6rem auto;
    }
    .footer_logo img {
        width: 80%;
    }
    .footer_info_company {
        font-size: 3.5rem;
        margin-bottom: 3rem;
    }
    .footer_menu {
        margin-top: 10rem;
        padding-left: 2rem;
    }
    .footer_menu li {
        padding-bottom: 3rem;
    }
    
    .policy, .copyright {
        width: 85%;
    }
}