@charset "utf-8";
/* *************************************
// スタイル
************************************* */

:root {
    --red01: #e52828;
    --green01: #25a43a;

    --main-color: var(--red01);

    --text-color: #000;

    --normal_font: "Zen Kaku Gothic New", sans-serif;
    --point_font: "Zen Kaku Gothic Antique", sans-serif;

    --image_radius: 50px;
    --image_shadow: 0px 0px 20px rgba(0,0,0,0.2);
}

body {
    font-family: var(--point_font);
    font-weight: 500;
}


#container {
    padding-top: 0;
    overflow: hidden;
}

#main {
    overflow: hidden;
}

.h_dot {
    position: relative;
    padding-left: 1.5em;
    font-size: 20px;
    font-weight: bold;
}
.h_dot.white {
    color: #fff;
}
.h_dot:before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0.5em;
    width: 0.5em;
    height: 0.5em;
    border: 4px double #fff;
    border-radius: 50%;
    background: var(--main-color);
    box-sizing: content-box;
}
.h_dot.white:before {
    border: 4px double var(--main-color);
    background: #fff;
}


.btn001 a {
    background: #fff;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    padding: 0.5em 1.5em;
    display: flex;
    align-items: center;
    gap: 0 1em;

}
.btn001 a:after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url(../images/tmp/deco_btn.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.2s;
}
.btn001 a:hover {
    opacity: 1;
}
.btn001 a:hover:after {
    transform: translateX(5px);
}


.googlemap > iframe {
    aspect-ratio: 3 / 2;
    display: block;
    width: 100%;
    height: auto;
}

ul.dot {
    list-style: disc;
}
ul.dot > li {
    margin-left: 1.2em;
}

ul.slash {
    display: flex;
    flex-wrap: wrap;
}
ul.slash > li {
    white-space: nowrap;
}
ul.slash > li:not(:last-child):after {
    content: '/';
    display: inline;
    margin: 0 0.5em;
}


ul.encircle {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
ul.encircle > li {
    white-space: nowrap;
    border: 1px solid var(--main-color);
    padding: 0 1em;
    border-radius: 100vmax;
    color: var(--main-color);
}

@media (max-width: 767px) {

    .page_single {
        padding: 0;
    }

}

 /*********************
  ローディング
 *********************/
#loader-bg .container {
    width: 150px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
        
#loader-bg .container .circle {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    background-color: var(--main-color);
    left: 0;
    transform-origin: 50%;
    animation: circle .5s alternate infinite ease;
}
        
@keyframes circle {
    0% {
        top: 60px;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }
    40% {
        height: 20px;
        border-radius: 50%;
        transform: scaleX(1);
    }
    100% {
        top: 0%;
    }
}
        
#loader-bg .container .circle:nth-child(2) {
    left: calc(50% - 10px);
    animation-delay: -0.4s;
}
        
#loader-bg .container .circle:nth-child(3) {
    left: auto;
    right: 0;
    animation-delay: -0.2s;
}
        
#loader-bg .container .shadow {
    width: 20px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    top: 62px;
    transform-origin: 50%;
    z-index: -1;
    left: 0;
    filter: blur(1px);
    animation: shadow .5s alternate infinite ease;
}
        
@keyframes shadow {
    0% {
        transform: scaleX(1.5);
    }
    40% {
        transform: scaleX(1);
        opacity: .7;
    }
    100% {
        transform: scaleX(.2);
        opacity: .4;
    }
}
        
#loader-bg .container .shadow:nth-child(4) {
    left: calc(50% - 10px);
    animation-delay: -0.3s
}

#loader-bg .container .shadow:nth-child(5) {
    left: auto;
    right: 0;
    animation-delay: -0.2s;
}

.spinner2 {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  animation: loadingI 2s linear infinite;
}
.bubble-1,
.bubble-2 {
  position: absolute;
  top: 0;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: var(--main-color);
  animation: l-bounce 2s ease-in-out infinite;
}
.bubble-2 {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}
@keyframes loadingI {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes l-bounce {
  0%,
  100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}

 /*********************
  ヘッダー、メニュー
 *********************/
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: transparent;
    height: 110px;
}

.home .header {
    position: sticky;
}

.header a {
    text-decoration: none;
}

.header #inner-header {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 1400px;
    width: calc(100% - 30px);
    background: #fff;
    border-radius: 50px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
    padding:0;
    height: 65px;
}

.header .logo {
    width: auto;
    display: flex;
    align-items: center;
    padding-left:40px;
    padding-right: 20px;
}
.header .logo a {
    width: 100%;
    height: auto;
    color: #333;
    white-space: nowrap;
}
.header .logo a img {
    display: block;
    height: 50px;
    width: auto;
}


.header .header_box {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.header .header_box .menu {
    display: none;
}

.header .header_box > div.menu_box {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.header .header_box > div.menu_box > .inner {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.header .header_box > div.menu_box nav {
    display: flex;
    align-items: stretch;
    width: 100%;
}
.header .header_box > div.menu_box nav > ul {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.header .header_box .link_box {
    white-space: nowrap;
    width: 180px;
    min-width: 180px;
    font-weight: 500;  
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
}
.header .header_box .link_box img {
    height: 1em;
    width: auto;
}

.header .header_box .link_box.recruit {
    color: var(--main-color);
    width: 160px;
    min-width: 160px;
    position: relative;
}
.header .header_box .link_box.recruit:after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    background: var(--main-color);
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
}
.header .header_box .link_box.recruit img {
    height: 1.5em;
}

.header .header_box .link_box.contact {
    background: var(--main-color);
    color: #fff;
    border-radius: 0 100vmax 100vmax 0;
}


.header .nav > li > a {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
    white-space: nowrap;
    color: var(--text-color);
}

.header .nav > li.menu-item-has-children > a:after {
    content: "";
    display: inline-block;
    width: 0.7em;
    height: 0.5em;
    background: var(--main-color);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    margin-left: 0.5em;
}

@media (max-width: 1399px) {

    .header .header_box .menu {
        position: absolute;
        top: 5px;
        right: 5px;
        z-index: 101;
        background: var(--main-color);
        height: 55px;
        width: 55px;
        z-index: 101;
        margin: 0;
        border: none;
        padding: 10px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
        border-radius: 50%;
        cursor: pointer;
     }

    .header .header_box .menu > .inner {
        position: relative;
        width: 25px;
        height: 15px;
    }
 
     .menu .icon-bar {
         background-color: #fff;
         display: block;
         height: 1px;
         border-radius: 1px;
         width: 25px;
         margin: 0;
         transition: all .4s;
         position: absolute;
         font-size: 0;
     }
     .menu .icon-bar:nth-child(1) {
        top: 0;
     }
     .menu .icon-bar:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
     }
     .menu .icon-bar:nth-child(3) {
        top: auto;
        bottom: 0;
     }

     /* メニューオープン時のハンバーガー */
     .menu.open .icon-bar:nth-child(1) {
         transform: rotate(45deg);
         top: 7px;
     }
     .menu.open .icon-bar:nth-child(2) {
         opacity: 0;
     }
     .menu.open .icon-bar:nth-child(3) {
         transform: rotate(-45deg);
         bottom: 7px;
     }
 
     .header .menu_box {
         position: absolute;
         width: 100vw;
         height: 100vh;
         position: fixed;
         top: 0;
         left: 0;
         background-color: #fff;
         margin: 0;
         padding: 80px 5% 5%;
         z-index: 99;
         overflow: auto;
         -webkit-transition: opacity .5s .2s;
         transition: opacity .5s .2s;
         opacity: 0;
          visibility: hidden;
     }
     .header .header_box > div.menu_box {
         flex-direction: column;
         justify-content: flex-start;
     }
     
     .header .header_box > div.menu_box > .inner {
         width: 100%;
         height: 100%;
         overflow-y: auto;
         display: block;
     }
     .menu.open + div.menu_box {
         visibility: visible;
         opacity: 1;
     }
     /*丸の拡大*/
     .circle-bg{
         position: fixed;
         z-index:3;
         /*丸の形*/
         width: 100px;
         height: 100px;
         border-radius: 50%;
         background:#e2b246;
         /*丸のスタート位置と形状*/
         transform: scale(0);/*scaleをはじめは0に*/
         right: 5px;
         top: 30px;
         transition: all .6s;/*0.6秒かけてアニメーション*/
     }	
     .menu.open + div.menu_box + .circle-bg{
         transform: scale(50);/*クラスが付与されたらscaleを拡大*/
     }	
     
     .header .nav {
         flex-wrap: wrap;
     }
     
     .header .nav > li {
         width: 100%;
         padding: 0;
         border-bottom: 1px solid #000;
     }
 
     .header .nav > li a {
         text-align: left;
         padding: 15px;
         border-radius: 0;
         display: flex;
         align-items: center;
         justify-content: flex-start;
         background: #fff;
         margin: auto;
         font-size: 16px;
         
         height: auto;
     }
     .header .nav > li a > img {
         width: auto;
         
     }
     .header .nav > li a > span {
         display: inline;
         
     }
     
    .header .header_box > div.menu_box nav {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 30px;
        max-width: 600px;
    }

    .header .header_box > div.menu_box nav > ul {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    .header .header_box > div.menu_box nav > ul > li {
        padding: 0;
    }
    .header .header_box > div.menu_box nav > a.recruit {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        padding: 15px;
        border: 1px solid var(--main-color);
        width: 100%;
        border-radius: 100vmax;
    }
    .header .header_box .link_box.recruit:after {
        display: none;
    }
    .header .header_box > div.menu_box nav > a.contact {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        padding: 15px;
        width: 100%;
        border-radius: 100vmax;
    }

}



@media (max-width: 767px) {

    .header,
    #inner-header {
        height: 60px;
        padding: 0;
    }
    
    .home .header {
        position: fixed;
    }

    .header .menu_box {
        padding: 100px 20px 60px;
    }

    .header .nav > li {
        padding: 5px 10px;
    }

    .header .header_box > div.menu_box nav {
        display: block;
    }
    .header .header_box > div.menu_box nav > a {
        margin-top: 10px;
    }

    .header .nav > li a {
        padding: 10px;
    }

    .header .nav > li.menu-item-has-children {
        position: relative;
    }

    .header .nav > li.menu-item-has-children:before {
        content: "";
        display: inline-block;
        width: 0.7em;
        height: 0.5em;
        background: var(--main-color);
        clip-path: polygon(100% 0, 0 0, 50% 100%);
        margin-left: 0.5em;
        position: absolute;
        top: calc(10px + 0.5em);
        right: 10px;
        transition: all 0.3s;
    }

    .header .nav > li.menu-item-has-children.open:before {
        transform: rotate(180deg);
    }

    .header .nav > li.menu-item-has-children > a {
        display: inline-block;
    }
    .header .nav > li.menu-item-has-children > a:after {
        display: none;
    }
}


/*サブメニュー*/
.header nav ul.sub-menu {
	background: #fff;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
	overflow: hidden;
    margin-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
    width: 640px;
    flex-wrap: wrap;
    transition: all 0.3s;
    opacity: 0;
    display: flex;
    padding: 20px;
    border-radius: 20px;
}
.header nav > ul > li:hover > ul.sub-menu {
    top: auto;
    visibility: visible;
    opacity: 1;
}
.header nav ul.sub-menu > li {
    width: 50%;
    position: relative;
}
.header nav ul.sub-menu > li > a {
	color: var(--text-color);
    text-align: left;
    transition: background 0.3s;
    padding: 10px;
    display: inline-block;
    position: relative;
    border: none;
}

.header nav ul.sub-menu > li > a:hover {
	color: var(--text-color);
    opacity: 0.5;
}
.header nav ul.sub-menu > li > a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--main-color);
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
}
.header nav ul.sub-menu > li > a:hover:before {
    transform: scale(1, 1);
}

@media (max-width: 1399px) {
    .header nav ul.sub-menu {
        position: static;
        width: auto;
        visibility: inherit;
        opacity: 1;
        box-shadow: none;
        padding-top: 0;
        transition: none;
    }
    .header nav ul.sub-menu > li > a {
        padding-left: 1.5em;
    }
    .header nav ul.sub-menu > li > a:before {
        content: "";
        position: absolute;
        z-index: 1;
        left: 0;
        top: calc(10px + 0.5em);
        bottom: auto;
        width: 0.5em;
        height: 0.5em;
        border: 4px double #fff;
        border-radius: 50%;
        background: var(--main-color);
        box-sizing: content-box;
        transform: none;
        transition: none;
    }
    .header nav ul.sub-menu > li > a:hover:before {
        transform: none;
    }
}

@media (max-width: 767px) {

    .header nav ul.sub-menu > li {
        width: 100%;
    }
    .header nav ul.sub-menu > li > a {
        padding: 5px 5px 5px 1.5em;
        font-size: 14px;
    }
    .header nav ul.sub-menu > li > a:before {
        top: calc(5px + 0.4em);
    }
}
@media (min-width: 768px) {
    .header nav ul.sub-menu {
        display: flex!important;
    }
}

 /*********************
  bottom_contact
 *********************/
#bottom_contact {
    z-index: 1;
    position: relative;
    padding-bottom: 1px;
}
#bottom_contact:after {
    content: "";
    display: block;
    width: 100vw;
    height: calc(100% - 10vw + 0.5vw);
    background: var(--main-color);
    z-index: -1;
    position: absolute;
    bottom: 0;
    opacity: 0.2;
}
#bottom_contact .deco_company_name {
    margin-bottom: 50px;
    position: relative;
    z-index: 0;
}



#bottom_contact .box {
    padding: 20px 40px;
    border-radius: 100vmax;
    background: #fff;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);    
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 50px;
    margin-bottom: -40px;
    position: relative;
    z-index: 0;
}

