@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oxanium:wght@200..800&display=swap');


/* ------------------------------------------
BODY
------------------------------------------ */
html{
  background: #FFF;
  scroll-behavior: smooth;
  font-size: 14px;/*16px*/

}

@media (max-width: 1100px) {
  html{
    font-size: 14px;
  }
}
@media (max-width: 994px) {
  html{
    font-size: 14px;
  }
}
@media (max-width: 850px) {
  html{
    font-size: 13px;
  }
}
@media (max-width: 820px) {
  html{
    font-size: 13px;
  }
}
@media (max-width: 750px) {
  html{
    font-size: 14px;
  }
}

body {
  line-height: 1.8;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  background: #FFF;
  color: #231815;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

img {
  max-width: 100%;
  height: auto;
}
.inner{
  /*max-width: 1440px;*/
  margin: 0 auto;
}
.pc_only{
  display: block;
}
.sp_only{
  display: none;
}

@media (max-width: 1480px) {
  .inner{
    /*padding-right: 20px;
    padding-left: 20px;
    */
  }
}

@media (max-width: 750px) {
  
  .pc_only{
    display: none !important;
  }
  .sp_only{
    display: block;
  }
  

}

/*-- header --*/
header{
  height: 90px;
  background: #FFF;
  box-shadow: 0 1.998px 7.993px 0 rgba(0, 0, 0, 0.09);
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 2;
  opacity: 0;
  
  animation: fadeopa 0.75s forwards;
}
/*
#page_top header{
  opacity: 0;
  &.is-animation{
    animation: fadeup 2s 0s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }
}
*/
header .header_wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*position: fixed;*/
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

header a.logo_header{
  display: block;
  width: 127px;
}
header nav{

}
header nav ul{
  display: flex;
}
header nav ul li.nav_txt{
  margin-right: 44px;
  display: flex;
  align-items: center;
}
header nav ul li.nav_txt a{
  font-size: 1.13rem;/*18px*/
  font-weight: 600;
  background: linear-gradient(90deg, #E62B3C 0%, #FF7343 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1.0;
  transition: all 0.3s;
}
header nav ul li.nav_txt a:hover{
  opacity: 0.8;
  transition: all 0.3s;
}
header nav ul li.nav_recruit{
  margin-right: 20px;
}
header nav ul li.nav_recruit a{
  font-size: 1.13rem;/*18px*/
  font-weight: 600;
  color: #FFF;
  background: url('../img/btn_orange1_bk.png') no-repeat left top;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 188px;
  height: 50px;
  opacity: 1.0;
  transition: all 0.3s;
}
header nav ul li.nav_recruit a:hover{
  opacity: 0.8;
  transition: all 0.3s;
}
header nav ul li.nav_contact{
}
header nav ul li.nav_contact a{
  font-size: 1.13rem;/*18px*/
  font-weight: 600;
  color: #FFF;
  background: url('../img/btn_gray1_bk.png') no-repeat left top;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 188px;
  height: 50px;
  opacity: 1.0;
  transition: all 0.3s;
}
header nav ul li.nav_contact a:hover{
  opacity: 0.8;
  transition: all 0.3s;

}
.hamburger-menu{
  display: none;
}

@media (max-width: 850px) {
  header nav ul li.nav_txt{
    margin-right: 22px;
  }
  header nav ul li.nav_recruit{
    margin-right: 10px;
  }
}

@media (max-width: 750px) {
  header {
    /*height: 45px;*/
    height: 60px;
  }
  header .header_wrapper{
    padding: 0 10px;
  }
  header a.logo_header{

  }
  header a.logo_header img{
    width: 78px;
  }
  .hamburger-menu{
    display: block;
    width: 25px;
    height: 45px;
    position: relative;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
  }
  .hamburger-menu__bar {
    display: inline-block;
    width: 25px;
    height: 2px;
    background: #000;
    position: absolute;
    right: 0;
    /* transform: translateX(-50%); */
    transform: translateX(0%);
    transition: .3s;
  }
  .hamburger-menu__bar:first-child {
    top: 16px;
  }
  .hamburger-menu__bar:nth-child(2) {
    top: 24px;
  }
  .hamburger-menu__bar:last-child {
    top: 32px;
  }
  .hamburger-menu--open .hamburger-menu__bar {
    top: 50%;
  }
  .hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateX(0%) translateY(-50%) rotate(45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:last-child {
    transform: translateX(0%) translateY(-50%) rotate(-45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
  }
  header nav{
    display: none;
    background: rgba(255, 255, 255, 1.0);
    position: fixed;
    /*top: 45px;*/
    top: 60px;
    left: 0;
    width: 100%;
    /*height: calc(100vh - 45px);*/
    height: calc(100vh - 60px);
    padding: 40px 10px 0 10px;
    z-index: 1;
  }
  header nav ul{
    display: block;
  }
  header nav ul li.nav_txt{
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /*box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.09);*/
    box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, 0.09);
    height: 60px;
  }
  header nav ul li.nav_txt a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header nav ul li.nav_txt a::after{
    content: "";
    display: inline-block;
    width: 29px;
    height: 26.5px;
    background: url('../img/header_icon.png') no-repeat;
    background-size: 29px auto;
    margin-left: 7px;
  }
  header nav ul li.nav_recruit{
    margin-right: 0;
    padding: 30px 0 20px;
  }
  header nav ul li.nav_recruit a{
    margin: 0 auto;
    background: url(../img/btn_orange1_bk_sp.png) no-repeat left top;
    background-size: 305px auto;
    width: 305px;
    height: 61.5px;
  }
  header nav ul li.nav_recruit a::after{
    content: "ページはこちら";
  }
  header nav ul li.nav_contact a{
    margin: 0 auto;
    background: url(../img/btn_gray1_bk_sp.png) no-repeat left top;
    background-size: 305px auto;
    width: 305px;
    height: 61.5px;
  }
  header nav ul li.nav_contact a::after{
    content: "はこちら";
  }
}


/*-- footer --*/
footer{
  height: 132px;
  background: #231815;
  color: #FFF;
  padding: 30px 0;
}
footer .footer_list{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
footer .footer_list li{
  margin-right: 58px;
}
footer .footer_list li:last-child{
  margin-right: 0;
}
footer .footer_list a{
  color: #FFF;
  font-size: 1rem;/*16px*/
  font-weight: 400;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
footer .footer_txt{
  color: rgba(255, 255, 255, 0.70);
  text-align: center;
  font-size: 1rem;/*16px*/
  font-weight: 700;
}

@media (max-width: 750px) {
  footer {
    height: 170px;
    padding: 26px 23px;
  }
  footer .footer_list{
    margin-bottom: 20px;
  }
  footer .footer_list a {
    /*font-size: 0.88rem;*//*14px*/
  }
  footer .footer_list li{
    margin-right: 0;
    margin-bottom: 8px;
  }
  footer .footer_txt{
    /*font-size: 0.88rem;*//*14px*/
    padding-top: 10px;
  }
}


/*-- main --*/
main{
  padding-top: 90px;
  overflow-x: clip;
}

/* スクロールダウンの位置 */
.scroll {
  position: fixed;
  right: 30px;
  bottom: 130px;
  color: #666666;
  z-index: 1;
  display: none;
  /*writing-mode: sideways-lr;*/
  writing-mode: vertical-rl;   /* Safari対応 */
  text-orientation: mixed;     /* 英字を自然表示 */
  transform: rotate(180deg);   /* 向きをsideways-lr風に調整 */
}
/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #666666;
  /*bottom: -120px;*/
  bottom: -5px;
  content: "";
  height: 160px;
  left: 0;
  margin: auto;
  position: absolute;
  /*right: -30px;*/
  right: 30px;
  width: 1px;
}
/*
.scroll:after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: 2px;
  width: 1px;
  height: 20px;
  background: #666666;
  transform: skewX(31deg);
}
*/

/* 線のアニメーション */
@keyframes scroll {

  0% {
    transform: scale(1, 0);
    transform-origin: 0 100%; /* 下を基準に */
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 100%; /* 上に向かって伸びる */
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 0; /* 上に向かって伸びる */
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 0;    /* 基準を上に切り替え */
  }


}

.fixed {
  position:fixed;
  right: 0;
  top: 0;
  z-index:99;
}


@media (max-width: 750px) {
  main {
    /*padding-top: 45px;*/
    padding-top: 60px;
  }
  .scroll{
    right: 20px;
    /*bottom: 75px;*/
    bottom: 90px;
  }
  .scroll::before{
    /*bottom: -70px;*/
    bottom: 0;
    height: 110px;
  }
}

/*-- fv youtube --*/
.c-mv {
  aspect-ratio: 16/9;
  height: auto;
  /*position: relative;*//**/
  position: fixed;
  width: 100%;
  min-height: 100vh;
  z-index: 10;
  overflow : hidden;

  /*height: 115%;*//* Youtubeタイトル消す */
  /*margin-top: -60px;*//* Youtubeタイトル消す */
}
video.fv_video {
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
}
.hidden {
  display: none;
}
/*
.c-mv__video {
  bottom: 0;
  height: 100%;
  left: 0;
  overflow: hidden;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 10;

}

.c-mv__mask {
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  height: 100%;
  top: 0;
  width: 100%;
  z-index: 2;
}
*/



/*-- fv --*/
#fv{

  /*height: calc(100vh - 90px);*/
  position: relative;

  margin-bottom: -1px;
  
}

#fv_block1{
  /*height: calc(100vh - 90px);*/
  height: calc(100vh - 90px);
  position: sticky;
  top: 90px;
}

#fv_block1 {
  /*background-color: #D0DEDE;*/
  font-size: 0;
}

#fv_block2 {
  /*height: calc(30vh - 90px);*/
  height: calc(25vh);
  position: sticky;
  /*top: 90px;*/
  top: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgb(0, 0, 0, 0) 0%, rgb(255, 255, 255, 1) 50%, rgb(255, 255, 255, 1) 75%, rgb(255, 255, 255, 1) 100%);
  font-size: 0;


}
/*
#fv_block3 {
  background: linear-gradient(180deg, rgb(255, 255, 255, 0.5) 0%, rgb(255, 255, 255, 1) 100%);
}
*/



