@charset "utf-8";
/* CSS Document */
/* theme name: fujimec2025 */
@import "tailwindcss";

body{
    font-optical-sizing: auto;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    color: #1f1f1f;
}

.container{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.tate{
    writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    -o-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: upright;
}
@media all and (min-width:640px){
    body{font-size: 16px;}
}

/* ======================
         common
========================*/
:root {
    --easing: cubic-bezier(.2, 1, .2, 1);
    --transition: .8s var(--easing);
    --hover: all .3s ease;
    --opacity: 0.55;
    --lineHeightML: 1.8;
    --white: #ffffff;
    --blue: #454f9b;
    --green: #71b853;
    --black: #1f1f1f;
    /* --orange: #ff9326; */
    --orange: #f79c40;
    --gray: #f4f4f4;
    --scale: 1.1;
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --_duration: 90s;
    --lineheight_l: 2;
    --spacing_s: 0.05em;
}
.c_blue{color: var(--blue);}
.c_green{color: var(--green);}
.c_white{color: var(--white);}
.bg_gray{background: var(--gray);}
.lineheight_l{line-height: var(--lineheight_l);}
.lineheight_ml{line-height: var(--lineHeightML);}
.spacing_s{letter-spacing: var(--spacing_s);}

.fade{opacity: 0;}
.indent{
    padding-left: 1em;
    text-indent: -1em;
}
ul.mlist li:not(:last-of-type){
    margin-bottom: 0.4rem;
}

/* ------------ cookie ------------- */
.cookie-consent {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 13px;
  gap:0 1.15em;
  color: #fff;
  background: rgba(0,0,0,.7);
  padding: 0.75em 1.2em;
  box-sizing: border-box;
  z-index: 100;
  visibility: hidden;
}
.cookie-consent.is-show {
  visibility: visible;
}
.cookie-consent a {
  color: #fff !important;
}
.cookie-consent{
  line-height:1.5;
}
.cookie-agree {
  color: #fff;
  background: var(--blue);
  padding: .5em 1.5em;
  letter-spacing: 0.25em;
  border-radius: 3px;
}
.cookie-agree:hover {
  cursor: pointer;
}
/* パッと消える */
.cc-hide1 {
  display: none;
}
@media (any-hover: hover){
    .cookie-text > a:hover{text-decoration: underline;}
}

@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (max-width: 600px) {
  .cookie-consent{
    font-size:12px;
  }
}
/* -------- footer ----------*/
footer{padding-top: 2rem;}
footer.is_childpage {padding-top: 4em;}
.f-logo {
    width: 208px;
    margin: 0 auto 14px;
}
.f-mt {
    width: 67vw;
    max-width: 819px;
    margin-bottom: -0.5%;
    margin-left: auto;
    margin-right: auto;
}
.f-content{
    background: var(--blue);
    color: var(--white);
}
.f-content > .container {
    padding: 3.95em 0em 2.75em;
}
ul.footermenu{display: none;}
.f-com {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}
.f-com .cominfo p:first-child{
    font-size: 20px;
    margin-bottom: 1em;
}
.f-com .cominfo p.address {
    margin-bottom: 0.25em;
    text-indent: -0.5em;
    line-height: 1.7;
}
.f-com .cominfo p a i {
    display: inline-block;
    width: 1.25em;
    vertical-align: sub;
    margin-left: 0.45em;
}
.f-com .line {
    width: 45px;
    margin-top: 16px;
    box-sizing: border-box;
}
.ytWrap a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.ytWrap a .play {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.ytWrap a::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 40%);
    z-index: 1;
    transition: all .3s ease;
}
ul.footermenu li a,
.f-com .cominfo p a,
.f-com .line a{
    transition: var(--hover);
}
@media (any-hover: hover){
    .ytWrap a:hover::after{
        background: rgb(0 0 0 / 5%);
        transition: all .3s ease;
    }
    ul.footermenu li a:hover,
    .f-com .cominfo p a:hover,
    .f-com .line a:hover{
        opacity: var(--opacity);
    }
}
@media all and (min-width:430px){
    .f-com .cominfo p.address {padding-left: 2.25em;}
    .f-com .line{margin-left: 2.25em;}
}
@media all and (min-width:640px){
    .f-content > .container {padding: 3.25em 0em 2.75em;}
    .f-logo-contents {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: end;
        justify-content: space-between;
    }
    .f-logo {
        width: 235px;
        margin-bottom: 20px;
        margin-left: unset;
        margin-right: unset;
    }
    ul.footermenu {
        display: flex;
        gap: 0.5em 2em;
        flex-wrap: wrap;
        margin-bottom: 45px;
    }
}
.copyright{
    padding: 1em 2em 6em 2em;
}
#page_top{
    right: 0;
    top: 1em;
}
#page_top a{
    font-size: 14px;
    padding-left: 1.25em;
    transition: var(--hover);
}
#page_top a::before{
    content: "";
    border-bottom: 9px solid var(--white);
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    position: absolute;
    left: 0;
    top:0.25em;
}
@media (any-hover: hover){
    #page_top a:hover{opacity: var(--opacity);}
}
.recruitbottombanner {
    width: 48vw;
    min-width: 173px;
    max-width: 280px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    position: fixed;
    bottom: 10px;
    left: 50%;
    z-index: 5;
    transform: translateX(-50%);
}
.recruitbottombanner a{
    padding: 0.95em 1em;
    color: var(--white);
    background: var(--orange);
    font-weight: 700;
    letter-spacing: 0.1em;
}
@media screen and (min-width: 64rem){
    .recruitbottombanner{display: none;}
    .copyright{padding: 1em 2em;}
    footer.is_childpage {padding-top: 6.5em;}
}
/* ---------- header -----------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: auto;
    background-color: var(--white);
    box-shadow: var(--shadow-medium);
}
.header__logo {
    /* display: block; */
    display: flex;
    align-items: center;
    /* width: clamp(144px, 25vw, 182px); */
    /* height: 100%; */
    /* object-fit: cover; */
}
.header__logo > img:nth-of-type(1){
    width: clamp(144px, 25vw, 182px);
    /* width: 100%;
    height: 100%;
    object-fit: cover; */
}
.header__logo a.fujimeclogo {
    display: block;
    width: clamp(144px, 25vw, 182px);
}
.header__logo a.annlogo {
    display: block;
    width: clamp(65px, 17%, 100px);
    margin-left: 8px;
}
.navbar {
    width: 100%;
    height: 4rem;
    margin-inline: auto;
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    height: 100%;
    padding: 12px 18px;
}
.navbar-block {
    position: absolute;
    left: 0;
    width: 100%;
    height: calc(100vh - 4rem);
    opacity: 0;
    overflow: auto;
    pointer-events: none;
    background-color: var(--blue);
    color: var(--white);
    transition: opacity 0.4s ease;
}
.navbar-block.is-active {
    opacity: 1;
    pointer-events: initial;
}