.tel_box > span:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
    font-size: 40px;
    line-height: 1.2;
}
.tel_box > span:nth-child(1) > img {
    width: auto;
    height: 1em;
    display: block;
}
.tel_box > span:nth-child(2) {
    display: block;
    text-align: center;
}

#bottom_contact .box .contact_btn {
    background: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 10px;
    color: #fff;
    border-radius: 100vmax;
    align-self: center;
    font-size: 20px;
    padding: 15px;
    max-width: 400px;
}
#bottom_contact .box .contact_btn > img {
    height: 1em;
    width: auto;
    display: block;
}

#bottom_contact .box .company_btn {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100vmax;
    align-self: center;
    font-size: 20px;
    padding: 15px;
}

@media (max-width: 1029px) {

    #bottom_contact .box {
        grid-template-columns: 1fr 1fr;
        gap: 30px 50px;
        border-radius: var(--image_radius);
    }
    #bottom_contact .box .company_btn { 
        grid-column: 1 / 3;
        width: 100%;
        max-width: 400px;
        margin: auto;
    }
}

@media (max-width: 767px) {
    #bottom_contact {
        padding-top: 100px;
    }
    #bottom_contact:after {
        height: calc(100% - 100px);
    }
    #bottom_contact .deco_company_name {
        position: absolute;
    }

    #bottom_contact .box {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 90%;
        padding: 20px;
        margin-top: 30px;
    }
    #bottom_contact .box > a {
        width: 100%;
    }

    #bottom_contact .box .tel_box > span:nth-child(1) {
        font-size: 35px;
    }
    #bottom_contact .box .tel_box > span:nth-child(2) {
        font-size: 14px;
    }

    #bottom_contact .box .contact_btn,
    #bottom_contact .box .company_btn {
        font-size: 18px;
    }
}


 /*********************
  フッター
 *********************/
.f001 {
    background: #444444;
}
.f001 #inner-footer {
    padding-top: 80px;
    padding-bottom: 50px;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    gap: 0 80px;
}
.f001 #inner-footer > * {
    margin: 0;
}

.f001 nav {
    display: flex;
    gap: 0 40px;
}
.f001 ul.nav {
    width: 240px;
}

.f001 .nav li a {
    display: inline-block;
}

@media (max-width: 1029px) {

    .f001 #inner-footer {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 80px;
    }
    .f001 #inner-footer > .company_info {
        text-align: center;
    }
}

@media (max-width: 767px) {

    .f001 nav {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .f001 ul.nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        border: none;
        width: auto;
        gap: 20px;
    }
    .f001 ul.nav > li {
        border: none;
    }
    .f001 ul.nav > li:not(.m_display) {
        display: none;
    }
    .f001 ul.nav > li:before {
        content: "-";
        display: inline;
        margin-right: 0.2em;
    }
    .f001 ul.nav > li a {
        padding: 0;
        font-size: 12px; 
    }

}

 /*********************
  メインビジュアル
 *********************/
 .main_visual {
    position:relative;
    padding-top: 20px;
}
.main_visual > .inner {
    display: grid;
    grid-template-columns: 10% 20% 70%;
    grid-template-rows: auto;
    width: 100%;
}

.main_visual .main_visual_text {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}
.main_visual .mv_slider_wrap {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}
.main_visual .scroll_line {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

/* スライダー */
.main_visual #mv_slider .slick-slide {
    height: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.main_visual #mv_slider .slick-list {
    overflow: hidden;
    border-radius: var(--image_radius) 0 0 var(--image_radius);
    box-shadow: var(--image_shadow);
}
.slider .slick-dots {
    text-align: right;
    padding-right: 10%;
    bottom: -40px;
}
.slider.slick-dotted.slick-slider {
    margin-bottom: 100px;
}

.slider .slick-dots li button:before {
    content: '●';
    font-size: 15px;
    opacity: 0.2;
}
.slider .slick-dots li.slick-active button:before {
    opacity: 0.5;
}

/* 見出し */
.main_visual .main_visual_title {
    writing-mode:vertical-rl;
    letter-spacing: 5px;
    font-size: 4vw;
}
.main_visual .main_visual_title > span {
    display: table;
    white-space: nowrap;
}
.main_visual .main_visual_title > span:nth-child(2) {   
    padding-top: 3em;
}

.main_visual .main_visual_subtitle {
    font-size: 1.2vw;
}


/* scroll */
.scroll_line {
  position:absolute;
  bottom: 10%;
  left: 5%;
  z-index: 5;
}

.scroll_line > span {
    position: absolute;
    right: 5px;
    bottom: 20px;
    color: #000;
    font-size: max(12px, 0.8vw);
    writing-mode: vertical-lr;
    letter-spacing: 1px;
}

.scroll_line:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: -5px;
  width: 10px;
  height: 10px;
  border:  3px double #fff;
  border-radius: 50%;
  background: var(--main-color);
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom: 8vw;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_line:after{
  content:"";
  position: absolute;
  bottom:0;
  right:0;
  width:1px;
  height: 8vw;
  background:#000;
  z-index: 0;
}

@media (max-width: 767px) {

    .main_visual {
        padding-top: 0;
    }

    .main_visual > .inner {
        display: block;
    }
    .main_visual .main_visual_text {
        position: absolute;
        z-index: 1;
        top: 50%;
        right: 5%;
        left: auto;
        transform: translateY(-50%);
    }
    .main_visual .main_visual_title {
        font-size: 8vw;
        color: #fff;
        text-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    }
    .main_visual .main_visual_subtitle {
        color: #fff;
        font-size: 3.5vw;
        text-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    }

    .main_visual .mv_slider_wrap {
        width: calc(100% - 40px);
        margin-left: auto;
    }

    .main_visual #mv_slider .slick-list {
        border-radius: 0 0 0 var(--image_radius);
        box-shadow: none;
    }

    .main_visual #mv_slider .slick-slide {
        aspect-ratio: 3 / 5;
    }


    .scroll_line {
        bottom: 5%;
        left: 30px;
    }

    .scroll_line:after {
        height: 100px;
    }
    @keyframes circlemove{
        0%{bottom: 100px;}
        100%{bottom:0px;}
    }

    .slider.slick-dotted.slick-slider {
        margin-bottom: 50px;
    }
}



 /*********************
  TOP 私たちの想い
 *********************/
#top_thoughts {
    padding-bottom: 8vw;
    padding-top: 0;
}

#top_thoughts > .wrap {
    width: 96%;
    max-width: 1400px;
}

#top_thoughts .thoughts_contents { 
    display: grid;
    grid-template-columns:50% 1fr;
    align-items: center;
    margin-top: 80px;
    position: relative;
    gap: 120px;
}

#top_thoughts .thoughts_contents > .image { 
    position: relative;
    grid-column: 1 / 2;
    grid-row: 1;
}
#top_thoughts .thoughts_contents > .image > img { 
    display: block;
    width: 100%;
    border-radius: var(--image_radius);
    box-shadow: var(--image_shadow);
}
#top_thoughts .thoughts_contents > .image > img.circle { 
    position: absolute;
    top: -60px;
    left: -60px;
    animation: rotate_anime 10s linear infinite;
    width: 160px;
    height: 160px;
    box-shadow: none;
}

@keyframes rotate_anime {
	0% {
		transform: rotate(0deg); /* アニメーション開始時のスタイル */
	}
	100% {
		transform: rotate(360deg); /* アニメーション終了時のスタイル */
	}
}

#top_thoughts .thoughts_contents:after {
    content: "";
    display: block;
    aspect-ratio: 3 / 2;
    height: auto;
    border-radius: 60%;
    background: var(--main-color);
    z-index: -1;
    position: absolute;
    left: 45%;
    top: 50%;
    transform: rotate(-12deg) translateY(-50%);
    width: 1000px;
    min-width: 1000px;
    max-width: 60vw;
}

#top_thoughts .thoughts_contents > .text { 
    grid-column: 2 / 3;
    grid-row: 1;
}

#top_thoughts .thoughts_contents > .text > .inner {
    width: 100%;
}
#top_thoughts .thoughts_contents > .text .h_dot {
    margin-bottom: 15px;
}
#top_thoughts .thoughts_contents > .text .title_text {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 50px;
    color: #fff;
    line-height: 1.3;
    position: relative;
    z-index: 0;
    font-family: var(--normal_font);
}
#top_thoughts .thoughts_contents > .text .title_text:before {
    content: "";
    display: block;
    width: 130px;
    height: 1px;
    background: #fff;
    z-index: -1;
    position: absolute;
    top: 0.7em;
    right: calc(100% + 0.5em);
}
#top_thoughts .thoughts_contents > .text .description {
    color: #fff;
}
#top_thoughts .thoughts_contents > .text .btn001 {
    margin-bottom: 0;
}
#top_thoughts .thoughts_contents > .text .btn001 > a {
    margin-left: 0;
    background: #fff;
    color: var(--text-color);
    border: none;
    font-size: 18px;
    font-family: var(--point_font);
}

.deco_company_name {
    color: var(--main-color);
    font-weight: 900;
    text-align: right;
    opacity: 0.2;
    font-size: 10vw;
    line-height: 1;
    pointer-events: none;
    margin-top: 3vw;
    margin-bottom: 10vw;
}
.deco_company_name > span:nth-child(even) {
    display: none;
}



@media (max-width: 1199px) {

    #top_thoughts .thoughts_contents {
        gap: 80px
    }
    #top_thoughts .thoughts_contents > .text .title_text {
        font-size: 30px;
    }
    #top_thoughts .thoughts_contents > .text .description br.pc {
        display: none;
    }
}

@media (max-width: 1029px) {

    #top_thoughts .thoughts_contents {
        grid-template-columns: 100%;
        grid-template-rows: auto auto;
        padding-top: 10vw;
    }
    #top_thoughts .thoughts_contents:after {
        top: 0;
        left: 50%;
        transform: rotate(-12deg) translateX(-50%);
        transform-origin: left;
    }

    #top_thoughts .thoughts_contents > .text {
        grid-column: 1 / 2;
        grid-row: 1 / 2; 
    }
    #top_thoughts .thoughts_contents > .text > .inner {
        display: flex;
        flex-direction: column;
        width: 80%;
        margin: auto;
        padding-left: 10%;
    }
    #top_thoughts .thoughts_contents > .text .title_text {
        font-size: 25px;
    }
    #top_thoughts .thoughts_contents > .text .title_text:before {
        width: 50vw;
    }
    #top_thoughts .thoughts_contents > .image {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        width: 60%;
        margin: auto;
    }
    #top_thoughts .thoughts_contents > .image > img.circle {
        bottom: -60px;
        top: auto;
    }

}

@media (max-width: 767px) {
    #top_thoughts {
        padding-top: 50px;
        padding-bottom: 80px;
        position: relative;
    }
    #top_thoughts .thoughts_contents {
        gap: 40px;
        padding-top: 80px;
    }
    #top_thoughts .thoughts_contents > .text > .inner {
        width: 85%;
        padding-left: 0%;
    }
    #top_thoughts .thoughts_contents > .text .btn001 > a {
        margin: 0 auto;
    }
    #top_thoughts .thoughts_contents > .image {
        width: 80%;
    }

    .deco_company_name {
        overflow: hidden;
        display: flex;
        width: 100vw;
        position: absolute;
        top: 0;
        left: 0;
        font-size: 90px;
        opacity: 0.05;
    }

    .deco_company_name > span {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 0 0.25em;
    }

    .deco_company_name > span:nth-child(odd) {
        animation: MoveLeft 48s -24s infinite linear;
    }

    .deco_company_name > span:nth-child(even) {
        display: block;
        animation: MoveLeft2 48s infinite linear;
    }


    @keyframes MoveLeft {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
    }

    @keyframes MoveLeft2 {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
    }

}

 /*********************
  TOP 安心安全への取り組み
 *********************/
#top_safety {
    padding: 8vw 0;
}

#top_safety > .wrap {
    width: 96%;
    max-width: 1400px;
}

#top_safety .safety_contents {
    display: grid;
    grid-template-columns: 1fr 50%;
    align-items: center;
    position: relative;
    gap: 40px;
}


#top_safety .safety_contents > .image { 
    position: relative;
    grid-column: 2 / 3;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
#top_safety .safety_contents > .image > img { 
    display: block;
    width: 100%;
    border-radius: var(--image_radius);
    box-shadow: var(--image_shadow);
}

#top_safety .safety_contents > .image > img:nth-child(2) { 
    margin-top: -30px;
}
#top_safety .safety_contents > .image > img.circle { 
    position: absolute;
    top: -60px;
    left: -60px;
    animation: rotate_anime 10s linear infinite;
    width: 160px;
    height: 160px;
    box-shadow: none;
    border-radius: none;
}

#top_safety .safety_contents > .text { 
    grid-column: 1 / 2;
    grid-row: 1;
}

#top_safety .safety_contents > .text > .inner {
    width: 100%;
}
#top_safety .safety_contents > .text .h_dot {
    margin-bottom: 15px;
}
#top_safety .safety_contents > .text .title_text {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 50px;
    line-height: 1.3;
    position: relative;
    z-index: 0;
    font-family: var(--point_font);
}
#top_safety .safety_contents > .text .title_text:before {
    content: "";
    display: block;
    width: 50vw;
    height: 1px;
    background: var(--text-color);
    z-index: -1;
    position: absolute;
    top: 0.7em;
    right: calc(100% + 0.5em);
}

#top_safety .safety_contents > .text .btn001 {
    margin-bottom: 0;
}
#top_safety .safety_contents > .text .btn001 > a {
    font-size: 18px;
    margin-left: 0;
    font-family: var(--point_font);
}


@media (max-width: 1199px) {
    #top_safety .safety_contents > .text .title_text {
        font-size: 30px;
    }
    #top_safety .safety_contents > .text .description br.pc {
        display: none;
    }
}