.fv_content{
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
}

#fv .fv_content #fv_logo{
  width: 45%;
  max-width: 278px;
  margin: 0 70px;
  display: block;

  opacity: 0;
  transform: translate3d(0,30px,0);
  transition:
    transform 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0.25s,
    opacity 0.3s ease 0.25s;

  will-change: transform, opacity;
  backface-visibility: hidden;
}

#fv.view .fv_content #fv_logo{
  opacity: 1;
  transform: translate3d(0,0,0);
}

#fv .video_wrapper {
  height: 100%;
  height: calc(100vh - 90px);
  position: relative;
  width: 100%; 
}
#fv video{
  z-index: 0;
  height: 100%;
  /*width: 100%;*/
  /*margin: 0 auto;*/
  min-height: calc(100% - 90px);
  min-height: calc(100vh - 90px);
  min-width: 100%;
  min-width: 100vw;
  position: absolute;
  top: 0;
  z-index: 0;
  opacity: 0;

  object-fit: cover;
}
#fv.view .video_wrapper video{
  animation: fadeopa 0.75s forwards;
}
@keyframes fadeopa {
    0% {opacity: 0;}
   25% {opacity: 0;}
   50% {opacity: 0.25;}
  100% {opacity: 1;}
}
.h1_content{
  width: 55%;
  color: #FFF;
  font-size: 2.38rem;/*38.218px;*/
  font-weight: 700;
  line-height: 76.436px;
  /*background: #000;*/
  max-width: 675px;
  
}