@media screen and (min-width: 64rem) {
  .header__logo{
    width: 258px;
  }
  .header__logo > img.annlogo {
      width: 36%;
      margin-left: 8px;
  }
  .navbar-inner {padding: 0px;}
  .navbar {
      display: flex;
      justify-content: space-between;
      padding: 10px 0 10px 25px;
      height: 5.5rem;
  }
  .navbar-block {
      position: initial;
      height: initial;
      opacity: 1;
      overflow: auto;
      pointer-events: visible;
      background: none;
      transition: none;
  }
}
.menu {
  padding-block: 3rem;
  padding-inline: auto;
}
.menu-link {
  /* font-weight: 500; */
  line-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.95rem;
  padding-inline: 1.95rem;
  color: var(--white);
  transition: color 0.3s ease;
  position: relative;
}
.menu-link > span.arrow,
.dropdownchild > span.arrow{
    border-left:10px solid var(--white);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    position: absolute;
    top: 50%;
    right: 1.95rem;
    transform: translateY(-50%);
}
.dropdownchild > span.arrow{left: 100%;}
.menu-recruit .menu-link{
    border-radius: 200px;
    background: var(--orange);
    width: 90%;
    margin: 30px auto;
    text-align: center;
    display: block;
    font-size: 17px;
    max-width: 299px;
    border-top: none;
    transition: var(--hover);
}
@media (any-hover: hover){
    .menu-recruit .menu-link:hover{background: var(--green);}
}
.menu-link::before{
    content: "";
    width: calc(100% - 3rem);
    height: 1px;
    background: rgb(255 255 255 / .5);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.menu-recruit .menu-link::before{
    content: none;
}
@media screen and (max-width:64rem){
    .menu-item.last .menu-link::after{
      content: "";
      width: calc(100% - 3rem);
      height: 1px;
      background: rgb(255 255 255 / .5);
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
  }
}
i.acc-i {
    width: 0.75em;
    transform: rotate(45deg);
}
.menu-item.has_dropdown{display: none;}
@media screen and (min-width:640px){
    .menu {
        padding-left: 12%;
        padding-right: 12%;
    }
}
@media screen and (min-width: 64rem) {
  .menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    height: 100%;
    padding: unset;
  }
  .menu-item,
  .menu-item.has_dropdown{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding-inline: 0.25rem;
    position: unset;
  }
  .menu-item.privacymenu{display: none;}
  .menu-link::before{content: none;}
  .menu-link {
    padding: unset;
    color: var(--black);
    height: fit-content;
  }
  .menu-recruit{padding: 0!important;}
  .menu-recruit .menu-link {
    border-radius: 200px 0px 0px 200px;
    background: var(--orange);
    width: unset;
    margin: 0;
    text-align: center;
    display: flex;
    font-size: unset;
    max-width: unset;
    border-top: none;
    color: var(--white);
    padding: 0 2.5em 0 2em;
    height: 87%;
    position: relative;
    right: 0;
  }
  a.menu-link.compagelink,
  a.menu-link.compagelink:hover::after{
    transition: var(--hover);
  }
  .menu-link > span.arrow,
  .dropdownchild > span.arrow{
    display: none;
  }
  @media (any-hover: hover){
    a.menu-link.compagelink:hover,
    a.menu-link.toppage:hover{
        color: var(--white);
    }
    a.menu-link.compagelink:hover::after,
    a.menu-link.toppage:hover:after{
    content: "";
    width: calc(100% + 1.85em);
    height: 155%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--blue);
    z-index: -1;
    border-radius: 100px;
  }
  }
  a.menu-link.compagelink.active{color: var(--white);}
  a.menu-link.compagelink.active::after {
    content: "";
    width: calc(100% + 1.85em);
    height: 155%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--blue);
    z-index: -1;
    border-radius: 100px;
  }
}
@media screen and (min-width: 1079px) {
    .menu {
        -moz-column-gap: 1rem;
        column-gap: 1rem;
    }
    .header__logo {width: min(24vw, 350px);}
    .header__logo a.fujimeclogo {width: 56%;}
    .header__logo a.annlogo {width: 24%;}
}
@media screen and (min-width:1366px){
    .menu-item,
  .menu-item.has_dropdown{
    padding-inline: 0.5rem;
  }
}
.dropdown-toggle {
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.dropdown-content {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
}
.dropdown-column, .dropdown-group, .dropdown-items {
  display: grid;
}
.dropdown-group {
  padding-bottom: 1.25rem;
  padding-inline: 1.5rem;
}
.dropdown-title {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: center;
  padding-inline: 1rem;
}
.dropdown-items {
  row-gap: 0.5rem;
  padding-inline: 3.5rem;
  padding-top: 0.35rem;
}
.dropdown-link {
  font-weight: 400;
  line-height: inherit;
  color: var(--black);
  transition: color 0.3s ease;
}
.dropdown-block {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding-top: 1.25rem;
  padding-inline: 1rem;
}
.dropdown-block *{
    display: block;
    width: 100%;
}

@media screen and (min-width: 64rem) {
  .menu-item.dropdown{display: none;}
  /* .dropdown-toggle {
    -moz-column-gap: 0.35rem;
         column-gap: 0.35rem;
    pointer-events: none;
  }
  .dropdown-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 6rem;
    opacity: 0;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    pointer-events: none;
    background-color: var(--white);
    border-top: 2px solid var(--white);
    box-shadow: var(--shadow-large);
    transition: top 0.4s, opacity 0.3s ease;
  }
  .dropdown-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
      -moz-column-gap: 2rem;
           column-gap: 2rem;
      max-width: 75rem;
      margin-inline: auto;
  }
  .dropdown-group {
      align-content: baseline;
      row-gap: 1.25rem;
      padding-block: 4rem;
  }
  .dropdown-group:first-child, .dropdown-group:last-child {
      margin: unset;
  }
  .dropdown-items {
      padding-top: unset;
  }
  .dropdown-block {
      padding-top: unset;
      padding-inline: unset;
  }
  .dropdown:hover > .dropdown-content {
      cursor: initial;
      top: 4.25rem;
      opacity: 1;
      pointer-events: initial;
  }
  .dropdown-inner a{
      color: var(--black);
  } */
}
.burger {
    cursor: pointer;
    position: relative;
    display: block;
    z-index: 10;
    width: 1.5rem;
    height: 1rem;
    -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
    visibility: visible;
}
.burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2px;
    opacity: 1;
    background-color: var(--black);
    transition: all 0.3s ease;
}
.burger-line:nth-child(1) {top: 0px;}
.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}
.burger-line:nth-child(3) {top: 1rem;}
.burger.is-active > .burger-line:nth-child(1) {
    top: 0.5rem;
    rotate: 135deg;
}
.burger.is-active > .burger-line:nth-child(2) {opacity: 0;}
.burger.is-active > .burger-line:nth-child(3) {
    top: 0.5rem;
    rotate: -135deg;
}