@media (max-width: 1029px) {

    #top_safety .safety_contents {
        grid-template-columns: 100%;
        grid-template-rows: auto auto;
    }
    #top_safety .safety_contents > .text > .inner {
        width: 60%;
        margin: auto;
    }
    #top_safety .safety_contents > .text .title_text {
        font-size: 25px;
    }
    #top_safety .safety_contents > .image {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        width: 60%;
        margin: auto;
    }
    #top_safety .safety_contents > .image > img.circle {
        top: auto;
        left: auto;
        bottom: 0;
        right: -60px;
    }
}

@media (max-width: 767px) {

    #top_safety {
        padding: 80px 0;
    }
    #top_safety .safety_contents > .text > .inner {
        width: 85%;
    }
    #top_safety .safety_contents > .text .btn001 > a  {
        margin: 0 auto;
    }
    #top_safety .safety_contents > .image {
        width: 100%;
    }
    #top_safety .safety_contents > .image > img:nth-child(1) {
        margin-top: 50px;
    }
    #top_safety .safety_contents > .image > img:nth-child(2) {
        margin-top: 0;
    }
    #top_safety .safety_contents > .image > img.circle {
        bottom: -30px;
        right: -30px;
    }
}


 /*********************
  TOP 商品カテゴリ
 *********************/
#top_products {
    padding: 8vw 0;
}

#top_products > .wrap {
    width: 96%;
    max-width: 1400px;
}

#top_products .products_contents { 
    width: calc((100vw - 100%) / 2 + 100%);
    margin-left: calc((100vw - 100%) / 2 * -1);
    display: grid;
    grid-template-columns:50vw 1fr;
    position: relative;
    gap: 120px;
}

#top_products .products_contents > .image { 
    position: relative;
    grid-column: 1 / 2;
    grid-row: 1;
    width: 100%;
    justify-self: end;
}

#top_products .products_contents > .image .slider .slick-list {
    border-radius: 0 var(--image_radius) var(--image_radius) 0;
    box-shadow: var(--image_shadow);
    overflow: hidden;
}

#top_products .products_contents > .image .slider .slick-list  img.slick-slide {
    min-height: 500px;
    object-fit: cover;
}

#top_products .products_contents > .image .slider .slick-dots {
    text-align: left;
    padding-left: 10%;
    padding-right: 0;
}


#top_products .products_contents > .text { 
    grid-column: 2 / 3;
    grid-row: 1;
}

#top_products .products_contents > .text > .inner {
    width: 100%;
}
#top_products .products_contents > .text .h_dot {
    margin-bottom: 15px;
}
#top_products .products_contents > .text .title_text {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 50px;
    line-height: 1.3;
    position: relative;
    z-index: 0;
    font-family: var(--point_font);
}
#top_products .products_contents > .text .title_text:before {
    content: "";
    display: block;
    width: 130px;
    height: 1px;
    background: var(--text-color);
    z-index: -1;
    position: absolute;
    top: 0.7em;
    right: calc(100% + 0.5em);
}

#top_products .products_contents > .text .btn001 {
    margin-bottom: 0;
}
#top_products .products_contents > .text .btn001 > a {
    font-size: 18px;
    margin-left: 0;
    font-family: var(--point_font);
}

@media (max-width: 1199px) {

    #top_products .products_contents {
        gap: 80px;
    }
    #top_products .products_contents > .text .title_text {
        font-size: 30px;
    }
    #top_products .products_contents > .text .description br.pc {
        display: none;
    }
}

@media (max-width: 1029px) {

    #top_products .products_contents {
        grid-template-columns: 100%;
        grid-template-rows: auto auto;
    }

    #top_products .products_contents > .text {
        grid-column: 1 / 2;
        grid-row: 1 / 2; 
    }
    #top_products .products_contents > .text > .inner {
        display: flex;
        flex-direction: column;
        width: 70%;
        margin: auto;
        padding-left: 10%;
    }
    #top_products .products_contents > .text .title_text:before {
        width: 50vw;
    }
    #top_products .products_contents > .image {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        margin: auto;
    }
    #top_products .products_contents > .image .slider .slick-dots {
        text-align: center;
        padding-left: 0;
    }

}

@media (max-width: 767px) {

    #top_products {
        padding: 80px 0;
    }
    #top_products .products_contents {
        gap: 40px;
    }
    #top_products .products_contents > .text > .inner {
        width: 85%;
        padding: 0;
    }
    #top_products .products_contents > .text .title_text {
        font-size: 25px;
    }
    #top_products .products_contents > .text .btn001 > a {
        margin: 0 auto;
    }

    #top_products .products_contents > .image .slider .slick-list  img.slick-slide {
        min-height: 0;
        aspect-ratio: 3 / 2;
    }
}


 /*********************
  TOP 食品OEM
 *********************/
#top_oem {
    padding: 80px 0;
}

#top_oem > .wrap {
    width: 96%;
    max-width: 1400px;
}

#top_oem .oem_contents { 
    width: calc((100vw - 100%) / 2 + 100%);
    margin-right: calc((100vw - 100%) / 2 * -1);
    display: grid;
    grid-template-columns:650px 1fr;
    align-items: center;
    position: relative;
    gap: 120px;
    background: var(--main-color);
    padding: 40px;
    border-radius: 100vmax 0 0 100vmax;
}

#top_oem .oem_contents > .image { 
    position: relative;
    grid-column: 1 / 2;
    grid-row: 1;
    width: 100%;
    max-width:  1000px;
    justify-self: end;
    border-radius: 50%;
    z-index: 1;
}

#top_oem .oem_contents > .image > img {
    border-radius: 50%;
    box-shadow: var(--image_shadow);
}


#top_oem .oem_contents > .text { 
    grid-column: 2 / 3;
    grid-row: 1;
}

#top_oem .oem_contents > .text > .inner {
    width: 100%;
}
#top_oem .oem_contents > .text .h_dot {
    margin-bottom: 15px;
}
#top_oem .oem_contents > .text .title_text {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 50px;
    line-height: 1.3;
    position: relative;
    z-index: 0;
    color: #fff;
    font-family: var(--point_font);
}
#top_oem .oem_contents > .text .title_text:before {
    content: "";
    display: block;
    width: 200px;
    height: 1px;
    background: #fff;
    z-index: -1;
    position: absolute;
    top: 0.7em;
    right: calc(100% + 0.5em);
}

#top_oem .oem_contents > .text .subtitle {
    color: #fff;
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: bold;
}

#top_oem .oem_contents > .text .description {
    color: #fff;
}

#top_oem .oem_contents > .text .btn001 {
    margin-bottom: 0;
}
#top_oem .oem_contents > .text .btn001 > a {
    margin-left: 0;
    border: none;
    font-size: 18px;
    font-family: var(--point_font);
}

@media (max-width: 1399px) {
    #top_oem .oem_contents {
        grid-template-columns: 550px 1fr;
        gap: 5%;
    }
}

@media (max-width: 1199px) {
    #top_oem .oem_contents {
        display: flex;
        flex-direction: column;
        border-radius: 100vmax 0 0 0;
        margin-left: calc((100vw - 100%) / 2 * -1);
        margin-right: calc((100vw - 100%) / 2 * -1);
        width: 100vw;
    }

    #top_oem .oem_contents > .image {
        max-width: 500px;
    }

    #top_oem .oem_contents > .text .title_text {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    #top_oem .oem_contents {
        gap: 40px;
    }
    #top_oem .oem_contents > .text .title_text {
        font-size: 25px;
    }

    #top_oem .oem_contents > .text .subtitle {
        font-size: 20px;
    }

    #top_oem .oem_contents > .text .description br {
        display: none;
    }

    #top_oem .oem_contents > .text .btn001 > a {
        margin: 0 auto;
    }
}



 /*********************
  TOP 新着
 *********************/
#top_news {
    padding: 8vw 0;
}
#top_news .box {
    background: #f8f8f8;
    margin-left: calc((100vw - 100%) / 2 * -1);
    padding: 40px;
    padding-left: calc((100vw - 100%) / 2);
    padding-right: 80px;
    border-radius: 0 100vmax 100vmax 0;

    display: grid;
    grid-template-columns: 400px 1fr;
    grid-template-rows: auto auto auto;
}

#top_news .box .h_dot {
    grid-column: 1 / 2;
    grid-row: 1 / 2;

}
#top_news .box .subtitle {
    grid-column: 1 / 2;
    grid-row: 2 / 3;

    font-size: 40px;
    letter-spacing: 3px;
    font-weight: 700;
    line-height: 1.5;
    font-family: var(--point_font);
    margin-bottom: 40px;
}
#top_news .box .post_list {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
    align-self: center;
}
#top_news .box .btn001 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    margin: 0;
}

#top_news .box .btn001 > a {
    margin-left: 0;
    font-family: var(--point_font);
}

#top_news .post_list > .post_item:not(:last-child) {
    border-bottom: 1px solid #000;
}
#top_news .post_list > .post_item a {
    color: var(--text-color);
    display: grid;
    grid-template-columns: 100px 1fr;
    background-image: url(../images/tmp/deco_btn02.svg);
    background-size: 1em;
    background-position: right 1em center;
    background-repeat: no-repeat;
    padding: 15px 3em 15px 15px;
    font-size: 18px;
}

@media (max-width: 1029px) {

    #top_news .box {
        margin-right: calc((100vw - 100%) / 2 * -1);
        padding-right: calc((100vw - 100%) / 2);
        border-radius: 0;
    }

    #top_news .box .post_list {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }
    #top_news .box .btn001 {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
        margin-bottom: 40px;
        align-self: end;
    }
    #top_news .box .btn001 > a {
        margin-left: auto;
        margin-right: 0;
    }

}

@media (max-width: 767px) {

    #top_news .box {
        display: block;
    }

    #top_news .box .subtitle {
        font-size: 30px;
    }

    #top_news .post_list > .post_item a {
        display: block;
        font-size: 16px;
    }
    #top_news .box .btn001 {
        margin-top: 40px;
    }
    #top_news .box .btn001 > a {
        margin: 0 auto;
    }
}

 /*********************
  TOP リクルート
 *********************/
#top_recruit {
    padding: 50px 0;
}
#top_recruit > .wrap {
    width: 96%;
    max-width: 1400px;
}

#top_recruit .box {
    position: relative;
    padding: 40px 10%;
    border-radius: var(--image_radius);
    overflow: hidden;
}

#top_recruit .box .text {
    display: grid;
    grid-template-columns: 40% 1fr;
    grid-template-rows: auto auto;
    position: relative;
    z-index: 1;
    gap: 0 40px;
}
#top_recruit .box .text .title {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    color: #fff;
}
#top_recruit .box .text .title h2 {
    font-weight: bold;
    font-size: 75px;
    letter-spacing: 3px;
}
#top_recruit .box .text .title .subtitle {
    font-size: 30px;
    font-family: var(--point_font);
    font-weight: bold;
}
#top_recruit .box .text .title .subtitle > span {
    background: var(--main-color);
    border-radius: 10px;
    margin: 0 10px;
    padding: 0 10px;
}
#top_recruit .box .text .description {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    color: #fff;
    font-size: 18px;
    align-self: center;
}
#top_recruit .box .text .btn001 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}
#top_recruit .box .text .btn001 > a {
    margin-left: 0;
    font-family: var(--point_font);
    font-size: 18px;
}

#top_recruit .box .bg {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 50% 50%;
    gap: 0;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#top_recruit .box .bg:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
}
#top_recruit .box .bg > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: -1;
}

@media (max-width: 1029px) {

    #top_recruit .box .text {
        grid-template-columns: 100%;
        grid-template-rows: auto auto auto;
    }
    #top_recruit .box .text .title h2 {
        line-height: 1;
        margin-bottom: 15px;
    }

    #top_recruit .box .text .title .subtitle {
        margin-bottom: 20px;
    }

    #top_recruit .box .text .btn001 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        
    }
    #top_recruit .box .text .btn001 a {
        margin: 0;
    }

    #top_recruit .box .text .description {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }
    #top_recruit .box .text .description p br {
        display: none;
    }

    #top_recruit .box .bg {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    }

}

@media (max-width: 767px) {
    #top_recruit .box .text {
        display: block;
    }
    #top_recruit .box .text .title h2 {
        font-size: 50px;
    }
    #top_recruit .box .text .title .subtitle {
        font-size: 25px;
    }
    #top_recruit .box .text .description {
        font-size: 16px;
    }

    #top_recruit .box .text .btn001 a {
        margin: 0 auto;
    }

}


 /*********************
  想い
 *********************/
.hl002 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    padding-top: 150px;
    justify-content: space-between;
    overflow: hidden;
    padding-bottom: 20px;
}
.hl002:after {
    content: "";
    display: block;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 60%;
    background: var(--main-color);
    z-index: -1;
    position: absolute;
    left: 25%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100vw;
}
.hl002 > img {
    width: 100%;
    border-radius: var(--image_radius) 0 0 var(--image_radius);
    height: 380px;
    object-fit: cover; 
    box-shadow: var(--image_shadow);

}

.hl002 .text {
    padding-left: 10%;
    color: #fff;
    margin-top: 50px;
}
.hl002 .text .h_dot {
    letter-spacing: 3px;
}
.hl002 .text h1 {
    font-size: 50px;
    letter-spacing: 3px;
    font-weight: bold;
    z-index: 0;
    position: relative;
    line-height: 1.5;
    font-family: var(--point_font);
}
.hl002 .text h1:before {
    content: "";
    display: block;
    width: 50vw;
    height: 1px;
    background: #fff;
    z-index: -1;
    position: absolute;
    top: 0.7em;
    right: calc(100% + 0.5em);
}
.hl002 .text .sub {
    font-size: 20px;
}