.h1_content h1:first-child{
  margin-bottom: 39px;
}
.h1_content h1 span{
  display: inline-block;
  height: 78.294px;
  background: linear-gradient(90deg, #E62B3C 1.4%, #FF7343 99.9%), #FFF;
  /*box-shadow: 0 5.43px 23.077px 0 rgba(0, 0, 0, 0.18);*/
  padding: 0 33px;
}

/*
.h1_content h1 {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(1,0,.7,1) 0.8s;
}
*/
.h1_content h1:nth-child(1){
  margin-bottom: 39px;
  overflow: hidden;
  transform: translate(-100%, 0);
  /*transition: transform cubic-bezier(1,0,.7,1) 0.8s 5s;*/
  transition: transform cubic-bezier(1,0,.7,1) 0.3s 0.4s;
  width: 330px;
}
.h1_content h1:nth-child(2){
  overflow: hidden;
  transform: translate(-100%, 0);
  /*transition: transform cubic-bezier(1,0,.7,1) 0.8s 5s;*/
  transition: transform cubic-bezier(1,0,.7,1) 0.3s 0.4s;
  width: 600px;
}

.h1_content h1:nth-child(1) span{
  display: block;
  width: 330px;
  transform: translate(100%, 0);
  /*transition: transform cubic-bezier(1,0,.7,1) 0.8s 5s;*/
  transition: transform cubic-bezier(1,0,.7,1) 0.3s 0.4s;
}
.h1_content h1:nth-child(2) span{
  display: block;
  width: 600px;
  transform: translate(100%, 0);
  /*transition: transform cubic-bezier(1,0,.7,1) 0.8s 5s;*/
  transition: transform cubic-bezier(1,0,.7,1) 0.3s 0.4s;
}

/*
.h1_content h1 span {
  transform: translate(100%, 0);
  transition: transform cubic-bezier(1,0,.7,1) 0.8s;
}
*/

.h1_content h1.-visible,
.h1_content h1.-visible span {
  transform: translate(0, 0);
}


@media (max-width: 1100px) {
  #fv.view .fv_content #fv_logo{
    margin: 0 40px;
  }
  #fv.view .h1_content{
    /*font-size: 1.66rem;*//*26px;*/
  }
  #fv.view .h1_content h1 span{

  }
  .h1_content{
    font-size: 1.66rem;
  }
  #fv.view .h1_content h1:nth-child(1){
    margin-bottom: 25px;
    width: 250px;
  }
  #fv.view .h1_content h1:nth-child(2){
    width: 440px;
  }
  #fv.view .h1_content h1:nth-child(1) span{
    width: 250px;
  }
  #fv.view .h1_content h1:nth-child(2) span{
    width: 440px;
  }
}

@media (max-width: 820px) {
  #fv.view .fv_content #fv_logo{
    width: 30%;
  }
  .h1_content h1 span {
    padding: 0 15px;
  }
  #fv.view .h1_content h1:nth-child(1){
    margin-bottom: 25px;
    width: 240px;
  }
  #fv.view .h1_content h1:nth-child(2){
    width: 420px;
  }
  #fv.view .h1_content h1:nth-child(1) span{
    width: 240px;
  }
  #fv.view .h1_content h1:nth-child(2) span{
    width: 420px;
  }

}

@media (max-width: 750px) {
  #fv{
    
    /*height: calc(100vh - 45px);*/
  }
  #fv_block1, #fv_block2, #fv_block3 {
    /*height: calc(100vh - 45px);*/
    height: calc(100vh - 60px);
    /*top: 45px;*/
    top: 60px;
    display: flex;
    align-items: center;
  }
  #fv_block2, #fv_block3 {
    /*height: calc(30vh - 45px);*/
    height: calc(30vh - 60px);
    /*top: 45px;*/
    top: 60px;
    display: flex;
    align-items: center;
  }
  #fv .video_wrapper{
    /*height: calc(100vh - 45px);*/
    height: calc(100vh - 60px);
  }
  #fv.view .fv_content #fv_logo {
    /*margin: 60px auto 40px;*/
    margin: 0 auto 40px;
  }
  .fv_content{
    display: block;
    /*height: calc(100vh - 45px);*/
    height: auto;
  }
  #fv.view .fv_content #fv_logo{
    width: 100%;
  }
  #fv.view .h1_content{
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
  }
  #fv.view .h1_content h1:nth-child(1){
    width: 100%;
    margin-bottom: 19px;
  }
  #fv.view .h1_content h1:nth-child(1) span{
    width: 100%;
    text-align: center;
    font-size: 2.5rem;/*35px;*/
  }
  #fv.view .h1_content h1:nth-child(2){
    width: 100%;
  }
  #fv.view .h1_content h1:nth-child(2) span{
    width: 100%;
    height: 35px;
    line-height: 35px;
    font-size: 1.13rem;/*18px*/
    text-align: center;
  }


}