@media screen and (min-width: 64rem) {
  .burger {
      display: none;
      visibility: hidden;
  }
}
/* ========== submenu ========== */
.submenubar{
    display: block!important;
    background: var(--blue);
    padding: 0.65em 0 0.75em;
}
@media screen and (max-width:639px){
    .submenubar{display: none!important;}
}
ul.submenu{
    display: flex;
    flex-wrap: wrap;
    gap: 1em 0.4em;
}
ul.submenu li a {
    color: var(--white);
    padding: 0.15em 1em;
    border: 2px solid transparent;
    font-weight: 500;
    border-radius: 200px;
    transition: var(--hover);
    font-size: 0.78rem;
}
ul.submenu li a.flex{
    align-items: center;
    padding-top: 0.3em;
    padding-bottom: 0.35em;
    gap: 0.275em;
}
ul.submenu li a.flex i.pdf{width: 1.2em;}
ul.submenu li a.tel{
    letter-spacing: 0.05em;
}
ul.submenu li a i.tel{
    display: block;
    width: 1.835em;
    position: absolute;
    top: 0px;
    left: -1px;
}
ul.submenu li a.tel{
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    padding-left: 2.27em;
    overflow: hidden;
}
@media screen and (min-width: 64rem){
    .submenubar{
        padding: 1.5em 0;
    }
    ul.submenu{
        gap: 0.2em 1em;
    }
    ul.submenu li a {
        font-size: 1rem;
    }
    ul.submenu li a.tel{
        font-size: 1.2rem;
    }
    /* scrolled */
    #header.scrolled .submenubar{
        padding: 0.85em 0 0.95em;
    }
    #header.scrolled ul.submenu{
        gap: 1em 0.55em;
    }
    #header.scrolled ul.submenu li a {
        font-size: 0.85rem;
    }
}
ul.submenu li a.active{
    background: var(--blue);
    color: var(--white);
    border-color: var(--white);
}
@media (any-hover: hover){
    ul.submenu li a:hover{
        background: var(--blue);
        color: var(--white);
        border-color: var(--white);
    }
}
/* ---------- page ----------- */
/* --- front --- */
.fr_l_text{
    font-weight: 800;
    font-size: 2.31rem;
}
.fr_m_text {font-size: 1.25rem;}
@media (min-width: 640px) {
    .fr_l_text{font-size: 3.625rem;}
    .fr_m_text {font-size: 1.5rem;}
}