@media (max-width: 1399px) {
    .hl002 {
        position: relative;
    }
    .hl002:after {
        top: auto;
        bottom: 100px;
        transform: translateX(-50%);
    }

    .hl002 .text h1 {
        font-size: 3.5vw;
    }
    .hl002 .text .h_dot {
        font-size: 1.5vw;
    }

}

@media (max-width: 1029px) {

    .hl002 {
        padding-top: 110px;
        grid-template-columns: 100%;
        gap: 30px;
    }
    .hl002:after{
        transform: translateX(-50%) rotate(5deg);
        width: 110vw;
    }
    .hl002 .text {
        margin-top: 10px;
    }
    .hl002 > img {
        width: 75%;
        height: 300px;
        margin-left: auto;
    }
}

@media (max-width: 767px) {

    .hl002 .text h1 {
        font-size: 25px;
    }
    .hl002 .text .h_dot {
        font-size: 12px;
    }

    .hl002:after {
        width: 200vw;
    }

    .hl002 > img {
        aspect-ratio: 16 / 9;
        height: auto;
        border-radius: 20px 0 0 20px;
    }
}



#thoughts_top {
    padding: 50px 0 80px;
}
#thoughts_top .box {
    position: relative;
    display: table;
    margin: 0 auto 8vw;
}
#thoughts_top .box > .inner {
    position: relative;
    padding: 50px;
    text-align: center;
    font-size: 20px;
    line-height: 2;
}

#thoughts_top .box > .inner span {
    color: var(--main-color);
}

#thoughts_top .box:before,
#thoughts_top .box:after,
#thoughts_top .box > .inner:before,
#thoughts_top .box > .inner:after {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    position: absolute
}
#thoughts_top .box:before {
    top: 0;
    left: 0;
    border-left: 1px solid var(--main-color);
    border-top: 1px solid var(--main-color);
}
#thoughts_top .box:after {
    top: 0;
    right: 0;
    border-right: 1px solid var(--main-color);
    border-top: 1px solid var(--main-color);
}
#thoughts_top .box > .inner:before {
    bottom: 0;
    left: 0;
    border-left: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
}
#thoughts_top .box > .inner:after {
    bottom: 0;
    right: 0;
    border-right: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
}

@media (max-width: 767px) {

    #thoughts_top .box {
        width: 90%;
        margin: 0 auto 40px;
    }
    #thoughts_top .box > .inner {
        padding: 25px;
        font-size: 16px;
    }
}


.thoughts_list {
    display: grid;
    grid-template-columns: 100%;
    gap: 8vw 0;
}

.thoughts_list > .item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.thoughts_list > .item:nth-child(odd) {
    flex-direction: row-reverse;
}

.thoughts_list > .item .text {
    width: calc(50% - 60px);
    display: grid;
    place-content: center;
}
.thoughts_list > .item .text > .inner {
    width: auto;
}

.thoughts_list > .item .text .number {
    font-size: 40px;
    color: var(--main-color);
    font-weight: bold;
}
.thoughts_list > .item .text h2 {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: var(--normal_font);
}

.thoughts_list > .item .image {
    width: calc(50% - 60px);
    overflow: hidden;
    box-shadow: var(--image_shadow);
    border-radius: var(--image_radius) 0 0 var(--image_radius);
}
.thoughts_list > .item:nth-child(odd) .image {
    border-radius: 0 var(--image_radius) var(--image_radius) 0;

}
.thoughts_list > .item .image > img {
    width: 100%;
    display: block;
    max-height: 700px;
    object-fit: cover;
}

@media (max-width: 1029px) {
    .thoughts_list > .item {
        gap: 40px;
    }
    .thoughts_list > .item .text {
        width: 100%;
    }
    .thoughts_list > .item .text {
        width: 80%;
        margin: auto;
    }
    .thoughts_list > .item .text .description br {
        display: none;
    }
    .thoughts_list > .item .image {
        width: 90%;
    }
    .thoughts_list > .item:nth-child(odd) .image {
        margin-right: auto;
    }
    .thoughts_list > .item:nth-child(even) .image {
        margin-left: auto;
    }
    .thoughts_list > .item .image > img {
        aspect-ratio: 3 / 2;
    }

    .thoughts_list > .item .image {

    }
}

@media (max-width: 767px) {

    .thoughts_list > .item .text h2 {
        font-size: 25px;
    }


}


#thoughts_name {
    padding: 8vw 0;
    position: relative;
    z-index: 0;
}
#thoughts_name:before {
    content: "";
    display: block;
    aspect-ratio: 5 / 3;
    height: auto;
    border-radius: 60%;
    background: var(--main-color);
    opacity: 0.1;
    z-index: -1;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: rotate(-12deg) translateX(-50%);
    width: 110vw;
    max-width: 2200px;
    min-width: 2000px;
    transform-origin: left;
}

.hl003 {
    text-align: center;
    position: relative;
    padding-bottom: 100px;
}
.hl003:after {
    content: "";
    display: block;
    width: 1px;
    height: 80px;
    bottom: 0;
    background: var(--main-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.hl003 > .en {
    color: var(--main-color);
    font-weight: bold;
}
.hl003 > .jp {
    font-size: 35px;
    letter-spacing: 3px;
    font-weight: bold;
    font-family: var(--point_font);
}

@media (max-width: 767px) {

    .hl003 > .jp {
        font-size: 25px;
    }


}

#thoughts_name .logo {
    width: 400px;
    max-width: 100%;
    margin: 20px auto;
}
#thoughts_name .logo > img {
    width: 100%;
    display: block;    
}

.origin_name {
    display: flex;
    gap: 30px;
    margin: 40px auto;
    position: relative;
    z-index: 0;
}

.origin_name > div {
    width: 200px;
    border: 1px solid var(--main-color);
    background: #fff;
    aspect-ratio: 1;
    border-radius: 50%;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 30px 1fr;
    gap: 10px 10px;
}

.origin_name:after {
    content: "";
    display: block;
    width: 600px;
    height: 30px;
    background: var(--main-color);
    opacity: 0.3;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.origin_name > div .phrase {
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
} 
.origin_name > div .phrase > span {
    color: var(--main-color);
} 

.origin_name > div .phrase.small {
    font-weight: normal;
    font-size: 95%;
}

.origin_name > div .phrase:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
}
.origin_name > div .row {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    display: flex;
    justify-content: center;
    gap: 10px;
}

#thoughts_name .text {
    text-align: center;
    font-size: 18px;
}
#thoughts_name .text p {
    line-height: 2;
}
#thoughts_name .text span {
    color: var(--main-color);
}

@media (max-width: 1029px) {
    #thoughts_name .text {
        width: 90%;
        margin: auto;
        text-align: left;
    }
    #thoughts_name .text br {
        display: none;
    }
}

@media (max-width: 767px) {

    .origin_name > div {
        width: 170px;
    }
    .origin_name:after {
        height: 300px;
        width: 30px;
    }
    .origin_name > div .phrase {
        font-size: 20px;
    }

    #thoughts_name .text {
        font-size: 16px;
    }
}

#thoughts_sdgs {
    padding: 150px 0 50px;
}

.thoughts_contents {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.thoughts_contents .image {
    align-self: end;
}
.thoughts_contents .image .logo {
    width: 100%;
    margin-bottom: 15px;
}
.thoughts_contents .image .logo img {
    width: 100%;
    display: block;    
}
.thoughts_contents .image .icon {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.thoughts_contents .image .icon img {
    width: 100%;
}

.thoughts_contents .text .h_dot {
    margin-bottom: 15px;
}
.thoughts_contents .text .title_text {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 50px;
    line-height: 1.3;
    position: relative;
    z-index: 0;
    font-family: var(--point_font);
}
.thoughts_contents .text .title_text:before {
    content: "";
    display: block;
    width: 50vw;
    height: 1px;
    background: var(--text-color);
    z-index: -1;
    position: absolute;
    top: 0.7em;
    right: calc(100% + 0.5em);
    margin-bottom: 20px;
}

ul.check {
    margin: 30px 0;
    padding: 30px;
    border-radius: 20px;
    background: #fff5ef;
}

ul.check > li {
    position: relative;
    z-index: 0;
    padding-left: 2em;
}
ul.check > li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 1.5em;
    height: 1.5em;
    background-color: var(--main-color);
    border-radius: 50%;
    z-index: 1;
}
ul.check > li:after {
    content: '';
    position: absolute;
    left: 0.45em;
    top: 0.4em;
    transform: rotate(45deg);
    height: 0.9em;
    width: 0.6em;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
    z-index: 2;
}
ul.check > li:not(:last-child) {
    margin-bottom: 15px;
}


#thoughts_sdgs .btn001 > a {
    margin-left: 0;
    font-size: 18px;
}


@media (max-width: 1029px) {
    .thoughts_contents {
        grid-template-columns: 100%;
        margin-bottom: 15px;
    }
    .thoughts_contents .image {
        width: 60%;
        margin: auto;
    }
}

@media (max-width: 767px) {

    .thoughts_contents .text .title_text {
        font-size : 25px;
    }
    .thoughts_contents .text .h_dot {
        font-size: 16px;
    }

    .thoughts_contents .image {
        width: 100%;
    }
}


 /*********************
  OEM
 *********************/
#oem_features {
    padding: 80px 0;
}
#oem_features > .wrap {
    width: 96%;
    max-width: 1400px;
}

#oem_features .top_text {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
}

#oem_features .hl003 {
    margin-bottom: 40px;
    margin: 100px 0 40px;
}


#oem_features .hl003:before {
    content: "";
    display: block;
    aspect-ratio: 3 / 2;
    height: auto;
    border-radius: 60%;
    background: var(--main-color);
    z-index: -1;
    position: absolute;
    left: 50%;
    top: -80px;
    transform: rotate(-12deg) translateX(-50%);
    width: 300px;
    opacity: 0.1;
}

#oem_features .hl003 .jp {
    font-size: 40px;
}

.features_list {
    display: grid;
    grid-template-columns: 100%;
    gap: 80px 0;
}

.features_list > .item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.features_list > .item:nth-child(odd) {
    flex-direction: row-reverse;
}

.features_list > .item .text {
    width: calc(50% - 60px);
    display: grid;
    place-content: center;
}
.features_list > .item .text > .inner {
    width: auto;
}

.features_list > .item .text .number {
    font-size: 40px;
    color: var(--main-color);
    font-weight: bold;
}
.features_list > .item .text h3 {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: var(--normal_font);
}

.features_list > .item .image {
    width: calc(50% - 60px);
    overflow: hidden;
    box-shadow: var(--image_shadow);
    border-radius: var(--image_radius);
    aspect-ratio: 3 / 2;
}

.features_list > .item .image > img {
    width: 100%;
    display: block;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    background: #ccc;
}

@media (max-width: 1029px) {

    .features_list > .item .text,
    .features_list > .item .image {
        width: calc(50% - 20px);
    }

}

@media (max-width: 767px) {

    #oem_features .hl003 .jp {
        font-size: 25px;
    }

    .features_list > .item .text,
    .features_list > .item .image {
        width: 100%;
    }
    .features_list > .item .text .number {
        font-size: 30px;
    }
    .features_list > .item .text h3 {
        font-size: 25px;
    }
}


#oem_products {
    padding: 80px 0;
    background: #f8f8f8;
}

#oem_products .h_dot {
    margin-bottom: 10px;
}
#oem_products .title_text {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 60px;
    line-height: 1.5;
    position: relative;
    z-index: 0;
}
#oem_products .title_text:before {
    content: "";
    display: block;
    width: 50vw;
    height: 1px;
    background: var(--text-color);
    z-index: -1;
    position: absolute;
    top: 0.7em;
    right: calc(100% + 0.5em);
}


.products_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 60px;
}

.products_list > .item {
    width: 100%;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
    margin-bottom: 40px;
}
.products_list > .item .name {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}
.products_list > .item .name.h_dot {
    margin-bottom: 0!important;
}
.products_list > .item .name.h_dot:before {
    background: #000;
}

.products_list > a.item:hover .name.h_dot:before {
    background: var(--main-color);
}



.products_list > .item .image {
    box-shadow: var(--image_shadow);
    border-radius: var(--image_radius);
    overflow: hidden;
    margin-bottom: 15px;
}

.products_list > .item .image > img {
    width: 100%;
    display: block;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    background: #ccc;
    transition: scale 0.3s;
}

.products_list > a.item:hover .image > img {
    scale: 1.1;
}

@media (max-width: 1029px) {

    .products_list {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    #oem_products .h_dot {
        font-size: 18px;
    }
    #oem_products .title_text {
        font-size: 25px;
    }
    .products_list {
        grid-template-columns: 100%;
    }
}



body.page-oem #container,
body.page-oem #main {
    overflow: visible;
}
body.category #container,
body.category #main {
    overflow: visible;
}

#oem_flow {
    padding: 80px 0;
}

#oem_flow .two_in_one {
    margin-bottom: 100px;
}
#oem_flow .two_in_one > div.right {
    display: grid;
    align-items: end;
    justify-content: end;
}

#oem_flow .h_dot {
    margin-bottom: 10px;
}
#oem_flow .title_text {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 3px;
    line-height: 1.5;
    position: relative;
    z-index: 0;
}
#oem_flow .title_text:before {
    content: "";
    display: block;
    width: 50vw;
    height: 1px;
    background: var(--text-color);
    z-index: -1;
    position: absolute;
    top: 0.7em;
    right: calc(100% + 0.5em);
}

@media (max-width: 1029px) {
    #oem_flow .two_in_one {
        gap: 20px;
        margin-bottom: 50px;
    }
    #oem_flow .two_in_one > div {
        width: 100%;
    }
    #oem_flow .two_in_one > div.right {
        display: block;
    }
}