/*-- service --*/
section:nth-child(2){
  padding-top: 157px;
}
#service{
  
}
#service .inner{
  /*min-height: 639px;*/
}

#slide-skew-service{
  width: 100%;
  padding: 100px 0;
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translate3d(-180px,30px,0);
  transition:
    transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.3s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
  z-index: 0;
}
#slide-skew-service.is-animation{
  opacity: 1;
  transform: translate3d(0,0,0);
}
#slide-skew-service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(89deg, #E62B3C 3.63%, #FF7343 99.39%);
  transform: skewY(-5deg) translateZ(0);
  z-index: -1;
  backface-visibility: hidden;
  will-change: transform;
}

#content_service{
  max-width: 954px;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px); /* ← 追加 */
  transition: 
    transform 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0.5s,
    opacity 0.3s ease 0.5s;
  z-index: 3;
  will-change: transform, opacity; /* ← Safari安定用 */
}
#content_service.is-animation{
  opacity: 1;
  transform: translateY(0);
}
/*
@keyframes fadeup {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
*/
.h2_wrapper{
  display: flex;
  align-items: baseline;
}
.h2_wrapper h2{
  font-family: "Oxanium", sans-serif;
  font-weight: 600;
  color: #FFF;
  font-size: 2.75rem;/*44px;*/
  margin-bottom: 30px;
}
.h2_wrapper span{
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 1.13rem;/*18px*/
  font-weight: 500;
  padding-left: 20px;
}
.h2_wrapper span::before{
  content: "ー";
  display: inline-block;
  margin-right: 5px;
}
#content_service p{
  color: #FFF;
  font-size: 1.13rem;/*18px*/
  font-weight: 500;
  line-height: 37.841px;
}
#wire{
  opacity: 0;
  /* display: block; */
  position: absolute;
  /* position: relative; */
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 800px;
  height: 300px;
  z-index: 1;
  transform: translateY(30px); /* ← 追加 */
  transition: 
    transform 0.3s cubic-bezier(0.33, 1, 0.68, 1) 1.0s,
    opacity 0.3s ease 1.0s;
  z-index: 2;
  will-change: transform, opacity; /* ← Safari安定用 */
}
#wire.is-animation{
  opacity: 1;
  transform: translateY(0);
}
.background {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  z-index: 0;
}
.background_sp {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  z-index: 0;
}
#service_line{
  opacity: 0;
  position: absolute;
  top: -67px;
  right: calc(50% - 390px);

  transform: translate3d(-180px,30px,0);
  transition:
    transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) 0.3s,
    opacity 0.3s ease 0.3s;

  will-change: transform, opacity;
  backface-visibility: hidden;
}
#service_line.is-animation{
  opacity: 1;
  transform: translate3d(0,0,0);
}

@media (max-width: 994px) {
  #content_service{
    padding: 0 20px;
  }
}

@media (max-width: 750px) {
  #service .inner{
    padding-right: 0;
    padding-left: 0;
    min-height: unset;
  }
  #slide-skew-service{
    background: url(../img/bk_orange_sp.png) no-repeat center top;
    background-size: contain;
    padding: 65px 20px;
    display: block;
    /*min-height: 490px;*/
    display: flex;
  }
  .h2_wrapper h2{
    font-size: 2.43rem;/*34px;*/
    margin-bottom: 0;
  }
  .h2_wrapper span{
    font-size: 0.81rem;/*13px;*/
  }
  #content_service p{

  }
  #content_service p{
    font-size: 1rem;/*16px*/
    line-height: 30px;
  }
  #wire{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    /*width: 100%;*/
  }
  .background{
    left: -100px;
  }
  #service_line {
    top: -25px;
    right: calc(50% - 115px);
    width: 58px;
  }
  section:nth-child(2){
    padding-top: 90px;
  }
}




#works{
  margin: 65px 0;
}
#works .inner{
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
}
#content_works{
  opacity: 0;
  margin: 0 auto 0 55%;
  transform: translateY(30px); /* ← 追加 */
  transition: 
    transform 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s,
    opacity 0.3s ease 0s;
  will-change: transform, opacity; /* ← Safari安定用 */ 
}
#content_works.is-animation{
  opacity: 1;
  transform: translateY(0);
}
#works .h2_wrapper h2{
  background: linear-gradient(90deg, #E62B3C 0%, #FF7343 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#works .h2_wrapper span{
  background: linear-gradient(90deg, #E62B3C 0%, #FF7343 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.works_list{
  font-size: 0;
  max-width: 440px;
}
.works_list li{
  background: linear-gradient(90deg, #E62B3C 0%, #FF7343 100%);
  color: #FFF;
  display: inline-block;
  height: 42px;
  line-height: 42px;
  font-size: 1rem;/*16px*/
  font-weight: 700;
  padding: 0 20px;
  margin-right: 14px;
  margin-bottom: 12px;
}
#content_works p{
  color: #231815;
  font-size: 1rem;/*16px*/
  font-weight: 500;
  line-height: 34px;
}
#works_line{
  position: absolute;
  /*margin-left: 15%;*/
  top: 0;
  bottom: 0;
  right: 55%;
  margin: auto;
  opacity: 0;
  transform: translate3d(-180px,0,0);
  transition: 
    transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.3s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
}
#works_line.is-animation{
  transform: translate3d(0,0,0);
  opacity: 1;
}
/*
@keyframes slideIn {
  0% {
    transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}
*/