#mv{
      width: 100%;
      height: 93.33vh;
      min-height: 563px;
      position: relative;
}
#mv video{
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 50%;
}
.mv__catch {
      display: block;
      position: absolute;
      z-index: 5;
      bottom: 2%;
      width: 83vw;
      right: calc(100% - (83vw + 3%));
}
#fr__philosophy {
      background: #EEEEFB;
      background: linear-gradient(180deg, rgba(238, 238, 251, 1) 0%, rgba(255, 255, 255, 1) 69%);
      padding: clamp(50px, 10vw, 150px) 0 3rem;
}
img.td{position: absolute;}
img.td.philosophy {
      width: 76.75vw;
      left: 8.5%;
      top: 21%;
      z-index: 1;
}
img.mount01 {
      width: 100%;
      max-width: 1004px;
      top: 42%;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
}
@media all and (min-width:768px){
    #mv{min-height: 900px;}
}
@media all and (min-width:1500px){
  .mv__catch {
      width: 1250px;
      right: calc(100% - (1250px + 3%));
  }
  img.td.philosophy {width: 1009px;}
}
#fr__philosophy .textblk {
    width: 90%;
    max-width: 1004px;
    margin: 0 auto;
}
#fr__philosophy .textblk > div{
    position: relative;
    z-index: 2;
}
#fr__philosophy .maintext {
    display: flex;
    flex-direction: row-reverse;
    gap: 1.25em;
    padding-right: 0.75em;
}
#fr__philosophy .maintext p{
    line-height: 1.66;
    padding-top: 1.85em;
}
#fr__philosophy .sub{
    line-height: 1.85;
    width: 100%;
    max-width: 420px;
    margin-top: 1em;
}
@media all and (min-width:640px){
    #fr__philosophy .textblk {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2em;
        align-items: end;
    }
    #fr__philosophy .maintext{
        order: 2;
    }
    #fr__philosophy .sub{order: 1;}
    img.mount01 {top: 27%;}
}
@media all and (min-width:795px){
    #fr__philosophy .maintext {
        gap: 1.75em;
    }
}
@media all and (min-width:879px){
    #fr__philosophy .textblk {grid-template-columns: 1.5fr 1fr;}
    #fr__philosophy .maintext {justify-content: center;}
}
@media all and (min-width:1024px){
    #fr__philosophy .maintext {padding-right: 2.75em;}
    #fr__philosophy .sub {
        line-height: 2.5;
        margin-left: 2em;
        margin-bottom: 3rem;
    }
    #fr__philosophy .maintext p {line-height: 2;}
}
/* ============ loop ============== */
.pWork__loop {
    --_duration: 60s;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
}
.pWork__loop_item {
    display: flex;
    flex-shrink: 0;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 1.5rem;
}
.pWork__loop_item_image[data-id="1"] {
    width: 23rem;
    height: auto;
    margin-top: 6rem;
}
.pWork__loop_item_image[data-id="2"] {
    width: 15rem;
    height: auto;
}
.pWork__loop_item_image[data-id="3"] {
    width: 17rem;
    height: auto;
    margin-top: 6.5rem;
}
.pWork__loop_item_image[data-id="4"] {
    width: 16.43rem;
    height: auto;
    margin-top: 4rem;
}
@media screen and (min-width: 640px) {
    .pWork__loop {
        --_duration: 90s;
        grid-column: 1 / 25;
    }
    .pWork__loop_item {
        gap: 3rem;
        padding-left: 3rem;
    }
    .pWork__loop_item_image[data-id="1"] {width: 500px;}
    .pWork__loop_item_image[data-id="2"] {width: 312px;}
    .pWork__loop_item_image[data-id="3"] {width: 388px;}
    .pWork__loop_item_image[data-id="4"] {width: 391px;}
}
.pWork__loop_item[data-id="1"] {
    animation: loop-x-1 var(--_duration) calc(var(--_duration) / -2) linear infinite;
}
.pWork__loop_item[data-id="2"] {
    animation: loop-x-2 var(--_duration) linear infinite;
}
@keyframes loop-x-1{
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes loop-x-2{
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-200%);
    }
}
/* =========== loop ============ */
#fr__work {padding: clamp(95px, 15.5vw, 170px) 0;}
#fr__work h2,#fr__work h1{margin-bottom: 1em;}
img.td.work {
    width: 38vw;
    max-width: 495px;
    bottom: 0;
    right: -1em;
}
.bumon_blks{
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.bumon_blk {
    border-radius: 13px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    min-height: 330px;
}
.bumon_blk a{
    display: flex;
    width: 100%;
    height: 100%;
    padding: 4rem 2rem;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    background-position: center center;
    background-size: 100%;
    color: #fff;
    transition: background-size .8s var(--easing);
}
.bumon_blk a *{
    position: relative;
    z-index: 2;
}
.bumon_blk a::after{
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .49);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.bumon_blk a.dev01{background-image: url(./img/fr_bumon_dev01.webp);}
.bumon_blk a.dev02{background-image: url(./img/fr_bumon_dev02.webp);}
.bumon_blk a.dev03{background-image: url(./img/fr_bumon_dev03.webp);}
@media (any-hover: hover){
    .bumon_blk a:hover{
        background-size: 110%;
    }
}
.bumon_blk h3 {
    font-size: 1.7rem;
    margin-bottom: 0.75em;
}
.bumon_blk p{margin-bottom: 3rem;}
span.circle_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0.85rem;
    height: 0.85rem;
    position: relative;
}
span.circle_arrow img{z-index: 3;}
span.circle_arrow::after{
    content: "";
    width: 1.75rem;
    height: 1.75rem;
    background: var(--blue);
    border-radius: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition:all var(--transition);
}
span.circle_arrow.bg__green::after{background: var(--green);}
span.circle_arrow._transparent::after{
    border: 1px solid var(--white);
    background: transparent;
}
.internallink ,.internallink a{
    display: flex;
    align-items: center;
    gap: 1.5em;
}
@media (any-hover: hover){
    a:hover span.circle_arrow::after{transform: translate(-50%,-50%) scale(1.75);}
}
.btn a:hover span.circle_arrow::after{transform: translate(-50%,-50%) scale(1);}
@media all and (min-width:450px){
    .bumon_blk{aspect-ratio: auto;}
}
@media all and (min-width: 768px) {
    .bumon_blks{justify-content: space-evenly;}
    .bumon_blk {width: 47%;}
}
@media all and (min-width: 1024px) {
    .bumon_blk {
        width: 31%;
        aspect-ratio: 2 / 2.75;
    }
}
@media all and (min-width:1079px){
    .bumon_blks{justify-content: space-between;}
    .bumon_blk{width: 30.5%;}
}
@media all and (min-width:1250px){
    .bumon_blk h3 {font-size: 2.125rem;}
}
#fr__company h2{margin-bottom: 0.75em;}
img.td.fujimec {
    width: 50vw;
    max-width: 663px;
    bottom: 24%;
    left: 0em;
}
.to__companypage a {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 8rem 0 5.5rem;
    color: var(--white);
    overflow: hidden;
}
.to__companypage a > img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: -1;
    transition: all var(--transition);
}
.to__companypage a::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(69 79 155 / .57);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.to__companypage a .slogan{
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 2em;
}
@media (any-hover: hover){
    .to__companypage a:hover > img{
        transform: scale(var(--scale));
    }
}
@media all and (min-width:768px){
    .to__companypage a {padding: 10rem 0 7.5rem;}
}
@media all and (min-width:1079px){
    .to__companypage a {padding: 18rem 0 10rem;}
}
@media all and (min-width:1366px){
    img.td.fujimec{
        left: -1em;
        bottom: 0;
    }
}
@media all and (min-width:1536px){
    img.td.fujimec{left: -3em;}
}
#fr__news {
    background: var(--blue);
    color: var(--white);
    padding: 5rem 0;
}
.fr__newsblk.relative {
    margin-top: 2em;
}
ul.b-newslist li {
    margin-bottom: 1.5em;
}
ul.b-newslist li a {
    display: grid;
    gap: 0.75em;
    transition: var(--hover);
}
.post_date{
    font-size: 13px;
}
.post_title{
    font-size: 15px;
    line-height: 1.35;
}
img.td.news {
    width: 34.5vw;
    left: 3%;
    bottom: -2.75vw;
}
@media (any-hover: hover){
    ul.b-newslist li a:hover{opacity: .6;}
}
@media all and (min-width:768px){
    .fr__newsblk.relative {
        margin-top: 0.5em;
    }
    #fr__news .fr__newsContents{
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 3em;
    }
}
@media all and (min-width:1024px){
    ul.b-newslist li a{
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 2em;
        align-items: baseline;
    }
}
@media all and (min-width: 1163px) {
    #fr__news .fr__newsContents {gap: 7em;}
}
@media all and (min-width: 1366px) {
    img.td.news {
        width: 466px;
        bottom: -9%;
        left: calc((100vw - 1200px) / 4);
    }
}
#recruit {
    padding: 5.5rem 0 2rem;
}
.recruitLink a{
    display: block;
    padding: 3rem 2rem;
    border-radius:14px;
    overflow: hidden;
}
.recruitLink a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 24% 45%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all var(--transition);
}
.recruitLink a p,.recruitLink a div{
    z-index: 2;
}
.recruitLink a > p{
    color: var(--white);
    line-height: 1.22;
    text-shadow: rgb(0 0 0 / .65) 3px 3px 4px;
    opacity: 0.83;
}
img.td.recruit {
    width: 49.5vw;
    left: 53%;
    top: -5vw;
}
@media (any-hover: hover){
    .recruitLink a:hover > img{transform: scale(var(--scale));}
}
@media all and (min-width:768px){
    #recruit {padding: 7.5rem 0 4rem;}
}
@media all and (min-width:1024px){
    .recruitLink a {padding: 3rem 5rem;}
}
@media all and (min-width:1200px){
    .recruitLink a > p {padding-left: 6%;}
}
@media all and (min-width:1366px){
    img.td.recruit {
        width: 658px;
        top: -65px;
    }
    #recruit {padding: 11.5rem 0 6rem;}
}
/* ----- 404 ------ */
.page404{
    padding-bottom: 80px;
}
.page404 h2{
    margin-top: 3rem;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}