@media (max-width: 767px) {
    #oem_flow .h_dot {
        font-size: 18px;
    }
    #oem_flow .title_text {
        font-size: 25px;
    }

}


.flow {
    position: relative;
    overflow:visible;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 80px;
}

.flow .flow_list {
    position: sticky;
    top: 100px;
    left: 0;
    z-index: 10;
    width: 250px;
    align-self: start;
}
.flow .flow_list ol {
    background: #fff5ef;
    padding: 30px;
    border-radius: var(--image_radius);
    box-shadow: var(--image_shadow);
}
.flow .flow_list ol > li.step {
    margin-bottom: 15px;
}
.flow .flow_list ol > li.step a {
    display: flex;
    color: var(--text-color);
    align-items: baseline;
    gap: 0 15px;
    transition: opacity 0.3s;
}
.flow .flow_list ol > li.step a:hover {
    opacity: 0.5;
}
.flow .flow_list ol > li.step a > span:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    width: 50px;
    height: auto;
    aspect-ratio: 1;
    border-radius:  50%;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    position: relative;
}
.flow .flow_list ol > li.step:not(:last-child) a > span:first-child:after {
    content: "";
    display: block;
    width: 1px;
    height: 15px;
    background: var(--main-color);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1029px) {
    .flow .flow_list {
        display: none;
    }

}


.flow_detail ol {
    display: grid;
    grid-template-columns: 100%;
    gap: 40px;
    margin-top: 40px;
}
.flow_detail ol > li.item {
    display: grid;
    grid-template-columns: 1fr 300px;
    grid-template-columns: 100%;
    width: 100%;
    gap: 40px;
}

.flow_detail ol > li.item .text {
    width: 100%;
}

.flow_detail ol > li.item .text .title {
    display: flex;
    gap: 60px;
    margin-bottom: 30px;
    align-items: flex-end;
}
.flow_detail ol > li.item .text .title .number {
    line-height: 1;
    font-size: 50px;
    text-align: center;
    position: relative;
    z-index: 0;
    color: #fff;
    padding-bottom: 8px;
}

.flow_detail ol > li.item .text .title .number:after {
    content: "";
    display: block;
    aspect-ratio: 3 / 2;
    height: auto;
    border-radius: 50%;
    background: var(--main-color);
    z-index: -1;
    position: absolute;
    left: 20px;
    bottom: 25px;
    transform: rotate(-25deg) translateX(-50%);
    width: 120px;
}
.flow_detail ol > li.item .text .title .number > span {
    display: block;
    font-size: 15px;
}
.flow_detail ol > li.item .text .title  .flow_name {
    font-size: 30px;
}

.flow_detail ol > li.item .image {
    width: 100%;
}
.flow_detail ol > li.item .image > img {    
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    background: #ccc;
    display: block;    
}

@media (max-width: 1029px) {
    .flow_detail {
        padding: 20px;
    }

    .flow {
        grid-template-columns: 100%;
    }

    .flow .flow_list {
        width: 100%;
    }
    .flow .flow_list ol {
        display: flex;
    }
}

@media (max-width: 767px) {

    .flow_detail ol > li.item {
        grid-template-columns: 100%;
        gap: 10px;
    }
    .flow_detail ol > li.item .text .title {
        gap: 40px;
    }
    .flow_detail ol > li.item .text .title .number {
        font-size: 35px;
    }
    .flow_detail ol > li.item .text .title .number:after {
        width: 100px;
        left: 15px;
        bottom: 20px;
    }
    .flow_detail ol > li.item .text .title .flow_name {
        font-size: 25px;
    }
}


#oem_flow .btn001 {
    margin-top: 60px;
    margin-bottom: 0;
}
#oem_flow .btn001 a.green {
    font-size: 20px;
    background: var(--green01);
    color: #fff;
    display: flex;
    padding: 20px 40px;
    align-items: center;
    gap: 0 1em;
    border: none;
}

@media (max-width: 767px) {

    #oem_flow .btn001 a.green {
        max-width: 100%;
        white-space: wrap;
        font-size: 18px;
        line-height: 1.5;
        border-radius: 100vmax;
    }


}



/*********************
 採用情報
*********************/

#archive_recruit {
    padding: 80px 0;
}

#archive_recruit > .inner {
    max-width: 1400px;
}

#archive_recruit .top_text {
    margin-bottom: 80px;
    text-align: center;
}

#archive_recruit .top_text .catch {
    font-size: min(45px, 5vw);
    margin-bottom: 15px;
    font-weight: bold;
}

@media (max-width: 1029px) {
    #archive_recruit .top_text .description {
        text-align: left;
    }
}

@media (max-width: 767px) {

    #archive_recruit .top_text .catch {
        font-size: 25px;
    }

}


.recruitment_tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 0;
}

.recruitment_tabs .tab-content {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
}

.recruitment_tabs .tab-button {
    cursor: pointer;
    border: 1px solid var(--main-color);  
    text-align: center;
    padding: 15px;
    border-radius: 100vmax;
    font-size: 20px;
    letter-spacing: 3px;
    font-weight: bold;
    order: 0;
    width: calc(25% - 20px);
    margin: 0 10px;
}
.recruitment_tabs .tab-button.active {
    background: var(--main-color);
    color: #fff;
}

.recruitment_tabs .tab-button.five {
    width: calc(20% - 20px);
}
.recruitment_tabs .tab-button.four {
    width: calc(25% - 20px);
}
.recruitment_tabs .tab-button.three {
    width: calc(33.3333% - 20px);
}
.recruitment_tabs .tab-button.two {
    width: calc(50% - 20px);
}

.recruitment_tabs .tab-content {
    margin-left: calc((100vw - 100%) / 2 * -1);
    margin-right: calc((100vw - 100%) / 2 * -1);
    padding-left: calc((100vw - 100%) / 2);
    padding-right: calc((100vw - 100%) / 2);
    background: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100vw;
    order: 1;
}

.recruitment_tabs .tab-content .title_text {
    font-size: min(5vw, 40px);
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    z-index: 0;
    font-family: var(--point_font);
}

.recruitment_tabs .tab-content .title_text:before {
    content: "";
    display: block;
    width: 50vw;
    height: 1px;
    background: var(--text-color);
    z-index: -1;
    position: absolute;
    top: 0.7em;
    right: calc(100% + 0.5em);
}

.recruitment_tabs .tab-content .two_in_one {
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 80px;
    align-items: center;
}
.recruitment_tabs .tab-content .two_in_one > div {
    width: 100%;
    grid-column: 1 / 3;
}
/*
.recruitment_tabs .tab-content .two_in_one.reverse > div:nth-child(1) {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}  
.recruitment_tabs .tab-content .two_in_one.reverse > div:nth-child(2) {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}
*/

.recruitment_tabs .tab-content .image {
    border-radius: var(--image_radius);
    box-shadow: var(--image_shadow);
    overflow: hidden;
}
.recruitment_tabs .tab-content .image > img {
    width: 100%;
    display: block;
}


.recruitment_tabs .tab-content ul.check {
    background: #fff;
    padding: 0;
}


.recruitment_tabs .tab-content .interview {
    margin-left: calc((100vw - 100%) / 2 * -1);
    margin-right: calc((100vw - 100%) / 2 * -1);
    position: relative;
    z-index: 0;
    padding-top: 100px;
    padding-bottom: 50px;
}

.recruitment_tabs .tab-content .interview:before {
    content: "";
    display: block;
    width: 100%;
    height: 65%;
    background: #f8f8f8;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
}

.recruitment_tabs .tab-content .interview > .inner {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    align-items: flex-end;
}

.recruitment_tabs .tab-content .interview .text {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}
.recruitment_tabs .tab-content .interview .text .h_dot {
    margin-bottom: 10px;
    font-size: 25px;
}
.recruitment_tabs .tab-content .interview .text .bg_en {
    font-size: 120px;
    line-height: 1;
    opacity: 0.1;
}

.recruitment_tabs .tab-content .interview .interview_list {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 80px;
}
.recruitment_tabs .tab-content .interview .interview_list > a {
    position: relative;
    border-radius: var(--image_radius);
    box-shadow: var(--image_shadow);
    overflow: hidden;
    display: block;
    aspect-ratio: 2 / 3;
    width: 300px;
}
.recruitment_tabs .tab-content .interview .interview_list > a > img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
    width: 100%;
    transition: all 0.3s;
}

.recruitment_tabs .tab-content .interview .interview_list > a:hover > img {
    transform: scale(1.1);
}

.recruitment_tabs .tab-content .interview .interview_list > a > .info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
    color: #fff;
    text-align: center;
    padding-bottom: 20px;

    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0.8) 100%);

}
.recruitment_tabs .tab-content .interview .interview_list > a > .info > span {
    display: block;
}
.recruitment_tabs .tab-content .interview .interview_list > a > .info > span.name {
    font-size: 20px;
    letter-spacing: 2px;
}

.recruitment_information {
    margin-left: calc((100vw - 100%) / 2 * -1);
    margin-right: calc((100vw - 100%) / 2 * -1);
    position: relative;
    z-index: 0;
    padding-top: 80px;
    padding-bottom: 80px;
    background: var(--main-color);
}
.recruitment_tabs .tab-content .recruitment_information .title_text {
    color: #fff;
    margin-bottom: 40px;
}
.recruitment_tabs .tab-content .recruitment_information .title_text:before {
    background: #fff;
}
.recruitment_information .box {
    background: #fff;
    padding: 40px;
    border-radius: 40px;
}

.recruitment_information .box .btn001 {
    margin-top: 80px;
    margin-bottom: 0;
}

.recruitment_information .box .btn001 > a {
    font-size: 20px;
    padding: 1em 3em;
    justify-content: center;
    background: var(--green01);
    color: #fff;
    font-weight: bold;
    border: none;
}



@media (max-width: 1199px) {
    .recruitment_tabs .tab-content .interview > .inner {
        grid-template-columns: 100%;
        gap: 50px;
    }
    .recruitment_tabs .tab-content .interview .text {
        grid-column: auto;
        grid-row: auto;
    }
    .recruitment_tabs .tab-content .interview .interview_list {
        grid-column: auto;
        grid-row: auto;
        justify-content: center;
    }
    .recruitment_tabs .tab-content .interview .text .bg_en {
        position: absolute;
        writing-mode: vertical-lr;
        right: 0;
        bottom: 0;
    }
    .recruitment_tabs .tab-content .interview:before {
        height: 50%;
    }
    .recruitment_tabs .tab-content .title_text {
        display: inline-block;
        padding: 8px 10px;
    }
    .recruitment_tabs .tab-content .title_text:before {
        top: auto;
        bottom: 0;
        right: 0;
    }

}

@media (max-width: 1029px) {

    .recruitment_tabs .tab-button.five {
    width: calc(33.3333% - 20px);
    }
    .recruitment_tabs .tab-button.four {
        width: calc(25% - 20px);
    }
    .recruitment_tabs .tab-button.three {
        width: calc(33.3333% - 20px);
    }
    .recruitment_tabs .tab-button.two {
        width: calc(50% - 20px);
    }
}


@media (max-width: 767px) {
    .recruitment_tabs  {
        gap: 15px 0;
    }
    .recruitment_tabs .tab-button {
        width: calc(50% - 20px)!important;
        padding: 5px 10px;
        font-size: 16px;

    }
    .recruitment_tabs .tab-content .title_text {
        font-size: 25px;
    }
    .recruitment_tabs .tab-content .two_in_one {
        grid-template-columns: 100%;
        gap: 20px;
        margin-bottom: 30px;

    }
    .recruitment_tabs .tab-content .two_in_one.reverse > div:nth-child(1),
    .recruitment_tabs .tab-content .two_in_one.reverse > div:nth-child(2) {
        grid-row: auto;
        grid-column: auto;
    }

    .recruitment_tabs .tab-content .interview {
        padding-top: 50px;
    }

    .recruitment_tabs .tab-content .interview .interview_list > a {
        aspect-ratio: 1;
    }
    .recruitment_tabs .tab-content .interview .interview_list > a > img {
        aspect-ratio: 1;
    }
    .recruitment_tabs .tab-content .interview:before {
        height: 100%;
    }

    .recruitment_information .box {
        padding: 30px 20px;
    }

    .recruitment_information .box .btn001 {
        margin-top: 40px;
    }

    .recruitment_information .box .btn001 > a {
        padding: 1em;
        margin: 0;
        width: 100%;
    }
}



table.recruit_info {
    min-width: 80%;
    margin: auto;
    font-size: 18px;
}
table.recruit_info th {
    padding: 15px 15px 15px 0;
    border-bottom: 1px solid #ccc;
    min-width: 150px;
}
table.recruit_info th > span {
    border-left: 5px solid var(--main-color);
    padding-left: 15px;
}
table.recruit_info td {
    padding: 15px;
    border-bottom: 1px solid #ccc;
}

@media (max-width: 1029px) {
    table.recruit_info {
        width: 100%;
    }

}

@media (max-width: 767px) {
    table.recruit_info {
        font-size: 14px;
    }

    table.recruit_info th {
        padding: 10px 10px 0 0;
        border-bottom: none;
    }
    table.recruit_info td {
        padding: 10px;
    }
}



/*********************
 先輩インタビュー
*********************/


#interview_top {
	padding: 80px 0;
}
#interview_top .two_in_one {
	align-items: center;
    display: grid;
    grid-template-columns: 60% 1fr;
    gap: 5%;
}

#interview_top .two_in_one > div.left,
#interview_top .two_in_one > div.right {
	width: 100%;
}

#interview_top .two_in_one > .left .image {
    border-radius: 0 var(--image_radius) var(--image_radius) 0;
    box-shadow: var(--image_shadow);
    overflow: hidden;
}
#interview_top .two_in_one > .left .image > img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