@media (max-width: 994px) {
  #works_line{
    /*margin: 0 auto 0 5%;*/
  }

}


@media (max-width: 750px) {
  #works{
    margin: 20px 0;
  }
  #works .inner {
    display: block;
    min-height: unset;
    padding: 50px 20px;
  }
  #content_works {
    margin: 0 auto 0 auto;
  }
  .works_list li{
    height: 38px;
    line-height: 38px;
    /*font-size: 0.94rem;*//*15px;*/
    padding: 0 15px;
    margin-right: 12px;
    margin-bottom: 10px;
  }
  #works_line {
    display: block;
    /*margin: 25px auto 0 auto;*/
    right: 0;
    width: 178px;
    position: relative;
  }
}

/*-- company --*/
#company{
  
}
#company .inner{
  /*
  background: url('../img/bk_orange.png') no-repeat center top;
  background-size: auto;
  min-height: 639px;
  */
 
  /*
  display: flex;
  align-items: center;
  position: relative;
  */
}
#content_company{
  /*width: 100%;
  margin: 0;
  padding: 100px 0;
  position: relative;
  width: 100%;
  margin: 0 auto;*/
  width: 100%;
  padding: 100px 0;
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translate3d(-180px,30px,0);
  transition:
    transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.3s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
  z-index: 0;
}
#content_company.is-animation{
  opacity: 1;
  transform: translate3d(0,0,0);
}
#content_company::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  
  background: linear-gradient(89deg, #E62B3C 3.63%, #FF7343 99.39%);
  transform: skewY(-5deg);
}
#company_wrapper{
  max-width: 954px;
  width: 100%;
  margin: 0 auto;
  min-width: 380px;
  opacity: 0;
  transform: translateY(30px); /* ← 追加 */
  transition: 
    transform 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s,
    opacity 0.3s ease 0s;
  will-change: transform, opacity; /* ← Safari安定用 */
}
#company_wrapper.is-animation{
  opacity: 1;
  transform: translateY(0);
}
.company_info{
  color: #FFF;
  font-size: 1rem;/*16px*/
  font-weight: 400;
  max-width: 388px;
  line-height: 32px;
}
.company_info li{
  border-bottom: 1px solid #FFF;
  padding: 8px 0;
}
.company_info li:first-child{
  line-height: 1.6;
}
.company_info li:last-child{
  border-bottom: none;
}
.company_info li span{
  
}
.company_info li span::after{
 content: "｜"; 
}
#map{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 430px;
  height: 295px;
  opacity: 0;
  transform: translateY(30px); /* ← 追加 */
  transition: 
    transform 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s,
    opacity 0.3s ease 0s;
  will-change: transform, opacity; /* ← Safari安定用 */
}
#map.is-animation{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 994px) {
  #company_wrapper{
    padding: 0 20px;
  }
  #map{
    right: 20px;
  }
  .company_info{
    max-width: max-content;
  }
}

@media (max-width: 820px) {
  
  #map{
    width: 380px;
    right: 20px;
  }
}


@media (max-width: 750px) {
  #company .inner {

    /*
    background: url(../img/bk_orange_sp2.png) no-repeat center top;
    background-size: contain;
    padding: 0 20px;
    min-height: 733px;
    display: flex;
    */
  }
  #content_company {
    padding: 65px 20px;
    max-width: unset;
    width: 100%;
    margin: 0 auto;
    /*padding-top: 0;*/
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #map{
    position: absolute;
    top: unset;
    top: 66px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    height: 220px;
    opacity: 0;
  }
  #company_wrapper {
    min-width: unset;
  }
  #company .h2_wrapper{
    margin-bottom: 250px;
  }
  .company_info{
    /*font-size: 0.94rem;*//*15px;*/
    max-width: unset;
    line-height: 30px;
  }
  .company_info li{
    padding: 4px 0;
  }
}


/*-- with Aime --*/
#with{
  margin-top: 65px;
  padding-bottom: 40px;
}
#with .inner{
  background-size: auto;
  min-height: 352px;
  display: flex;
  align-items: center;
  position: relative;
}
#content_with{
  max-width: 954px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transform: translateY(30px); /* ← 追加 */
  transition: 
    transform 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0s,
    opacity 0.3s ease 0s;
  will-change: transform, opacity; /* ← Safari安定用 */
}
#content_with.is-animation{
  opacity: 1;
  transform: translateY(0);
}