.page404_contents {
    margin-top: 2em;
    line-height: 1.5em;
}
ul.page404_links {
    margin-top: 2rem;
}
ul.page404_links li{margin-top: 1rem;}
ul.page404_links li a{
    color: var(--blue);
    border: 1px solid var(--blue);
    padding: 0.25em 0.75em;
    border-radius: 100px;
    transition: var(--hover);
}
@media (any-hover: hover){
    ul.page404_links li a:hover{
        color: var(--white);
        background: var(--blue);
    }
}
/* ------ company ------ */
/* overview */
.page_header {
    width: 100%;
    height: 19vw;
    min-height: 157px;
}
.page_header::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(255 255 255 / .74);
}
.page_header > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.page_header_cont {
    position: absolute;
    top: 59%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    z-index: 3;
    font-weight: 800;
    letter-spacing: 0.05em;
}
.page_header_cont span.en{
    display: inline-block;
    margin-bottom: 1em;
    font-size: clamp(13px,1.25vw,19px);
}
.page_header_cont h2,
.page_header_cont h1{
    font-size: clamp(18px,2.2vw,32px);
    display: flex;
    align-items: center;
}
.page_header_cont h2 span.border,
.page_header_cont h1 span.border{
    background: #555;
    width: 1px;
    height: clamp(10px,1.75vw,20px);
    display: inline-block;
    margin: 0 0.5em;
    vertical-align: middle;
}
#breadcrumbs_warp {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.5em 0 2.5em;
}
#breadcrumbs_warp.pan_solo,#breadcrumbs_warp.single{padding-top: 1.2em;}
#breadcrumbs_warp span.border{
    width: 1px;
    height: 0.8em;
    background: #555;
    display: inline-block;
    margin: 0.75em;
}
#breadcrumbs{
    font-size: 9px;
    text-align: right;
}
#breadcrumbs > span{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.7em;
}
#breadcrumbs span > span,#breadcrumbs_warp{font-size: 11px;}
#breadcrumbs span > span:first-of-type a {
    color: var(--blue);
    padding-left: 1.5em;
    position: relative;
}
#breadcrumbs span:first-of-type >a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1em;
    height: 1em;
    background: url(./img/home.svg);
    transform: translateY(-50%);
    background-size: contain;
    background-position: center center;
}
@media screen and (min-width:640px){
    #breadcrumbs span > span,#breadcrumbs_warp{font-size: 12px;}
}
@media screen and (min-width:64rem){
    #breadcrumbs_warp {padding: 2em 0 4em;}
    #breadcrumbs span > span,#breadcrumbs_warp{
        font-size: 13px;
    }
    #breadcrumbs_warp.pan_solo,#breadcrumbs_warp.single{padding-top: 2.4em;}
}
.page_top_image {
    width: 100%;
    height: auto;
    min-height: 139px;
    aspect-ratio: 2.73 / 1;
}
.page_top_image > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.page_top_image > div {
    position: absolute;
    left: 50%;
    bottom: 2em;
    font-weight: 800;
    letter-spacing: 0.05em;
    font-size: clamp(20px, 3.25vw, 44px);
    width: 90%;
    transform: translateX(-50%);
    padding-right: 2em;
}
.mItem {
    padding-top: 3em;
    display: grid;
    align-items: center;
    gap: 1.35rem;
    grid-template-columns: auto 1fr;
    font-size: clamp(18px,2.2vw,32px);
    font-weight: 800;
    margin-bottom: 2em;
}
.mItem span{
    display: inline-block;
    background: var(--blue);
    background: linear-gradient(180deg, rgba(69, 79, 155, 1) 0%, rgba(69, 79, 155, 1) 23%, rgba(112, 181, 68, 1) 23%, rgba(112, 181, 68, 1) 100%);
    width: 0.58rem;
    height: 2.25em;
}
.mItem.post_title.single,
.mItem.contact{
    padding-top: 1em;
}
table.com_table{
    border-collapse: separate;
    border-spacing: 2px;
    width: 100%;
}
table.com_table th,
table.com_table td{
    display: block;
    width: 100%;
    padding: 0.95em;
    line-height: 1.66;
}
table.com_table th{
    background: #7bc95a8f;
    font-weight: 500;
}
table.com_table td{
    background: #71b85330;
}
table.com_table dl{
    display: flex;
    flex-direction: column;
}
table.com_table dl dt{
    font-weight: 500;
}
table.com_table ul.num li{
    padding-left: 1.5em;
    text-indent: -1.5em;
}
@media screen and (min-width:380px){
    table.com_table dl{
        display: grid;
        grid-template-columns: 1fr 3fr;
    }
}
@media screen and (min-width:640px){
    table.com_table{border-spacing: 3px;}
    table.com_table th,
    table.com_table td{
        display: table-cell;
        width: unset;
        padding: 0.95em 1em;
    }
    table.com_table th{width: 25%;}
    table.com_table td{width: 75%;}
    .contentswrapper{
        width: calc(100% - 1.93rem);
        margin-left: auto;
        margin-right: 0;
    }
    table.com_table dl{
        display: flex;
        flex-direction: row;
        gap: 0.15em 4em;
    }
    table.com_table dl dt{width: 5em;}
    table.com_table dl dd{width: calc(100% - 9em);}
}
@media screen and (min-width:1024px){
    table.com_table th,
    table.com_table td{
        padding: 1em 1.7em;
    }
}
.contactblk{
    background: var(--green);
    color: var(--white);
    padding: 2.2rem 1.2rem;
    font-weight: 700;
    border-radius: 5px;
}
.contactblk > p{
    text-align: center;
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 1.7em;
}
.contactblk .contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2em 4em;
}
.contactblk .contacts > div{
    width: 100%;
    text-align: center;
}
.contact_tel{
    background: var(--green);
    color: var(--white);
    max-width: 505px;
    border-radius: 200px;
    margin-top: 1.5rem;
    transition: var(--hover);
}
.contactblk .contacts .tel a,
.contact_tel a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(34px, 4vw, 49px);
    gap: 0 0.3em;
    margin-bottom: 6px;
}
.contact_tel a{
    padding: 1rem 2.5rem;
}
.contactblk .contacts .tel a i,
.contact_tel a i{width: 1em;}
.contactblk .contacts .tel span,
.contact_tel span{
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    margin-top: 0.3rem;
}
.contactblk .contacts .form{
    border: 2px solid var(--white);
    border-radius: 3px;
}
.contactblk .contacts .form a{
    display: block;
    padding: 1em 1.25em;
    font-size: clamp(17px,1.85vw,28px);
    transition: var(--hover);
}
@media (any-hover: hover){
    .contactblk .contacts .form a:hover{
        background: var(--white);
        color: var(--green);
    }
    .contact_tel:hover{
        background: var(--blue);
    }
}
@media screen and (min-width:768px){
    .contactblk .contacts > div {width: 43%;}
    .contactblk > p{font-size: 18px;}
}
/* ---------- message ----------- */
.messagecontentswidth{
    max-width: 976px;
    margin: 0 auto;
}
.messagecontentswidth .slogan{
    text-align: center;
    font-size: clamp(23px, 3.275vw, 40px);
    margin-bottom: 3.5rem;
}
.message{
    background: #f4f4f4;
    line-height: 1.86;
    padding: 2.5rem 1.75rem;
    margin-top: 3rem;
}
.message .sign{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 0.5rem 1.2rem;
    margin-top: 4rem;
}
@media (max-width:640px){
    .message .sign{
        flex-direction: column;
    }
}
.message .sign span{display: block;}
.message .sign .name{
    max-width: 139px;
    width: 80vw;
    min-width:120px;
    height: 2rem;
    display: block;
}
.message .sign .name img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (min-width:480px){
    .message{padding: 3.5rem 3rem;}
}
.circleItem{
    padding-left: 2.5rem;
    font-size: clamp(17px,1.875vw,25px);
    margin-bottom: 1.76rem;
}
.circleItem span{
    display: inline-block;
    width: 1.65rem;
    height: 1.65rem;
    background: var(--green);
    border-radius: 3rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    position: absolute;
}
.circleItem span::after{
    content: "";
    width: 37%;
    height: 37%;
    border-radius: 50px;
    background: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.l-txt{font-size: clamp(23px, 3.275vw, 40px);}
.contentswrapper .contentsblk:nth-of-type(n+2){
    padding-top: 5rem;
}
.ci-bottomcont.philosophy > div{margin-bottom: 1em;}
.ci-bottomcont.values > div{margin-bottom: 1rem;}
.ci-bottomcont.values > div:nth-of-type(n+2){margin-top: 0.8em;}
@media screen and (min-width:640px){
    .ci-bottomcont{
        margin-left: auto;
        width: calc(100% - 2.5rem);
    }
}
@media screen and (min-width:1280px){
    .circleItem{padding-left: 3.5rem;}
    .circleItem span {
        width: 2.125rem;
        height: 2.125rem;
    }
    .ci-bottomcont{width: calc(100% - 3.5rem);}
}
.ci-bottomcont.address > p {
    margin-bottom: 1.75rem;
    margin-top: 2.5rem;
}
.ci-bottomcont.address .map{
    width: 100%;
    height: auto;
    aspect-ratio: 2.16 / 1;
    min-height: 228px;
    margin-bottom: 1.5rem;
}
.ci-bottomcont.address a{
    font-size: 13px;
    padding: 0 1.5em;
    transition: var(--hover);
}
@media (any-hover: hover){
    .ci-bottomcont.address a:hover{color: var(--blue);}
}
.access{
    margin-top: 1.5rem;
    padding: 1.5rem;
}
.business_text{margin-top: 3rem;}
/* gallery swiper */
.swiper.gallery_slider.sessaku {
    margin-top: 4rem;
    padding-bottom: 2rem;
}
/* プログレスバー */
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal {
    height: 1px;
}
.swiper-horizontal>.swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal{
    position: absolute;
    bottom: 0;
    top: unset!important;
    left: 50%!important;
    transform: translateX(-50%);
    height: 8px!important;
    background: transparent!important;
    border-top: 1px solid var(--blue)!important;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: var(--green)!important;
}
/* thumbnail swiper */
.slider-thumbnail{margin-top: 1.5rem;}
.slider-thumbnail .swiper-slide {
  width: calc(100% / 3);
}
/* レイアウトのためのスタイル */
.swiper.main-slider {
  width: 100%;
}
.swiper-slide.main-slider-slide img {
  height: auto;
  width: 100%;
}
@media screen and (min-width:640px){
    .slider-thumbnail{margin-top: 2.5rem;}
}
.equipment_table_wrapper{
    width: 100%;
    overflow-x: scroll;
}
table.equipment_table{white-space: nowrap;}
table.equipment_table th,
table.equipment_table td{
    display: table-cell!important;
    font-feature-settings: "palt";
}
.kmbtn {
    max-width: 358px;
    margin: 3rem auto 0;
    border-radius: 100px;
    overflow: hidden;
}
.kmbtn a {
    background: var(--blue);
    color: var(--white);
    align-items: center;
    justify-content: center;
    gap: 1em;
    padding: 0.77em 1.25em;
    transition: var(--hover);
}
@media (any-hover: hover){
    .kmbtn a:hover{background: var(--green);}
}
.kmbtn a i.pdf{width: 2.5em;}
/* information */
ul.infolist {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 3rem;
}
ul.infolist li{width: 100%;}
ul.infolist li.infoblk .post_date,
ul.infolist li.infoblk .post_cat,
.post_date.single,
.post_cat.single{
    font-size: 14px;
}
ul.infolist li.infoblk .post_date{
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    transition: all var(--transition);
}
ul.infolist li.infoblk .thumb{
    position: relative;
    overflow: hidden;
}
ul.infolist li.infoblk .thumb .post_cat{
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--white);
    padding: 0.56em 1.75em;
    border-radius: 50px;
    z-index: 3;
}
ul.infolist li.infoblk .post_title{
    line-height: 1.66;
    transition: var(--hover);
}
ul.infolist li.infoblk .thumb > img{
    z-index: -1;
    transition: all var(--transition);
}
@media (any-hover: hover){
    ul.infolist li.infoblk a:hover .thumb > img{transform: scale(var(--scale));}
    ul.infolist li.infoblk a:hover .post_title,
    ul.infolist li.infoblk a:hover .post_date{color: var(--blue);}
}
@media screen and (min-width:640px){
    ul.infolist li{width: calc((100% - 3rem) / 2);}
}
@media screen and (min-width:1024px){
    ul.infolist {gap: 3rem 5rem;}
    ul.infolist li{width: calc((100% - 5rem) / 2);}
    ul.infolist li.infoblk .post_date,
    ul.infolist li.infoblk .post_cat,
    .post_date.single,
    .post_cat.single{
        font-size: 15px;
    }
}
.pagenation{
    margin-top: 50px;
    display: block;
    width: 100%;
}
.wp-pagenavi{
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    background: var(--green);
    color: var(--white);
    padding: 1rem;
    border-radius: 100px;
    gap: 4px;
}
.wp-pagenavi span,.wp-pagenavi a{
    font-weight: normal!important;
    border: 2px solid #fff!important;
    padding: 3px 8px 5px!important;
}
.wp-pagenavi span.current{
    background: var(--white)!important;
    color: var(--green)!important;
}
@media (any-hover: hover){
    .wp-pagenavi a:hover{
        background: var(--white)!important;
        color: var(--green)!important;
    }
}
.wp-pagenavi span.pages,.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink,.wp-pagenavi span.extend,
.wp-pagenavi a.last,.wp-pagenavi a.first{display: none!important;}
.post_flex {
    display: flex;
    align-items: center;
    gap: 0.8rem 1.2rem;
    margin-bottom: 2.5rem;
}
.post_cat.single {
    background: #eee;
    padding: 0.5em 1.5em 0.55em;
    border-radius: 30px;
}
.post_pagenation{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:space-between;
    background: var(--green);
    color: var(--white);
    padding: 0.7em 1em;
    margin-top: 4rem;
    border-radius: 50px;
}
.post_pagenation > div{
    font-size: 14px;
    width: 6rem;
    text-align: center;
}
.post_pagenation > div a{
    display: block;
    width: 100%;
    border: 1px solid var(--white);
    padding: 0.5em 1.25em 0.55em;
    border-radius: 50px;
    transition: var(--hover);
}
.back_allnews.forsp {
    text-align: center;
    margin-top: 1rem;
}
.back_allnews.forsp a{
    display: inline-block;
    background: #eee;
    padding: 0.5em 1.2em;
    font-size: 14px;
    border-radius: 30px;
    transition: var(--hover);
}
@media (any-hover: hover){
    .post_pagenation > div a:hover{
        background: var(--white);
        color: var(--green);
    }
    .back_allnews.forsp a:hover{
        background: var(--green);
        color: var(--white);
    }
}
@media screen and (min-width:640px){
    .post_pagenation > div{width: 8rem;}
    .post_pagenation{padding: 1em 1.3em;}
}
@media screen and (min-width:64rem){
    .post_pagenation > div{font-size: 15px;}
}