#interview_top .catchphrase {
    font-size: 2vw;
    position: relative;
    font-weight: bold;
}
#interview_top .catchphrase:before {
    content: "";
    display: block;
    width: 50vw;
    height: 1px;
    background: var(--text-color);
    z-index: -1;
    position: absolute;
    top: 0.9em;
    right: calc(100% + 0.5em);
}

#interview_top .catchphrase > p {
	position: relative;
	display: table;
	color: #fff;
    margin: 10px 0;
}


#interview_top .catchphrase > p > span {
	display: inline-block;
	padding: 5px 20px;
    animation-delay: 0.5s;
    font-weight: bold;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

#interview_top .text_box {
    margin: 50px 0;
	letter-spacing: 1px;
	display: table;
	font-size: 18px;
}

#interview_top .info {
	display: flex;
    font-size: 20px;
}

#interview_top .year {
	display: inline-block;
	padding: 0 5px;
}
#interview_top .department {
	margin-left: 20px;
}

#interview_top .name {
	margin-top: 20px;
}


#interview_top .name_jp {
	font-size: 40px;
    letter-spacing: 3px;
}

#interview_faq {
    position: relative;
    padding: 80px 0;
}

#interview_faq .faq_list {
    display: grid;
    grid-template-columns: 100%;
    gap: 80px;
}

#interview_faq .faq_list > div.item {
	align-items: center;
}

#interview_faq .faq_list > div.item:nth-child(even) {
	flex-direction: row-reverse;
}


#interview_faq .faq_list > div.item > div.text {
    padding: 0 5%;
    display: grid;
    grid-template-columns: 100%;
    gap: 40px 0;
}


#interview_faq .faq_list > div.item > div.image {
    border-radius: var(--image_radius) 0 0 var(--image_radius);
    box-shadow: var(--image_shadow);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

#interview_faq .faq_list > div.item:nth-child(even) > div.image {
    border-radius: 0 var(--image_radius) var(--image_radius) 0;
}

#interview_faq .faq_list > div.item > div.image > img {
	width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

#interview_faq .faq_list h4 {
    color: var(--text-color);
	display: flex;
	font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
	position: relative;
    z-index: 0;
    margin-bottom: 30px;
    padding-left: 30px;
}

#interview_faq .faq_list h4:before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0.5em;
    width: 0.3em;
    height: 0.3em;
    border: 4px double #fff;
    border-radius: 50%;
    background: #000;
    box-sizing: content-box;
}

#interview_faq .faq_list .text {
	line-height: 1.8;
    padding-left: 30px;
}


@media (max-width: 1199px) {

	#interview_top .catchphrase {
		font-size:25px;
	}

    #interview_faq .faq_list > div.item {
        gap: 40px;
    }
	
	#interview_faq .faq_list > div.item > div.image,
    #interview_faq .faq_list > div.item:nth-child(even) > div.image {
		width: 55%;
		position: relative;
        border-radius: var(--image_radius);
	}
	#interview_faq .faq_list > div.item > div.text {
		padding: 0!important;
		width: 80%;
	}
	
}


@media (max-width: 1029px) {
    #interview_top .two_in_one {
        grid-template-columns: 100%;
    }
	#interview_top .two_in_one > div.left {
		width: 100%;
        grid-row: 1 / 2;
        grid-column: 1 / 2;
    }

    #interview_top .two_in_one > div.left .image {
        width: 90%;
        margin-right: auto;
        box-shadow: none;
    }

    #interview_top .two_in_one > div.right {
        align-self: end;
        justify-self: end;
        width: auto;
        grid-row: 1 / 2;
        grid-column: 1 / 2;
        background: rgba(255,255,255,0.85);
	    padding: 20px 40px;
        border-top-left-radius: var(--image_radius);
    }


	#interview_top .catchphrase {
        margin-bottom: 20px;
	}
	#interview_top .text_box {
	    margin: 0;
	}

	#interview_top .name {
		margin: 0;
	}
    #interview_top .name_jp {
        font-size: 25px;
    }
}

@media (max-width: 767px) {
	#interview_top .two_in_one > div.left {
		width: 100%;
        grid-row: 2 / 3;
	}
	#interview_top .two_in_one > div.right {
		width: 100%;
        grid-row: 1 / 2;
	}
	#interview_top .two_in_one > .left .image > div {
		height: 50vh;
		min-height: 300px;
	}
	#interview_top .catchphrase {
		position: static;
		font-size: 22px;
	}
	#interview_top .catchphrase > p {
		margin: 0;
	    width: 100%;
	}
	#interview_top .catchphrase > p > span {
		padding: 5px 10px;
	}
	#interview_top .text_box {
		font-size: 16px;
	    padding: 0;
	    flex-wrap: wrap;
	}
	#interview_top .info {
		margin-right: 0;
		font-size: 16px;
	}
	#interview_top .name {
		width: 100%;
	    text-align: right;
	}
	
	#interview_top .name_jp {
		font-size: 25px;
	}
	
	#interview_faq .faq_list > div.item {
		margin-left: 0!important;
		margin-right: 0!important;
	}
	
	#interview_faq .faq_list > div.item > div.text {
        width: 95%;
	}
	#interview_faq .faq_list > div.item > div.image {
		width: 95%;
        border-radius: var(--image_radius) 0 0 var(--image_radius);
        margin-left: auto;
        margin-right: 0;
    }
    #interview_faq .faq_list > div.item:nth-child(even) > div.image {
		width: 95%;
        border-radius:  0 var(--image_radius) var(--image_radius) 0;
        margin-left: 0;
        margin-right: auto;
	}

	
	#interview_faq .faq_list h4 {
		font-size: 20px;
	}
}

#interview_message {
    padding: 80px 0;
}


.interview_message {
    margin-right: calc(50% - 50vw);
    display: grid;
    gap: 0 60px;
    grid-template-columns: 250px 1fr;
    grid-template-rows: auto auto auto;
    background: #f8f8f8;
    padding: 40px calc(-50% + 50vw) 40px 40px;
    border-radius: 100vmax 0 0 100vmax;
    align-items: center;
}
.interview_message .h_dot {
    font-size: 25px;
    margin-bottom: 20px;
}

.interview_message .image {
    border-radius: 50%;
    overflow: hidden;
    
}
.interview_message .image > img {
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    width: 100%;
    height: auto;
    background: #ccc;
}

#interview_message .btn001 {
    margin-top: 80px;
}
#interview_message .btn001 > a {
    font-size: 20px;
    background: var(--green01);
    border: none;
    color: #fff;
    padding: 1em 3em;
}

@media (max-width: 767px) {
    #interview_message .wrap {
        width: 100%;
    }
    .interview_message {
        display: block;
        padding: 30px;
        background: transparent;
        position: relative;
        z-index: 0;
    }
    
    .interview_message:after {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 250px 0 0 0;
        background: #f8f8f8;
    }

    .interview_message .image {
        max-width: 250px;
        margin: 0 auto 20px;
    }
    .interview_message .h_dot {
        font-size: 20px;
    }

    #interview_message .btn001 > a {
        max-width: 100%;
        padding: 1em 1.5em;
        font-size: 18px;
    }
}


/*********************
 新工場のご案内
*********************/

#new_factory {
    padding: 80px 0;
}

#new_factory .new_factory_image {
    margin-bottom: 30px;
}

#new_factory .new_factory_image > img {
    width: 100%;
    background: #ccc;
}

#new_factory .description {
    margin-bottom: 40px;
}
#new_factory .factory_info_wrap {
    margin-left :calc((100vw - 100%) / 2 * -1);
    margin-right :calc((100vw - 100%) / 2 * -1);
    padding-left :calc((100vw - 100%) / 2);
    padding-right :calc((100vw - 100%) / 2);
    background: #f8f8f8;
    padding-top: 80px;
    padding-bottom: 80px;
}
#new_factory .factory_info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
#new_factory .factory_info > div {
    width: 100%;
}

#new_factory .factory_info .h_dot {
    margin-bottom: 15px;
    font-size: 20px;
}

#new_factory .factory_info table th,
#new_factory .factory_info table td {
    padding: 15px;
    border-bottom: 1px solid #000;
    font-size: 18px;
}

#new_factory .factory_info table th {
    white-space: nowrap; 
}

#new_factory .factory_info table td ul {
    font-size: 15px;
    margin-bottom: 1em;
}


.facility_list {
    display: grid;
    gap: 20px 40px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 80px;
}

.facility_list > div {
    width: 100%;
}
.facility_list .item .image {
    border-radius: 15px;
    overflow: hidden;
}
.facility_list .item .image > img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}
.facility_list .item .text {
    text-align: center;
}

@media (max-width: 1029px) {
    .facility_list {
        grid-template-columns: 1fr 1fr;
    }
    #new_factory .factory_info {
        grid-template-columns: 100%;
    }
}
@media (max-width: 767px) {

    #new_factory .factory_info table {
        width: 100%;
    }
    #new_factory .factory_info table th {
        padding-bottom: 0;
        border-bottom: none;
    }
    #new_factory .factory_info table td {
        padding-left: 25px;
    }
    .facility_list {
        grid-template-columns: 100%;
    }

}



/*********************
 安心・安全への取り組み
*********************/
#safety_top {
    padding: 80px 0;
}
#safety_top .catch {
    font-size: min(45px, 5vw);
    text-align: center;
    font-weight: bold;
    margin-bottom: 50px;
}
#safety_top .catch > span {
    color: var(--main-color);
}

#safety_top .description {
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 767px) {

    #safety_top .catch {
        font-size: 25px;
    }
    #safety_top .description {
        text-align: left;
    }
}


#safety_contents {
    padding: 80px 0;
    background: #f8f8f8;
}
#safety_contents .title_text {
    font-size: 35px;
    margin-bottom: 50px;
    line-height: 1.3;
    position: relative;
    z-index: 0;
    font-weight: bold;
}
#safety_contents .title_text:before {
    content: "";
    display: block;
    width: 50vw;
    height: 1px;
    background: var(--text-color);
    z-index: -1;
    position: absolute;
    top: 0.7em;
    right: calc(100% + 0.5em);
}

.safety_container {
    display: grid;
    grid-template-columns: 100%;
    gap: 60px;
}

.safety_container .item {
    width: 100%;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 40px;
    border-radius: 40px;
    background: #fff;
}

.safety_container .item .safety_text {
    width: 100%;
}
.safety_container .item .safety_text .safety_container_title {
    display: flex;
    align-items: baseline;
    line-height: 1;
    gap: 0 15px;
    margin-bottom: 40px;
}
.safety_container .item .safety_text .safety_container_title .number {
    font-size: 30px;
    font-weight: 900;
    color: var(--main-color);
}
.safety_container .item .safety_text .safety_container_title .title {
    font-size: 30px;
}

.safety_container .item .safety_image {
    width: 100%;
    box-shadow: var(--image_shadow);
    border-radius: var(--image_radius);
    overflow: hidden;
}
.safety_container .item .safety_image > img {
    width: 100%;
    background: #ccc;
    aspect-ratio: 3 / 2;
    display: block;
}

@media (max-width: 1029px) {
    .safety_container .item .safety_text .safety_container_title .title {
        line-height: 1.5;
    }

}

@media (max-width: 767px) {

    #safety_contents .title_text {
        font-size: 25px;
    }
    .safety_container .item {
        grid-template-columns: 100%;
        padding: 30px;
    }
    .safety_container .item .safety_text .safety_container_title .title {
        font-size: 20px;
    }
}


 /*********************
  商品一覧
 *********************/
#products_contents {
    padding: 80px 0;
}
#products_contents .products_list > .item {
    grid-row: span 2;
}
#products_contents .products_list a {
    color: var(--text-color);
}




 /*********************
  商品カテゴリーページ
 *********************/
#products_category_contents {
    padding: 8vw 0;
}
#products_category_contents > .inner {
    display: grid;
    grid-template-columns: 400px 1fr;
    position: relative;
    z-index: 0;
    max-width: 1600px;
    width: 96%;
    margin: auto;
    gap: 0 60px;
}

#side_menu {
    position: sticky;
    top: 100px;
    left: 0;
    align-self: start;
}

.side_menu_list {
    padding: 0 15px;
}

.side_menu_list > .item {
    display: block;
    color: var(--text-color);
    font-weight: 500;
    padding: 15px 30px 15px 0; 
    border-bottom: 1px solid #ccc;
    background-image: url(../images/tmp/deco_btn02.svg);
    background-repeat: no-repeat;
    background-position: center right 10px;
    background-size: 1em;
}

.side_menu_list > .item .h_dot {
    font-size: 16px;
    display: block;
}

.side_menu_list > .item .h_dot:before {
    background: #000;
}

.side_menu_list > .item:hover {
    opacity: 0.5;
}

.side_menu_list > .item.current .h_dot:before {
    background: var(--main-color);
}

@media (max-width: 1399px) {
    #products_category_contents > .inner {
        grid-template-columns: 350px 1fr;
    }
    .side_menu_list > .item {
    }

}

@media (max-width: 1199px) {
    #products_category_contents > .inner {
        display: flex;
        flex-direction: column;
        gap: 60px 0;
    }
    #side_menu {
        order: 1;
        width: 100vw;
        background: #f8f8f8;
        padding-top: 50px;
        padding-bottom: 50px;
        margin-left: calc((100vw - 100%) / 2 * -1);
        margin-right: calc((100vw - 100%) / 2 * -1);
        padding-left: calc((100vw - 100%) / 2);
        padding-right: calc((100vw - 100%) / 2);
    }

    .side_menu_list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }
    .side_menu_list > .item {
        border: 1px solid #ccc;
        padding-left: 5px;
        background-color: #fff;
    }

    #products_list {
        order: 0;
    }
}