#content_with .h2_wrapper{
  justify-content: center;
}
#content_with .h2_wrapper h2{
  background: linear-gradient(90deg, #E62B3C 0%, #FF7343 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#content_with p{
  color: #231815;
  text-align: center;
  font-size: 1.13rem;/*18px*/
  font-weight: 700;
  line-height: 35.2px;
  margin-bottom: 40px;
}
.with_btn{
  display: flex;
  justify-content: center;
}
.with_btn li{

}
.with_btn li.btn_recruit {
  margin-right: 20px;
}
.with_btn li.btn_recruit a{
  font-size: 1.25rem;/*20px;*/
  font-weight: 600;
  color: #FFF;
  background: url(../img/btn_orange2_bk.png) no-repeat left top;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 340px;
  height: 84px;
  opacity: 1.0;
  transition: all 0.3s;
}
.with_btn li.btn_recruit a:hover{
  opacity: 0.8;
  transition: all 0.3s;
}
.with_btn li.btn_contact a{
  font-size: 1.25rem;/*20px;*/
  font-weight: 600;
  color: #FFF;
  background: url(../img/btn_gray2_bk.png) no-repeat left top;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 340px;
  height: 84px;
  opacity: 1.0;
  transition: all 0.3s;
}
.with_btn li.btn_contact a:hover{
  opacity: 0.8;
  transition: all 0.3s;
}

@media (max-width: 750px) {
  #with{
    margin-top: 70px;
  }
  #content_with p{
    color: #231815;
    text-align: center;
    /*font-size: 1rem;*//*16px*/
    font-weight: 700;
    line-height: 28px;
  }
  .with_btn {
    display: block;
  }
  .with_btn li.btn_recruit {
    margin-right: 0px;
  }
  .with_btn li.btn_recruit{
    padding-bottom: 20px;
  }
  .with_btn li.btn_recruit a {
    margin: 0 auto;
    /*font-size: 1.13rem;*//*18px*/
    background: url(../img/btn_orange1_bk_sp.png) no-repeat left top;
    background-size: 305px auto;
    width: 305px;
    height: 61.5px;
  }
  .with_btn li.btn_contact a {
    margin: 0 auto;
    /*font-size: 1.13rem;*//*18px*/
    background: url(../img/btn_gray1_bk_sp.png) no-repeat left top;
    background-size: 305px auto;
    width: 305px;
    height: 61.5px;
  }
}


/*--- Serviceページ ---*/
#page_service #page_header{
  height: 240px;
  background: linear-gradient(90deg, #E62B3C 1.4%, #FF7343 99.9%), #D9D9D9;
  display: flex;
  align-items: end;
}
#page_service #page_header .inner{
  max-width: 990px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: end;
}
#background_wrapper{
  width: 100%;
  max-width: 948px;
  display: block;
  position: absolute;
  right: -50%;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 200px;
}
.h1_wrapper {
  display: flex;
  align-items: center;
  z-index: 1;

}
.h1_wrapper h1 {
  font-family: "Oxanium", sans-serif;
  font-weight: 500;
  color: #FFF;
  font-size: 5rem;/*80px;*/
}
.h1_wrapper span {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 1.5rem;/*24px;*/
  font-weight: 500;
  padding-left: 20px;
}
#header_wire{
  position: absolute;
  right: 0;
  height: 100%;
}

#service_area{
  
}
#service_area .inner{
  padding-top: 92px;
  padding-bottom: 78px;
  max-width: 990px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, 0.09);
}
#service_area p{
  color: #231815;
  text-align: center;
  font-size: 1.1rem;/*16px*/
  font-weight: 500;
  line-height: 34px;
  margin-bottom: 1.8em;
}
#service_area p:last-child{
  margin-bottom: 0;
}
#service_area p span{
  display: inline-block;
  background: linear-gradient(0deg, #E62B3C 0%, #FF7343 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#company_area .inner{
  padding-top: 60px;
  padding-bottom: 80px;
  max-width: 990px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#company_info_area{

}
#company_area .h2_wrapper h2 {
  background: linear-gradient(90deg, #E62B3C 0%, #FF7343 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
}
#company_area .h2_wrapper span{
  background: linear-gradient(90deg, #E62B3C 0%, #FF7343 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#company_area .company_info {
  color: #231815;
  font-size: 1rem;/*16px*/
  font-weight: 400;
  max-width: 388px;
  line-height: 32px;
}
#company_area .company_info li {
  border-bottom: none;
  padding: 3px 0;
}
#map_frame{
  width: 430px;
  height: 295px;
}
#buttom_area{
  padding-bottom: 80px;
}
@media (max-width: 850px) {
  #page_service #page_header .inner{
    padding: 0 20px;
  }

  #service_area p{
    line-height: 2em;
    font-weight: 500;
  }
}
@media (max-width: 750px) {
  
  #page_service #page_header {
    height: 115px;
  }
  #page_service #page_header .inner{
    padding: 0 20px;
  }
  #background_wrapper {
    width: 100%;
    max-width: 400px;
    display: block;
    position: absolute;
    right: -50%;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100px;
  }
  .h1_wrapper h1{
    font-size: 2.43rem;/*34px;*/
  }
  .h1_wrapper span {
    font-size: 1rem;/*14px*/
    padding-left: 10px;
  }
  #service_area .inner{
    padding: 35px 20px 60px 20px;
  }
  #company_area .inner {
    padding: 60px 20px 50px 20px;
    max-width: unset;
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  #map_frame {
    width: 100%;
    height: 228px;
  }
  #company_info_area .h2_wrapper{
    margin-bottom: 250px;
  }
  #company_info_area .company_info {
    font-size: 0.94rem;/*15px;*/
    max-width: unset;
    line-height: 30px;
  }
  #company_area .inner{
    position: relative;
  }
  #company_area #map_frame {
    position: absolute;
    top: unset;
    top: 125px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: calc(100% - 40px);
    height: 220px;
    opacity: 1;
  }
  #company_area .company_info li{
    border-bottom: 1px solid #231815;
  }
  #company_area .company_info li:last-child {
    border-bottom: none;
  }

}