/* --------- form ------------ */
.contactformwrap table.com_table{
	width: 100%;
}
.contactformwrap table.com_table th,
.contactformwrap table.com_table td{
	display: block;
	width: 100%;
	font-weight: 500!important;
}
.contactformwrap table.com_table td input[type="text"],
.contactformwrap table.com_table td input[type="email"],
.contactformwrap table.com_table td textarea{
	width: 100%;
    font-size: 15px;
    background: #fff!important;
    box-sizing: border-box;
    padding: 12px 15px;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    z-index: 2;
	resize: none;
    font-weight: 500;
    border-radius: 8px;
}
.contactformwrap table.com_table td textarea{
	height:185px;
}
.contactformwrap table.com_table th {
    font-weight: 500;
    vertical-align: middle;
}
.contactformwrap table.com_table th span{
	color:#CA103A;
    font-weight: 500;
}

@media screen and (min-width:768px){
    .contactformwrap table.com_table th,
    .contactformwrap table.com_table td{
        display: table-cell;
    }
    .contactformwrap table.com_table th{
        width: 25%;
    }
    .contactformwrap table.com_table td{
        width: 75%;
    }
    .mw_wp_form_preview .contactformwrap table.com_table td{
        padding: 12px 15px;
        font-weight:500!important;
    }
}
.formbtn_wrap{
    display: flex;
    flex-direction: column;
    gap: 10px 14px;
	text-align: center;
	margin-top: 40px;
}
.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0px!important;
}
/* .contactformwrap table.com_table td.purpose_select{
    display:block;
}
.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .contactformwrap table.com_table td.purpose_select{
    background: transparent;
} */
select.form_purpose {
    padding: 11px;
    background: var(--white);
    border-radius: 8px;
    border-right: solid #fff 10px;
}
select.form_purpose:focus{outline: none!important;}
@media screen and (min-width:768px){
    .formbtn_wrap{
        flex-direction: row;
        justify-content: center;
    }
    .contactformwrap table.com_table td.purpose_select{margin-bottom: 25px;}
}
.formbtn{
    position: relative;
    display: inline-block;
	text-align: center;
}
.formbtn input,.form_complete p a{
    display: block;
    padding: 14px 37px;
    width: 225px;
    margin: 0 auto;
    text-align: center;
    letter-spacing: 0.05em;
    color:var(--white);
    background: var(--blue)!important;
    font-weight: bold;
    border-radius: 50px !important;
    background: transparent;
    transition: all .3s;
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
}
.formbtn:hover input,.form_complete p a:hover{
    background: var(--green)!important;
}
.form_complete {margin-top: 35px;}
.form_complete p a {
    margin-top: 45px;
    width: 274px;
    letter-spacing: 0.2em;
}
.mw_wp_form .error {
    font-size: 75%!important;
    color: #B70000;
    display: block;
    margin-top: 13px!important;
}
span.required {color: #ca103a;}

.form_finished {
    line-height: 1.66;
}
.form_finished p:nth-of-type(1){
    margin-bottom: 30px;
}
.form_finished p a{
	display: block;
    padding: 14px 37px;
    width: 225px;
    font-size: 0.85em;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    background: var(--blue)!important;
    border-radius: 50px;
    background: transparent;
}
.form_finished p a:hover{
	background: var(--green)!important;
}
.mw_wp_form_preview .privacy__policy_outer{
    display: none;
}

/* Philosophy Section */
.philosophy-list {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
}
.philosophy-item {
    display: flex;
    align-items: baseline;
    gap: 1.5em;
}
.philosophy-item .jp {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #6FB544 0%, #3D4394 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}
.philosophy-item .en {
    font-size: 1.2rem;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

@media all and (min-width:768px) {
    .philosophy-item .jp {
        font-size: 3.5rem;
    }
    .philosophy-item .en {
        font-size: 1.5rem;
    }
    .philosophy-item:nth-child(2) {
        margin-left: 2em;
    }
    .philosophy-item:nth-child(3) {
        margin-left: 4em;
    }
}