@media (max-width: 1029px) {
    .side_menu_list {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 767px) {

    .side_menu_list {
        grid-template-columns: 100%;
        gap: 0;
    }

}

.category_info {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 40px;
    margin-bottom: 8vw;
}

.category_info h2 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: 1px solid var(--main-color);
    display: inline-block;
    padding: 0.5em;
}

@media (max-width: 767px) {

    .category_info {
        grid-template-columns: 100%;
    }
    .category_info > .image {
        grid-row: 2;
    }
}


.products_list2 {
    display: grid;
    gap: 60px 80px;
    grid-template-columns: 1fr 1fr;
}

.products_list2 > .item {
    width: 100%;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 5px;
    border: 1px solid #ccc;
    padding: 20px 40px;
    border-radius: var(--image_radius);
    box-shadow: var(--image_shadow);
    position: relative;
    background: #fff;
    color: var(--text-color);
    transition: opacity 0.3s;
}

.products_list2 > .item.no_info {
    grid-row: span 2;
}
.products_list2 > .item > img {
    aspect-ratio: 1;
    object-fit: contain;
    width: 80%;
    margin: auto;
}

.products_list2 > .item .title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.products_list2 > .item .title > span {
    font-size: 80%;
    font-weight: 500;
    display: block;
    color: #555;
}
.products_list2 .info table {
    line-height: 1.5;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.products_list2 .info table th {
    white-space: nowrap;
    width: 120px;
}
.products_list2 .info table th > span {
    border-left: 5px solid var(--main-color);
    padding-left: 0.8em;
}
.products_list2 .info table td {
}


.products_list2 > .item .cart {
    width: 50px;
    height: 50px;
    background: var(--main-color);
    border-radius: 50%;
    position: absolute;
    top: 20px;
    right:20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.products_list2 > .item .cart > img {
    width: 30px;
    display: block;
}
.products_list2 > a.item:hover {
    opacity: 0.7;
}

@media (max-width: 1399px) {

    .products_list2 {
        gap: 40px;
    }

}

@media (max-width: 1029px) {

    .products_list2 > .item {
        padding: 20px 30px;
    }

}

@media (max-width: 767px) {

    .products_list2 {
        
        display: flex;
        flex-direction: column;
    }

    .products_list2 > .item .title {
        font-size: 18px;
    }

    .products_list2 .info table {
        font-size: 14px;
    }

}


 /*********************
  会社概要ページ
 *********************/
#company_message {
    padding: 8vw 0;
}

#company_message .two_in_one {
    display: grid;
    grid-template-columns: 40% 1fr;
    width: 96%;
    max-width: 1400px;
    margin: auto;
}
#company_message .two_in_one > div {
    width: 100%;
}
#company_message .two_in_one > div.left {
    grid-column: 1 / 3;
    grid-row: 1  / 2;
}
#company_message .two_in_one > div.right {
    grid-column: 1 / 2;
    grid-row: 1  / 2;
}

#company_message .two_in_one > div.left > .inner {
    width: 80%;
}
#company_message .two_in_one .image {
    border-radius: var(--image_radius);
    overflow: hidden;
    box-shadow: var(--image_shadow);

}
#company_message .two_in_one .image > img {
    border-radius: 0;
}

#company_message .sign {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0 15px;
}
#company_message .sign .position {

}
#company_message .sign .name {
    font-size: 20px;
}

@media (max-width: 1029px) {

    #company_message .two_in_one {
        display: flex;
        flex-direction: column;
    }
    #company_message .two_in_one .image {
        margin: auto;
    }

}

@media (max-width: 767px) {
    #company_message {
        padding: 50px 0 80px;
    }
    #company_message h2 {
        font-size: 25px;
    }

    #company_message .two_in_one > div.left > .inner {
        width: 90%;
    }

}

#company_profile {
    position: relative;
    z-index: 0;
    padding: 8vw 0;
}
#company_profile:before {
    content: "";
    display: block;
    aspect-ratio: 5 / 3;
    height: auto;
    border-radius: 60%;
    background: var(--main-color);
    z-index: -1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: rotate(-12deg) translate(-50%, -50%);
    width: 140vw;
    min-width: 2000px;
    max-width: 3000px;
    transform-origin: left;
}

#company_profile .hl003 > .en {
    color: #fff;
}
#company_profile .hl003 > .jp {
    color: #fff;
}
#company_profile .hl003:after {
    background: #fff;
}

#company_profile .box {
    width: 80%;
    margin: 40px auto 0;
    background: #fff;
    padding: 40px;
    border-radius: var(--image_radius);
    box-shadow: var(--image_shadow);
}

#company_profile table th {
    width: 120px;
}

@media (max-width: 1029px) {
    #company_profile:before {
        top: 0;
        transform: rotate(-12deg) translateX(-50%);
    }

    #company_profile .box {
        width: 90%;
    }

}

@media (max-width: 767px) {

    #company_profile {
        padding: 50px 0;
    }
    #company_profile:before {
        top: -40px;
        transform: rotate(-12deg) translateX(-50%);
        z-index: -1;
    }
    #company_profile:after {
        content: "";
        display: block;
        aspect-ratio: 5 / 3;
        height: auto;
        border-radius: 60%;
        background: var(--main-color);
        z-index: -1;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: rotate(-12deg) translateX(-50%);
        width: 140vw;
        min-width: 2000px;
        transform-origin: left;
    }
    #company_profile .box {
        width: 100%;
        padding: 40px 20px;
    }

    #company_profile table th {
        border-bottom: none;
    }
    #company_profile table th > span {
        padding-left: 10px;
        border-left: 5px solid var(--main-color);
    }
    #company_profile table td {
        padding-left: 2em;
    }
}

#company_factory {
    padding: 8vw 0;
}

.factory_list {
    display: grid;
    gap: 80px;
    grid-template-columns: 100%;
    margin-top: 40px;
}
.factory_list > .item {
    width: 100vw;
    position: relative;
    z-index: 0;
    margin-left: calc((100vw - 100%) / 2 * -1);
    margin-right: calc((100vw - 100%) / 2 * -1);
    padding-left: calc((100vw - 100%) / 2);
    padding-right: calc((100vw - 100%) / 2);
    padding-bottom: 50px;
}

.factory_list > .item:after {
    content: "";
    display: block;
    width: 100%;
    height: calc(100% - 200px);
    position: absolute;
    bottom: 0;
    left: 0;
    background: #f8f8f8;
    z-index: -1;

}

.factory_list > .item h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: bold;
}

.factory_list > .item h3 + ul.encircle {
    font-size: 18px;
    margin-bottom: 20px;
    justify-content: center;
}

.factory_list > .item .image {
    border-radius: var(--image_radius);
    overflow: hidden;
    box-shadow: var(--image_shadow);
    width: 60%;
    margin: 0 auto 60px;
}
.factory_list > .item .image > img {
    display: block;
    width: 100%;
}

.factory_list > .item .two_in_one {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: var(--image_radius);
    box-shadow: var(--image_shadow);
    padding: 30px 40px;
    gap: 0 60px;
    align-items: center;
}
.factory_list > .item .two_in_one > div {
    width: 100%;
}
.factory_list > .item .googlemap {
    overflow: hidden;
    border-radius: var(--image_radius);
}




.factory_list > .item table {
    line-height: 1.5;
    width: 100%;
}

.factory_list > .item table th {
    white-space: nowrap;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
    width: 110px;
}
.factory_list > .item table th > span {
    padding-left: 10px;
    border-left: 5px solid var(--main-color);
}
.factory_list > .item table td {
    padding: 15px;
    border-bottom: 1px solid #ccc;
}

.factory_list > .item table td ul.encircle > li {
    border-color: #999;
    color: var(--text-color);
}

@media (max-width: 1029px) {

    .factory_list > .item .two_in_one {
        grid-template-columns: 100%;
        gap: 20px;
    }
    .factory_list > .item .two_in_one > div.right {
        width: 80%;
        margin: auto;
    }
}

@media (max-width: 767px) {

    #company_factory {
        padding: 80px 0;
    }
    .factory_list > .item .image {
        width: 80%;
        margin-bottom: -40px;
    }
    .factory_list > .item .two_in_one {
        padding: 80px 20px 30px;
    }
    .factory_list > .item .two_in_one > div.right {
        width: 100%;
    }
    .factory_list > .item table th,
    .factory_list > .item table td {
        display: block;
    }
    .factory_list > .item table th {
        border: none;
        padding-bottom: 0;
    }
    .factory_list > .item table td ul.encircle > li {
        font-size: 14px;
    }
}


.contents_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}
.contents_list > .item {
    width: 100%;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 100vmax;
}

.contents_list > .item .image {
    width: 100%;
    border-radius: 50%;
    margin: 0;
}
.contents_list > .item .image > img {
    aspect-ratio: 1;
    display: block;
    background: #ccc;
    object-fit: cover;
    width: 100%;
}

.contents_list > .item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

@media (max-width: 1199px) {
    .contents_list > .item {
        gap: 20px;
        align-items: center;
        font-size: 14px;
    }
    .contents_list > .item h4 {
        font-size: 16px;
    }
}

@media (max-width: 1029px) {
    .contents_list {
        grid-template-columns: 100%;
    }

    .contents_list > .item {
        border-radius: 20px;
    }

}

@media (max-width: 767px) {
    .contents_list {
        gap: 15px;
    }
    .contents_list > .item {
        padding: 15px;
        grid-template-columns: 100px 1fr;
    }
    .contents_list > .item h4 {
        line-height: 1.5;
    }
    .contents_list > .item p {
        line-height: 1.5;
        margin-bottom: 0;
    }
}


.new_factory {
    margin-right: calc(50% - 50vw);
    position: relative;
    z-index: 0;
    background: var(--main-color);
    padding: 40px calc(-50% + 50vw) 40px 100px;
    border-radius: 100vmax 0 0 100vmax;
    align-items: center;
    margin-top: 8vw;
    background-image: url(../images/about/factory.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.new_factory:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.5;
    z-index: -1;
}

.new_factory .h_dot {
    font-size: 25px;
    margin-bottom: 20px;
    padding-left: 1em;
    margin-left: 0.5em;
}
.new_factory .h_dot:before {
    border: none;
    top: 50%;
    transform: translate(-50%, -50%);
}
.new_factory .h_dot:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 50%;
    width: calc(0.5em + 6px);
    height: calc(0.5em + 6px);
    border: 2px solid #fff;
    border-radius: 50%;
    background: transparent;
    transform: translate(-50%, -50%);

}

.new_factory .image {
    border-radius: 50%;
    overflow: hidden;
    display: none;
    
}
.new_factory .image > img {
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    width: 100%;
    height: auto;
    background: #ccc;
}

.new_factory p {
    color: #fff;
}
.new_factory .btn001 {
    margin-bottom: 0;
}
.new_factory .btn001 > a {
    font-size: 20px;
    border: none;
    margin-right: 0;
}

@media (max-width: 767px) {

    .new_factory {
        border-radius: 20px 0 0 20px;
        padding: 30px;
    }
    .new_factory .btn001 > a {
        margin: 0 auto;
    }
}

 /*********************
  特定商取引
 *********************/
#law {
    padding: 8vw 0;
}
#law table {
    margin: auto;
}
#law table th {
    padding: 15px;
    white-space: nowrap;
    border-bottom: 1px solid #ccc;
}
#law table td {
    padding: 15px;
    border-bottom: 1px solid #ccc;
}



 /*********************
  個人情報保護方針
 *********************/

#policy {
    padding: 8vw 0;
}

#policy h2 {
    position: relative;
    padding-left: 1.5em;
    margin-top: 2em;
    margin-bottom: 0.5em;
    font-size: 20px;
    font-weight: bold;
}  
#policy h2:before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0.5em;
    width: 0.5em;
    height: 0.5em;
    border: 4px double #fff;
    border-radius: 50%;
    background: var(--main-color);
    box-sizing: content-box;
}

#policy address {
    border: 1px solid #ccc;
    padding: 20px 40px;
    display: table;
}

#policy a {
    color: var(--text-color);
    text-decoration: underline;
}




 /*********************
  問い合わせ
 *********************/
#contact {
    padding: 8vw 0;
}
#contact .text_center {
    text-align: center;
    margin-bottom: 5vw;
}

@media (max-width: 767px) {

    #contact .text_center {
        text-align: left;
    }
}

 /*********************
  新着情報
 *********************/
.pl001 .post_item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 0;
    padding: 0;
}

.pl001 .post_item a {
    padding: 20px;
    background-image: url(../images/tmp/deco_btn02.svg);
    background-size: 1em;
    background-position: right 1em center;
    background-repeat: no-repeat;
}

.pl001 .post_item .date {
    color: var(--text-color);
}

.post_box {
    padding-bottom: 50px;
}

.post_box h1,
.post_box h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 2em 0 1em;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    position: relative;
}
.post_box h1:before,
.post_box h2:before {
    content: "";
    display: block;
    width: 200px;
    height: 1px;
    background: var(--main-color);
    position: absolute;
    bottom: -1px;
    left: 0;
}
.post_box h3 {
    font-size: 25px;
    font-weight: bold;
    margin: 2em 0 1em;
    position: relative;
    padding-left: 1.5em;
}
.post_box h3:before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0.5em;
    width: 0.5em;
    height: 0.5em;
    border: 4px double #fff;
    border-radius: 50%;
    background: var(--main-color);
    box-sizing: content-box;
}
.post_box h4 {
    font-size: 20px;  
    font-weight: bold;
    margin: 2em 0 1em;
    border-left: 10px solid var(--main-color);
    padding-left: 10px;
}
.post_box h5 {
    font-size: 18px;
    font-weight: bold;
    margin: 2em 0 1em;
}





 /*********************
  welcart 商品ページ
 *********************/

.item_box #itempage > form {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0 60px;
}