/*--- Contactページ ---*/
#contact_area{

}
#contact_area .inner{
  padding-top: 60px;
  max-width: 990px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
}
#contact_area .contact_h1_wrapper{
  margin-right: 64px;
}
#contact_area .contact_h1_wrapper h1 {
  background: linear-gradient(90deg, #E62B3C 0%, #FF7343 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
  font-family: "Oxanium", sans-serif;
  font-weight: 600;
  color: #FFF;
  font-size: 2.75rem;/*44px;*/
}
#contact_area .contact_h1_wrapper span{
  display: block;
  font-size: 1.5rem;/*24px;*/
  font-weight: 500;
  letter-spacing: 1.5px;
}
.contact_form{
  width: 100%;
  padding-bottom: 86px;
}
.contact_form span{
  display: block;
  margin-bottom: 5px;
}
.contact_form span a{
  border-bottom: 1px solid #e62b3c;
  color: #e62b3c;
}
.contact_form input[type=text],
.contact_form input[type=email],
.contact_form input[type=tel]{
  border-radius: 6px;
  border: 1px solid #838FA2;
  width: 100%;
  height: 60px;
  /*margin-bottom: 15px;*/
  padding: 0 10px;
}
.contact_form textarea{
  border-radius: 6px;
  border: 1px solid #838FA2;
  width: 100%;
  height: 20em;
  /*margin-bottom: 15px;*/
  padding: 10px 10px;
}

.contact_form input[type=checkbox]{
  /*appearance: auto;
  display: block;*/
}
.checkbox_wrapper{
  margin-bottom: 25px;
}
.checkbox_wrapper label{
  /*display: flex;*/
  display: grid;
  grid-auto-flow: column;
  justify-content: left;
  align-items: center;
}
.checkboxItem {
  display: flex;
  align-items: center;
  column-gap: 8px;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}

.checkboxItem div{
  line-height: 1.5;
}

.checkboxItem:not(:last-of-type) {
  margin-bottom: 16px;
}

.contact_form input[type=checkbox] {
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  background-color: #dddddd;
  cursor: pointer;
  margin-right: 1em;
}

.contact_form input[type=checkbox]:checked {
  border: 1px solid #e62b3c;
  background-color: #e62b3c;
}

.contact_form input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.wpcf7-list-item{
  margin: 0 0 0 0 !important;
}
.wpcf7-form-control-wrap{
  margin-bottom: 15px !important;
}


.contact_form input[type=submit][disabled]{
  /*max-width:654px;*/
  width: 100% ;
  height: 70px;/*92px*/
  background: url('../img/btn_submit_gray.png') no-repeat center top;
  background-size: contain;
  font-size: 1.25rem;/*20px;*/
  text-align: center;
  font-weight: 500;
  color: #9A9A9A;
  transition-duration: 0.3s;
  cursor:not-allowed;
}
.contact_form input[type=submit][disabled]:hover{
  /*max-width:654px;*/
  width: 100% ;
  height: 70px;/*92px*/
  background: url('../img/btn_submit_gray.png') no-repeat center top;
  background-size: contain;
  font-size: 1.25rem;/*20px;*/
  text-align: center;
  font-weight: 500;
  color: #9A9A9A;
  transition-duration: 0.3s;
  cursor:not-allowed;
}
.contact_form input[type=submit]{
  /*max-width:654px;*/
  width: 100% ;
  height: 70px;/*92px*/
  background: url('../img/btn_submit.png') no-repeat center top;
  background-size: contain;
  font-size: 1.25rem;/*20px;*/
  text-align: center;
  font-weight: 500;
  color: #F24E3F;
  transition-duration: 0.3s;
}
.contact_form input[type=submit]:hover{
  background: url('../img/btn_submit_hover.png') no-repeat center top;
  background-size: contain;
  color: #FFF;
  transition-duration: 0.3s;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
  border: none !important;
  border-color: unset !important;
  color: #dc3232 !important;
}