.item_box #itempage .itemimg {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.item_box #itempage .itemimg img {
    width: 100%;
}

.item_box #itempage h3 {
    grid-column: 2 / 3;
    grid-row: 1;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 40px;
}

.item_box #itempage .exp {
    grid-column: 2 / 3;
    grid-row: 2;
}

.item_box #itempage .exp > .field {
    background-color: transparent;
    max-width: 100%;
    padding: 0;
    line-height: 1.5;
    border-radius: 0;
    min-height: 0;
    width: 300px;
    margin-left: auto;
}

.item_box #itempage .exp > .field:first-child {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

.item_box #itempage .exp > .field:first-child .field_name {
    width: 150px;
    padding: 5px 0;
}
.item_box #itempage .exp > .field:first-child .field_price,
.item_box #itempage .exp > .field:first-child .field_cprice {
    width: calc(100% - 150px);
    padding: 5px 0;
    font-weight: bold;
    font-size: 25px;
}

.item_box #itempage .exp > .field:nth-child(2) {
    margin-top: 15px;
    margin-bottom: 30px;
}

.item_box #itempage .exp table {
    margin-top: 15px;
    width: 100%;
    margin-bottom: 20px;
}
.item_box #itempage .exp table th {
    padding: 10px 15px;
    border: 1px solid #ccc;
}
.item_box #itempage .exp table td {
    padding: 10px 15px;
    border: 1px solid #ccc;
}



.item_box #itempage .skuform {
    grid-column: 2 / 3;
    grid-row: 3;
}

.item_box #itempage .skuform > div:first-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 20px 10px;
}

.item_box #itempage .skuform > div:first-child input[type="text"] {
    width: 100px;
}

.item_box #itempage .skuform > div:first-child input[type="submit"] {
    width: 200px;
    background: var(--red01);
    color: #fff;
    padding: 15px 0;
    text-align: center;
    border-radius: 100vmax;
    margin-left: 20px;
    cursor: pointer;
    transition: opacity 0.3s;
}
.item_box #itempage .skuform > div:first-child input[type="submit"]:hover {
    opacity: 0.7;
}


@media (max-width: 1029px) {
    .item_box #itempage > form {
        display: flex;
        flex-direction: column;
    }
    .item_box #itempage .itemimg {
        margin-left: auto;
        margin-right: auto;
    }
    .item_box #itempage h3 {
        text-align: center;
    }
}

 /*********************
  welcart カートページ
 *********************/

.usccart_navi {
    margin: 40px 0px 70px
}

.usccart_navi .ucart {
    list-style: none;
    padding: 0;
    display: flex;
    width: 600px;
    margin: auto;
    max-width: 100%;
}

div.usccart_navi .ucart li {
    display: inline-block;
    margin-right: 3px;
    background: #ececec;
    padding: 10px 15px;
    text-align: center;
    flex: 1;
    text-align: center;
}

@media only screen and (max-width: 640px) and (min-width: 300px) {
    .usccart_navi .ucart li {
        display: inline-block;
        margin-right: 3px;
        background: #ececec;
        padding: 3px 7px;
    }
}

#inside-cart {
    margin: 0px auto 50px;
}

#inside-cart .ucart .usccart_cart {
    background: var(--red01);
    color: #fff;
}

#inside-cart input[type="text"] {
    border: #bfbfbf 1px solid;
    width: 6em;
    height: 3em;
    margin: 0px 5px;
    -webkit-appearance: none;
    border-radius: 0;
}

#inside-cart input[type="submit"],
#inside-cart input[type="button"] {
    border: none;
    background: var(--red01);
    color: #fff;
    height: 3em;
    line-height: 3em;
    padding: 0px 15px;
    -webkit-appearance: none;
    cursor: pointer;
    min-width: 250px;
    border-radius: 100vmax;
    text-align: center;
}

#inside-cart input[type="submit"].delButton {
    min-width: 0;
    border-radius: 0;
    line-height: 1.5;
    height: auto;
    padding: 5px 10px;
}

#cart .upbutton {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}
#cart .upbutton input[type="submit"] {
    background: #333;
    width: auto;
    padding: 5px 20px;
    border-radius: 0;
    height: auto;
    min-width: 0;
    line-height: 1.5;
    margin-left: auto;
}

#cart_table {
    margin-top: 30px;
    width: 100%;
    border-collapse: collapse;
}

#cart_table th,
#cart_table td {
    border: 1px solid #333333;
    text-align: center;
    vertical-align: middle;
    padding: 7px 3px;
}

#cart_table td.productname {
    text-align: left;
}

#cart_table input[type="text"] {
    width: 50px;
    margin: auto;
}

#inside-cart .currency_code {
    display: none;
}

#inside-cart .send {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#inside-cart .send input[type="button"],
#inside-cart .send input[type="submit"] {
    min-width: 0;
    text-align: left;
}

@media only screen and (max-width: 640px) and (min-width: 300px) {
    #inside-cart {
        width: 95%;
    }
}

@media (max-width: 767px) {

    div.usccart_navi .ucart li {
        font-size: 10px;
        padding: 10px 0;
    }

    #cart_table thead {
        display: none;
    }

    #cart_table tr {
        border: 1px solid #000;
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        padding: 0 15px;
    }
    #cart_table tr td {
        display: block;
        width: 100%!important;
        border: none;;
    }
    #cart_table tr td:before {
        content: attr(data-label)"：";
        display: inline;
        font-weight :normal;
        font-size: 16px;
    }
    #cart_table tr td.thumbnail:before,
    #cart_table tr td.productname:before,
    #cart_table tr td.action:before {
        display: none;
    }
    #cart_table tr td.num { 
        display:none;
    }
    #cart_table tr td.thumbnail img {
        width: 120px;
    }
    #cart_table tr td.productname { 
        font-weight: bold;
    }
    #cart_table tr td.unitprice { 
        width: 50%!important;
        text-align: left;
    }
    #cart_table tr td.quantity { 
        width: 50%!important;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    #cart_table input[type="text"] {
        margin: 0;
    }
    #cart_table tr td.subtotal {
        text-align: right;
        font-size: 20px;
        font-weight: bold;
    }
    #cart_table tr td.stock {
        text-align: right;
    }
    #cart_table tr td.action {
        text-align: right;
    }

    #cart_table tfoot tr {
        border: none;
        justify-content: flex-end;
        align-items: baseline;
    }
    #cart_table tfoot tr th {
        border: none;
    }
    #cart_table tfoot tr th.num,
    #cart_table tfoot tr th.thumbnail,
    #cart_table tfoot tr th.stock,
    #cart_table tfoot tr th.action {
        display: none;
    }
    #cart_table tfoot tr th.subtotal {
        font-size: 20px;
        font-weight: bold;
    }

    #cart_table tfoot tr td {
        width: auto!important;
    }
    
    #cart_table tfoot tr td.thumbnail {
        display: none;
    }
    #info-confirm #cart_table td:before {
        display: none;
    }
      #cart_table tfoot tr .totalend {
        width: 100px!important;
        text-align: right;
        font-size: 20px;
        font-weight: bold;
      }
}

#customer-info {
    width: 100%;
    margin: 0px auto 50px;
}

#customer-info .ucart .usccart_customer {
    background: var(--red01);
    color: #fff;
}

#customer-info .error_message {
    color: red;
}

#customer-info input[type="text"] {
    width: auto;
    height: 3em;
    margin: 0px 5px;
    -webkit-appearance: none;
    border-radius: 0;
    width: 80%;
    max-width: calc(100% - 10px);
    color: var(--text-color);
}

#customer-info table td {
    color: #ccc;
}

#customer-info table #name_row td,
#customer-info table #furikana_row td,
#customer-info table select {
    color: var(--text-color);
}

#customer-info .name_td input[type="text"],
#customer-info #furikana_row input[type="text"] {
    display: inline-block;
}

#customer-info #zipcode_row input[type="text"] {
    width: 200px;
    display: inline-block;
}


@media only screen and (max-width: 640px) and (min-width: 300px) {
    #customer-info input[type="text"] {
        width: 100%;
        display: inline-block;
    }
}

#customer-info input[type="submit"],
#customer-info input[type="button"] {
    border: none;
    background: var(--red01);
    color: #fff;
    height: 3em;
    line-height: 3em;
    padding: 0px 15px;
    -webkit-appearance: none;
    cursor: pointer;
    min-width: 250px;
    border-radius: 100vmax;
    text-align: center;
    min-width: 0;
    text-align: left;
    min-width: 150px;
}

#customer-info input[type="submit"].back_cart_button {
    text-align: center;
}


#customer-info #zipcode_row input[type="button"] {
    background: var(--green01);
    margin: 0 15px;
    border-radius: 0;
    min-width: 0;
}

#customer-info form[name="customer_loginform"] {
    display: none;
}

#customer-info form[name="customer_form"] tr:nth-of-type(3),
#customer-info form[name="customer_form"] tr:nth-of-type(4) {
    display: none;
}

#customer-info h5 {
    display: none;
}

#customer-info table {
    margin-top: 30px;
    width: 100%;
    border-collapse: collapse;
}

#customer-info table th {
    border: 1px solid #333333;
    text-align: center;
    vertical-align: middle;
    padding: 10px;
    width: 25%;
    text-align: left;
}

#customer-info table td {
    border: 1px solid #333333;
    vertical-align: middle;
    padding: 10px;
}

#customer-info .send {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

#customer-info .send .to_reganddeliveryinfo_button {
    display: none;
}

@media only screen and (max-width: 640px) and (min-width: 300px) {
    #customer-info {
        width: 95%;
    }
}

@media (max-width: 767px) {

    #customer-info table {
        font-size: 14px;
    }

    #customer-info table th,
    #customer-info table td {
        display: block;
        width: 100%;
    }

    #customer-info #zipcode_row input[type="text"] {
        width: 100px;
    }

    #customer-info .name_td input[type="text"],
    #customer-info #furikana_row input[type="text"] {
        width: 80%;
    }
}

#delivery-info {
    width: 100%;
    margin: 0px auto 50px;
}

#delivery-info .ucart .usccart_delivery {
    background: var(--red01);
    color: #fff;
}

#delivery-info input[type="text"] {
    border: #bfbfbf 1px solid;
    width: 15em;
    height: 3em;
    margin: 0px 5px;
    -webkit-appearance: none;
    border-radius: 0;
}

@media only screen and (max-width: 640px) and (min-width: 300px) {
    #delivery-info input[type="text"] {
        width: 95%;
    }
}

#delivery-info input[type="submit"],
#delivery-info input[type="button"] {
    border: none;
    background: var(--red01);
    color: #fff;
    height: 3em;
    line-height: 3em;
    padding: 0px 15px;
    -webkit-appearance: none;
    cursor: pointer;
    min-width: 250px;
    border-radius: 100vmax;
    text-align: center;
    min-width: 0;
    text-align: left;
    min-width: 150px;
}

#delivery-info input[type="submit"].back_to_customer_button {
    text-align: center;
}

#delivery-info table {
    margin-top: 30px;
    width: 100%;
    border-collapse: collapse;
}

#delivery-info table th {
    border: 1px solid #333333;
    text-align: center;
    vertical-align: middle;
    padding: 7px 3px;
    width: 25%;
}

#delivery-info table td {
    border: 1px solid #333333;
    vertical-align: middle;
    padding: 7px;
}

#delivery-info table td textarea {
    width: 100%;
    max-width: 100%;
    height: 6em;
}

#delivery-info .send {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media only screen and (max-width: 640px) and (min-width: 300px) {
    #delivery-info {
        width: 95%;
    }
}

@media (max-width: 767px) {

    #delivery-info table {
        font-size: 12px;
    }

}

#info-confirm {
    width: 100%;
    margin: 0px auto 50px;
}

#info-confirm .ucart .usccart_confirm {
    background: var(--red01);
    color: #fff;
}

#info-confirm input[type="submit"],
#info-confirm input[type="button"] {
    border: none;
    background: var(--red01);
    color: #fff;
    height: 3em;
    line-height: 3em;
    padding: 0px 15px;
    -webkit-appearance: none;
    cursor: pointer;
    min-width: 250px;
    border-radius: 100vmax;
    text-align: center;
    min-width: 0;
    text-align: center;
    min-width: 150px;
}

#info-confirm table {
    margin-top: 30px;
    width: 100%;
    border-collapse: collapse;
}

#info-confirm table th {
    border: 1px solid #333333;
    text-align: center;
    vertical-align: middle;
    padding: 7px 3px;
}

#info-confirm table td {
    border: 1px solid #333333;
    vertical-align: middle;
    padding: 7px;
}


#info-confirm table .action {
    display: none;
}


#info-confirm #confirm_table td h3 {
    text-align: left;
    margin: 0px;
}

#info-confirm #confirm_table .ttl {
    background: var(--green01);
    color: #fff;
}

#info-confirm #confirm_table tr > *first-child {
    width: 25%;
}

#info-confirm .send {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
}

@media only screen and (max-width: 640px) and (min-width: 300px) {
    #info-confirm {
        width: 95%;
    }
}

@media (max-width: 767px) {

    #info-confirm table {
        font-size: 14px;
    }

    #info-confirm #cart_table td {
        border: none;
    }


    .send input[type="submit"],
    .send input[type="button"] {
        font-size: 14px;
    }
}

a.back_to_top_button {
    border: none;
    background: var(--red01);
    color: #fff;
    height: 3em;
    line-height: 3em;
    padding: 0px 15px;
    -webkit-appearance: none;
    cursor: pointer;
    border-radius: 100vmax;
    text-align: center;
    min-width: 0;
    text-align: center;
    min-width: 250px;
    display: inline-block;
}


/*リキャプチャ*/
.cf7sr-g-recaptcha {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.cf7sr-recaptcha {
    text-align: center;
}