@media (max-width: 1030px) {
  #contact_area .inner{
    padding: 60px 20px 0;
  }
}
@media (max-width: 850px) {
  .contact_form input[type=submit][disabled]{
    max-width: 335px;
    height: 59px;
    /*font-size: 1.13rem;*//*18px*/
    display: block;
    margin: 0 auto;

    background: url('../img/btn_submit_gray_sp.png') no-repeat center top;
    background-size: contain;
  }
  .contact_form input[type=submit][disabled]:hover{
    max-width: 335px;
    height: 59px;
    /*font-size: 1.13rem;*//*18px*/
    display: block;
    margin: 0 auto;

    background: url('../img/btn_submit_gray_sp.png') no-repeat center top;
    background-size: contain;
  }
  .contact_form input[type=submit]{
    max-width: 335px;
    height: 59px;
    /*font-size: 1.13rem;*//*18px*/
    display: block;
    margin: 0 auto;

    background: url('../img/btn_submit_sp.png') no-repeat center top;
    background-size: contain;
  }
  .contact_form input[type=submit]:hover{
    background: url('../img/btn_submit_hover_sp.png') no-repeat center top;
    background-size: contain;
  }
  .contact_form input[type=checkbox]{
    width: 1.5em !important;
    height: 1.5em !important;
  }
}
@media (max-width: 750px) {
  #contact_area .inner{
    padding: 0;
    max-width: unset;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: block;
  }
  #contact_area .contact_h1_wrapper{
    margin-right: 0;
    padding: 0 20px;
    height: 115px;
    display: flex;
    justify-content: start;
    align-items: end;
  }
  #contact_area .contact_h1_wrapper h1{
    /*font-size: 2.43rem;*//*34px;*/
  }
  #contact_area .contact_h1_wrapper span{
    font-size: 1rem;/*14px*/
    padding-left: 10px;
    padding-bottom: 19px;
    font-weight: 500;
    letter-spacing: 0;
  }
  .contact_form{
    padding: 10px 20px 55px 20px;
  }
  .contact_form input[type=text],
  .contact_form input[type=email],
  .contact_form input[type=tel]{
    height: 40px;
    margin-bottom: 10px;
    padding: 0 10px;
  }
  .checkboxItem div{
    width: calc(100% - 20px);
    /*font-size: 0.8rem;*/
  }
  .contact_form input[type=submit][disabled]{
    max-width: 335px;
    height: 59px;
    /*font-size: 1.13rem;*//*18px*/
    display: block;
    margin: 0 auto;

    background: url('../img/btn_submit_gray_sp.png') no-repeat center top;
    background-size: contain;
  }
  .contact_form input[type=submit][disabled]:hover{
    max-width: 335px;
    height: 59px;
    /*font-size: 1.13rem;*//*18px*/
    display: block;
    margin: 0 auto;

    background: url('../img/btn_submit_gray_sp.png') no-repeat center top;
    background-size: contain;
  }
  .contact_form input[type=submit]{
    max-width: 335px;
    height: 59px;
    /*font-size: 1.13rem;*//*18px*/
    display: block;
    margin: 0 auto;

    background: url('../img/btn_submit_sp.png') no-repeat center top;
    background-size: contain;
  }
  .contact_form input[type=submit]:hover{
    background: url('../img/btn_submit_hover_sp.png') no-repeat center top;
    background-size: contain;
  }
  
}


/*--- Thanksページ ---*/
#page_thanks{

}
#thanks_area{
  min-height: calc(100vh - 222px);
  display: flex;
  align-items: center;
}
#thanks_area .inner{
  padding-top: 60px;
  max-width: 990px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding-bottom: 73px;
}
.center_wrapper{
  text-align: center;
  margin-bottom: 48px;
}
#thanks_area h1,
#policy_area h1{
  background: linear-gradient(90deg, #E62B3C 0%, #FF7343 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
  font-family: "Oxanium", sans-serif;
  font-weight: 600;
  color: #FFF;
  font-size: 2.75rem;/*44px;*/
  display: inline-block;
}
#thanks_area p {
  color: #231815;
  text-align: center;
  font-size: 1rem;/*16px*/
  font-weight: 500;
  /*line-height: 34px;*/
  margin-bottom: 1.5em;
  line-height: 1.8;
}
#thanks_area p:last-child{
  margin-bottom: 0;
}

@media (max-width: 750px) {
  #thanks_area .inner{
    padding-top: 0;
    max-width: unset;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: block;
    padding-bottom: 50px;
  }
  .center_wrapper{
    margin-right: 0;
    padding: 0 20px;
    height: 115px;
    display: flex;
    justify-content: start;
    align-items: end;
    margin-bottom: 10px;
  }
  #thanks_area h1,
  #policy_area h1{
    font-size: 2.43rem;/*34px;*/
  }
  #thanks_area p{
    /*font-size: 1rem;*//*16px*/
    padding: 0 20px;
    text-align: left;
  }


}

/*--- PRIVACY POLICYページ ---*/
#policy_area{

}
#policy_area .inner{
  padding-top: 60px;
  padding-bottom: 55px;
  max-width: 990px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
#policy_area h2{
  text-align: center;
  font-size: 1.5rem;/*24px;*/
  font-weight: 700;
  line-height: 34px; /* 141.667% */
}
#policy_area ol{
  list-style-type: decimal;
  padding-left: 1.5em;
  font-size: 1.25rem;/*20px;*/
  font-weight: 700;
  line-height: 1.8;
}
#policy_area ol > li{
  margin-bottom: 30px;
}
.ol_head{
  font-size: 1.25rem;/*20px;*/
  font-weight: 700;
}
#policy_area ol p{
  font-size: 1.13rem;/*18px*/
  font-weight: 500;
}
#policy_area ol > li ul{
  list-style-type: disc;
  padding-left: 1.5em;
  font-size: 1.13rem;/*18px*/
  font-weight: 500;
  line-height: 1.8;
}
@media (max-width: 1030px) {
  #policy_area .inner{
    padding: 60px 20px 55px;
  }
}
@media (max-width: 750px) {
  #policy_area .inner{
    padding: 0;
  }
  #policy_area .center_wrapper {
    margin-right: 0;
    padding: 30px 20px 0;
    height: 115px;
    display: block;
    text-align: left;
    margin-bottom: 0;
  }
  #policy_area h2{
    font-size: 1rem;/*14px*/
    padding-left: 0;
    padding-bottom: 0;
    font-weight: 500;
    letter-spacing: 0;
    text-align: left;
  }
  #policy_area ol{
    margin: 30px 20px;
    /*font-size: 1.13rem;*//*18px*/
  }
  .ol_head {
    /*font-size: 1.13rem;*//*18px*/
  }
  #policy_area ol p {
    /*font-size: 1rem;*//*16px*/
  }
  #policy_area ol > li ul {
    /*font-size: 1rem;*//*16px*/
  }
}