@charset "utf-8";

@media screen and (max-width:1200px) {}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {}

/*==================================================
$common
==================================================*/
html {
  font-size: 62.5%;
}

body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1.5;
  position: relative;
  color: #000;
  font-family: 'Noto Sans JP', "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.05em;
}

a {
  color: inherit;
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
}

.nopc {
  display: none !important;
}

img {
  max-width: 100%;
}

/*==================================================
$共通
==================================================*/
.inner {
  max-width: 1080px;
  min-width: 900px;
  margin: auto;
  width: 90%;
  position: relative;
}

.s_inner {
  width: 760px;
  margin: auto;
}

.screen-over-content {
  display: none;
}

.screen-over .screen-over-content {
  display: block;
  /* background-color: rgba(0, 0, 0, 0.5); */
  background-color: rgba(0, 0, 0, 0);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 96px;
  left: 0;
  z-index: -1;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

.contents {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

.pc_center {
  text-align: center;
}

.link_disable {
  cursor: default;
}

.link_txt {
  color: #EC8A3F;
  text-decoration: underline;
  transition: .2s;
}

.link_txt:hover {
  opacity: .6;
}

.indent_txt {
  text-indent: -1em;
  padding-left: 1em;
}

.right_txt {
  text-align: right;
  display: block;
}

/*セクション*/
main>section {
  padding: 80px 0 100px;
}

main>section:first-of-type {
  padding: 50px 0 100px;
}

main>section:not(.bg_gray)+section:not(.bg_gray) {
  padding-top: 0;
}

main>section section:not(:last-of-type) {
  margin-bottom: 80px;
}

.bg_cover, .bg_cover>.inner {
  position: relative;
}

.bg_cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg_gray {
  background-color: #FAF8F5;
}

.border_sec:not(:last-of-type) {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: solid 1px #EEEEEE;
}

/*タイトル*/
.top_sec_ttl, .page_mv_ttl {
  font-family: brandon-grotesque, sans-serif;
  font-size: 5.0rem;
  color: #E36235;
  font-weight: bold;
  line-height: 1.0em;
}

.top_sec_ttl span, .page_mv_ttl span {
  font-family: 'Noto Sans JP';
  color: #000;
  font-size: 1.8rem;
  display: block;
}

.top_sec_ttl {
  font-size: 4.0rem;
  margin-bottom: 20px;
}

.top_sec_ttl span {
  font-size: 1.5rem;
}

.pocky_ttl {
  position: relative;
  font-weight: bold;
  font-size: 2.4rem;
  border-top: solid 1px #DDDDDD;
  padding-top: 15px;
  margin-bottom: 25px;
}

.pocky_ttl::before {
  content: '';
  position: absolute;
  background-color: #E36235;
  width: 54px;
  height: 2px;
  left: 0;
  top: -2px;
}

/*ボタン*/
.btn {
  position: relative;
}

.btn::after {
  background-image: url(../img/white_arrow.svg);
}

.btn::after {
  content: '';
  width: 12px;
  height: 8px;
  transition: .3s;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

.btn:hover::after {
  right: 12px;
}

.fill_btn {
  position: relative;
  z-index: 0;
  text-align: center;
  font-weight: bold;
  padding: 20px 0;
  overflow: hidden;
}

.fill_btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  display: block;
  z-index: -1;
  transition: .3s;
}

.fill_btn:hover:before {
  width: 100%;
}

.red_btn {
  background-color: #E36235;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-size: 1.4rem;
  transition: .3s;
  padding: 12px 70px;
  border: none;
}

.white_btn {
  background-color: #fff;
  border: solid 1px #E36235 !important;
  color: #E36235 !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-size: 1.4rem;
  transition: .3s;
  padding: 12px 70px;
}

.extend_txt {
  position: relative;
}

.extend_txt::after {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -3px;
  margin: auto;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
  background-color: #E36235;
}

.extend_txt:hover::after {
  transform: scale(1, 1);
}

.hover_scale {
  overflow: hidden;
}

.hover_scale>* {
  transition: .4s;
}

.hover_scale:hover>* {
  transform: scale(1.1, 1.1);
}

/*リスト*/
.bullet_list li {
  padding-left: 18px;
  position: relative;
  line-height: 1.7em;
}

.bullet_list li::before {
  content: '';
  background-color: #E36235;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: calc(1em - 8px);
}

.bullet_sublist li {}

.bullet_sublist li::after {
  content: '';
  margin-right: 5px;
  background-color: #fff;
  width: 4px;
  height: 4px;
  border-radius: 100px;
  position: absolute;
  left: 1px;
  top: calc(1em - 2px);
}

.number_list {
  padding-left: 1.5em;
}

.number_list li {
  list-style-type: decimal;
}

.archive_list li {
  border-bottom: solid 1px rgba(28, 74, 109, 0.23);
  position: relative;
}

.archive_list li:nth-child(n+5) {
  display: none;
}

.archive_list li a {
  padding: 15px 0;
  display: block;
}

.archive_list li p {
  font-size: 1.6rem;
}

.archive_list li span {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.43);
}

.archive_list li b {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.43);
  position: absolute;
  bottom: 15px;
  right: 0;
}

.plane_list li {
  display: flex;
  justify-content: flex-start;
  padding: 12px 0;
}

.plane_list li span {
  width: 12%;
}

.plane_list li p {
  max-width: 560px;
}

/*テーブル*/
.row_th_tbl {
  width: 100%;
}

.row_th_tbl tr {
  border-bottom: solid 1px #fff;
}

.row_th_tbl tr th, .row_th_tbl tr td {
  padding: 20px 40px;
  vertical-align: middle;
}

.row_th_tbl tr th {
  background-color: #F5F2ED;
  text-align: center;
  font-weight: bold;
  width: 201px;
}

.row_th_tbl tr td {
  background-color: #FAF8F5;
}

/*ボックス*/
.flex-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.flex-2>* {
  width: calc((100% - 50px) / 2);
}

.flex-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.flex-3>* {
  width: calc((100% - 50px * 2) / 3);
}

.flex-4 {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}

.flex-4>* {
  width: calc((100% - 35px * 3) / 4);
}

/* スクロールCSS */
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in+.fade-in {
  transition-delay: .2s;
}

.fade-in+.fade-in+.fade-in {
  transition-delay: .4s;
}

.fade-in+.fade-in+.fade-in+.fade-in {
  transition-delay: .6s;
}

.fade-in+.fade-in+.fade-in+.fade-in+.fade-in {
  transition-delay: .8s;
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/*========= スクロールダウンのためのCSS ===============*/
.scrolldown {
  position:
    absolute;
  bottom: 60px;
  left: 35px;
  height: 160px;
  cursor: pointer;
  z-index: 4;
}

.scrolldown span {
  position: absolute;
  left: 10px;
  top: 0;
  color: #E36235;
  font-size: 1.2rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-family: brandon-grotesque, sans-serif;
}

.scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  width: 2px;
  height: 50%;
  z-index: 1;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    top: 0;
  }

  100% {
    top: 50%;
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 0
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }
}

/* 線の描写 */
.scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: #E36235;
}

/*==================================================
$header
==================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(255,255,255,0.6);
  box-shadow: 10px 0px 27px rgb(0 0 0 / 3%);
  transition: .5s;
  display: flex;
  font-weight: bold;
}

.header.fixed-hide {
  /* top: -45px; */
}

.header .inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  max-width: 1200px;
  /* padding: 52px 0 10px; */
  padding: 10px 0;
  width: 96%;
}

.toppage_before .header {
  /* box-shadow: none;
  background-color: transparent; */
}

.header_logo {
  content: '';
  background-image: url(../img/logo.png);
  background-size: cover;
  width: 100px;
  height: 128px;
  transition: .5s;
  position: absolute;
  top: 15px;
  left: 0;
}

.header.fixed-hide .header_logo {
  margin-top: 0;
  transform: scale(0.5,0.5);
  top: -28px;
}

.global_menu_wrap {
  /* margin-top: -30px; */
  transition: .5s;
}

.header.fixed-hide .global_menu_wrap {
  margin-top: 0;
}

.toppage_before .header_logo {
  /* background-image: url(../img/logo_w.svg); */
}

.global_menu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2vw;
  font-size: 1.5rem;
}

@media screen and (min-width:1601px) {
  .global_menu {
  gap: 30px;
}
}

.menu>p, .menu>a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.2em;
}

.menu>p>span , .menu>a>span {
  color: #E36235;
  font-size: 1.0rem;
  display: block;
}

.toppage_before .menu>p, .toppage_before .menu>a {
  /* color: #fff; */
}

.parent_menu {
  position: relative;
}

.parent_menu>p {padding-right: 25px;}

.parent_menu>p::after {
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  border-top: 2px solid #E36235;
  border-right: 2px solid #E36235;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 0;
  bottom: 0;
  right: 10px;
  transition: .3s;
  margin: auto;
}

.parent_menu>p:hover::after {
  top: 8px;
}

.toppage_before .parent_menu>p::after {
  /* border-top: 2px solid #fff;
  border-right: 2px solid #fff; */
}

.childmenu {
  opacity: 0;
  transition: .3s;
  position: absolute;
  left: 0;
  right: 0;
  top: 65px;
  pointer-events: none;
  background-color: #FAF8F5;
  border-radius: 6px;
  z-index: 1;
  padding: 20px 35px;
  width: 233px;
}

.menu.active .childmenu {
  opacity: 1;
  pointer-events: auto;
}

.childmenu_list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 50px;
}

.childmenu_list li {
  /* break-inside: avoid; */
  margin-right: 50px;
}

.childmenu a {
  position: relative;
  display: flex;
  align-items: center;
}

.childmenu a:not(:last-of-type) {
  margin-bottom: 10px;
}

.childmenu a:not(.link_disable)::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 2px solid #E36235;
  border-right: 2px solid #E36235;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 0;
  transition: .3s;
}

.childmenu a:hover::after {
  right: -10px;
}

.childmenu>a {
  opacity: .7;
}

.childmenu>span {
  font-size: 2.0rem;
  opacity: 1;
  width: 100%;
}

.childmenu>span:not(:first-child) {
  margin-top: 20px;
}

.burger {
  display: none;
}

.header_tel {
  display: flex;
  font-size: 3.2rem;
  line-height: 1em;
  align-items: center;
  gap: 5px;
  font-family: brandon-grotesque, sans-serif;
}

.header_tel::before {
  content: '';
  background-image: url(../img/red_tel.svg);
  width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.header_time {
  font-size: 1.2rem;
  padding-left: 35px;
}

.header_business {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #E36235;
  color: #fff;
  width: 210px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 5px 5px;
  font-weight: bold;
}

.header_business::before {
  background-color: #C4461C;
}

.menu>a.header_ec {
  background-color: #E36235;
  color: #fff;
  font-size: 1.1rem;
  padding: 15px;
  border-radius: 10px;
}

.menu>a.header_ec b {display: block;font-size: 1.5rem;margin-bottom: 5px;}

.menu>a.header_ec::before {
  background-color: #C4461C;
}

@media screen and (max-width:1300px) {
  .header_logo {
  }

  .header_tel {
    font-size: 1.8rem;
  }

  .menu>p, .menu>a {
    font-size: 1.2vw;
  }

  .global_menu {
  }
}

/*==================================================
$footer
==================================================*/
.footer {
  position: relative;
}

.foot_wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.foot_red_area {
  width: 35%;
  background-color: #E36235;
  color: #fff;
  text-align: center;
  padding: 50px;
}

.foot_ttl {
  font-family: brandon-grotesque, sans-serif;
  font-size: 3.0rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.foot_bx {
  background-color: rgba(250, 248, 245, 0.1);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 25px 2%;
}

.foot_bx p {
  line-height: 1.36em;
}

.foot_tel {
  font-family: brandon-grotesque, sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0;
  gap: 10px;
}

.foot_tel::before {
  content: '';
  background-image: url(../img/white_tel.svg);
  width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.foot_contact {
  display: flex;
  font-size: 1.8rem;
  transition: .3s;
  justify-content: center;
  align-items: center;
}

.foot_contact::before {
  background-color: rgba(250, 248, 245, 0.3);
}

.foot_contact span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.foot_contact span::before {
  content: '';
  background-image: url(../img/white_mail.svg);
  width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.foot_gray_area {
  width: 65%;
  background-color: #F5F2ED;
  padding: 50px 100px;
}

.foot_gray_top {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px #C9C9C9;
  padding-bottom: 20px;
  margin-bottom: 30px;
  max-width: 680px;
}

.foot_sitemap {
  column-count: 2;
  column-gap: 60px;
}

.foot_sitemap a {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.foot_sitemap a.foot_sitemap_child {
  color: #7D7D7D;
  position: relative;
  padding-left: 22px;
}

.foot_sitemap a.foot_sitemap_child::before {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 2px solid #E36235;
  border-right: 2px solid #E36235;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: .3s;
  margin: auto;
  position: absolute;
  left: 0;
}

.foot_sitemap a.foot_sitemap_child:hover::before {
  left: 8px;
}

.foot_business {
  background-color: #E36235;
  color: #fff;
  width: 298px;
  height: 92px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.foot_business::before {
  background-color: #C4461C;
}

.foot_gray_btm {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 50px;
  justify-content: flex-end;
}

.foot_info {
  line-height: 1.428em;
}

.foot_logo {

width: 85px;
}

.jfs_wrap {
  display: flex;
  gap: 15px;
}

.jfs_wrap img {
  width: 50px;
  height: auto;
}

.jfs_wrap p {
  font-size: 1.2rem;
}

.copy {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  font-family: brandon-grotesque, sans-serif;
  font-weight: bold;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: center;
  font-family: brandon-grotesque, sans-serif;
}

.totop {
  position: fixed;
  bottom: 5vh;
  right: 5vw;
  background-color: #000;
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 100px;
  font-size: 1.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 15px;
  z-index: 1;
  box-shadow: 4px 3px 6px rgb(0 0 0 / 17%);
}

.totop::after {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(-45deg);
  top: 22px;
  right: 0;
  left: 0;
  margin: auto;
}

/*==================================================
$下層
==================================================*/
.page_mv {
  padding: 100px 0 35px;
  border-bottom: solid 1px #EEEEEE;
  margin-bottom: 15px;
}

.pankuzu {
  font-size: 1.2rem;
  color: #ADADAD;
}

.pankuzu a::after {
  content: '/';
  margin: 0 10px;
}

.pankuzu span {
  color: #000;
}

.sec_intro {
  max-width: 752px;
  margin: auto;
}

.sec_intro>*:not(:last-child) {
  margin-bottom: 25px;
}

.sec_intro+* {
  margin-top: 60px;
}

.sec_ttl {
  text-align: center;
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 2em;
}

.sec_ttl span {
  display: block;
  color: #E36235;
  font-size: 1.6rem;
  font-family: brandon-grotesque, sans-serif;
  line-height: 1em;
}

.sec_copy {
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
}

.sec_letter {
  line-height: 1.7em;
}

.sub_ttl {
  font-size: 1.8rem;
  color: #E36235;
  font-weight: bold;
  margin-bottom: 15px;
}

.alter_area {
  margin-bottom: 100px;
}

.alter_wrap {
  padding: 50px 0;
}

.alter_wrap .inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
}

.alter_wrap:nth-child(even) .inner {
  flex-direction: row-reverse;
}

.alter_txt {
  width: 367px;
}

.alter_ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.alter_letter {
  line-height: 1.7em;
}

.alter_img {
  width: calc(100% - 367px - 50px);
}

.alter_img img {
  border-radius: 10px;
}

.alter_txt a.btn {
  margin-top: 25px;
}

/*==================================================
$トップページ
==================================================*/

.mv {
  position: relative;
  width: calc(100% - 10px*2);
  height: calc(100vh - 112px - 10px);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 10px;
}

.mv::before {
  content: '';
  background-color: rgba(255,255,255,0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.mv_float {
  position: absolute;
  color: #E36235;
  display: flex;
  font-size: 1.6rem;
  font-weight: bold;
  bottom: 70px;
  left: 70px;
  gap: 15px;
  z-index: 2;
}

.slider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.slick-dots {
  bottom: 18px;
  display: none;
}

.slick-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  height: calc(100vh - 112px - 10px);
}

.mv_contain.slick-img img {
  object-fit: contain;
}

.slick-list {
  height: 100%;
}

/*top_news_sec*/
.top_news_sec {
  padding: 50px 0 !important;
}

.top_news_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top_news_ttl {
  text-align: center;
  width: 220px;
}

.top_news_inner {
  width: calc(100% - 220px - 50px);
}

.news_list li {
  background-color: #FAF8F5;
  border-radius: 100px;
  padding: 20px 40px;
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
}

.news_list_date {
  font-family: brandon-grotesque, sans-serif;
  font-weight: bold;
  width: 10%;
}

.news_list_ttl {
  width: 85%;
}

a.news_list_tt {
  text-decoration: underline;
}

.morebtn {
font-weight: bold;
color: #E36235;
display: block;
text-align: center;
cursor: pointer;
margin-top: 50px;
}

/*top_safety_sec*/
.top_safety_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 35px;
}

.top_safety_txt {
  width: 620px;
}

.top_safety_img {
  border-radius: 10px;
  overflow: hidden;
  width: calc(100% - 620px - 35px);
}

.top_safety_ttl {
  font-size: 4.6rem;
  font-weight: 900;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  font-family: YuGothic, 'Yu Gothic', YuGothic, 'Yu Gothic', sans-serif;
}

.top_safety_ttl span {
  color: #E36235;
}

.top_safety_letter {
  line-height: 2.25em;
  font-size: 1.6rem;
  margin-bottom: 35px;
  max-width: 570px;
}

.top_jfs {
padding: 20px 0;
background-color: #F5F2ED;
}
.top_jfs .flex-2 {
  align-items: center;
  justify-content: center;
}
.top_jfs .flex-2:not(:last-of-type) {
  margin-bottom: 20px;
}
.top_jfs .flex-2>div {
  width: 600px;
}
.top_jfs img {width: 80px;}
.top_jfs p {font-size: 1.6rem;font-weight: bold;}


/*==================================================
$製品 merchandise
==================================================*/
.order_wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 40px;
  margin-bottom: 35px;
  counter-reset: number 0;
}

.order_contents {
  background-color: #fff;
  width: calc((100% - 40px*5)/5);
  padding: 20px 10px 20px 30px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
}

.order_contents::before {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  font-family: brandon-grotesque, sans-serif;
  color: #E36235;
  font-size: 1.8rem;
  display: block;
}

.order_contents::after {
  content: '';
  width: 40px;
  height: 100%;
  background: linear-gradient(to bottom left, transparent 50%, #fff 50%) no-repeat top left / 100% 50%,
    linear-gradient(to top left, transparent 50%, #fff 50%) no-repeat bottom left/100% 50%;
  position: absolute;
  top: 0;
  right: -40px;
}

.order_map {
  align-items: center;
}

.order_map_txt {
  line-height: 1.7em;
}

.order_map_txt p {
  display: flex;
  align-items: center;
}

.map_jisyabin {
  width: 26px;
  height: 15px;
  background-color: #E36235;
  margin-right: 5px;
}

.original_img {
  height: 174px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 10px;
}

/*==================================================
$製品一覧 OEM
==================================================*/
.original_wrap {
  margin-bottom: 50px;
  line-height: 2em;
}

.oem_sec .original_wrap {
  max-width: 800px;
  margin: 50px auto 80px;
}

.original_sub {
  color: #E36235;
  font-size: 1.2rem;
  font-weight: bold;
}

.original_name {
  font-size: 1.8rem;
  font-weight: bold;
}

.original_name span {
  color: #ADADAD;
  font-size: 1.2rem;
  display: block;
}

.flow_outer {display: flex;justify-content: space-between;margin-bottom: 55px;}
.flow_wrap {width: 64%;}
.flow_normal {border: solid 2px #E36235;padding: 10px;text-align: center;color: #E36235;font-weight: bold;border-radius: 5px;}
.flow_start {
    background-color: #E36235;
    color: #fff;
}
.flow_branch_wrap {display: flex;justify-content: space-between;}
.flow_branch {width: 49%;position: relative;margin: 35px 0;border: solid 2px #E36235;border-radius: 5px;padding: 10px;}
.flow_branch::before , .flow_branch::after {
  content: '';
  background-image: url(../img/red_s_arrow.svg);
  width: 12px;
  height: 22px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(90deg);
  right: 0;
  left: 0;
  margin: auto;
  top: -30px;
}

.flow_branch::after {
  top: auto;
  bottom: -30px;
}

.flow_branch_ttl {border: none;font-weight: bold;font-size: 1.6rem;margin: 0 0 8px;text-align: center;}
.flow_branch:first-of-type .flow_branch_ttl {color: #3E6EBB;}
.flow_branch:nth-of-type(2) .flow_branch_ttl {color: #C69500;}

.flow_arrow {position: relative;padding: 10px 15px;border-radius: 5px;}
.flow_arrow:not(:last-of-type) {margin-bottom: 35px;}

.flow_branch:first-of-type .flow_arrow {
    background-color: #DAE3F3;
    background-color: #EBF0F8;
}
.flow_branch:nth-of-type(2) .flow_arrow {background-color: #FFE699;background-color: #FFF2CC;}


.flow_arrow::after {
  content: '';
  background-image: url(../img/red_s_arrow.svg);
  width: 12px;
  height: 22px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(90deg);
  right: 0;
  left: 0;
  margin: auto;
  bottom: -31px;
}

.flow_branch:first-of-type .flow_arrow::after {
    background-image: url(../img/blue_s_arrow.svg);
}
.flow_branch:nth-of-type(2) .flow_arrow::after {
    background-image: url(../img/yellow_s_arrow.svg);
}
.flow_branch .flow_arrow:last-of-type::after {
  content: none;
}

.flow_end {background-color: #E36235;color: #fff;font-size: 1.8rem;margin-bottom: 10px;}
.flow_img_wrap {width: 34%;}
.flow_img {}

.flow_caption {text-align: center;display: block;color: #666;}


/*==================================================
$安全対策 safety
==================================================*/
.safety_wrap {
  counter-reset: number 0;
}

.safety_contents {
  background-color: #fff;
  border-radius: 10px;
  position: relative;
}

.safety_contents::before {
  counter-increment: number 1;
  content: counter(number) " ";
  background-color: #D6674D;
  width: 45px;
  height: 45px;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: brandon-grotesque, sans-serif;
}

.safety_subsec01 .safety_contents:not(:last-of-type)::after {
  content: '';
  background-image: url(../img/red_s_arrow.svg);
  width: 12px;
  height: 22px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -22px;
}

.safety_subsec02 .safety_contents:not(:last-of-type)::after {
  content: '';
  background-image: url(../img/red_s_arrow.svg);
  width: 12px;
  height: 22px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -26px;
  margin: auto;
  right: 0;
  left: 0;
  transform: rotate(90deg);
}


.safety_fleximg {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.safety_fleximg img {
  width: calc((100% - 10px)/2);
  height: 114px;
  object-fit: cover;
  border-radius: 10px;
}

.safety_contents_ttl {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.safety_result {
  text-align: center;
  color: #E36235;
  font-weight: bold;
  font-size: 2.0rem;
  padding-top: 100px;
  position: relative;
}

.safety_result::before {
  content: '';
  background-image: url(../img/safety/arrow.svg);
  position: absolute;
  width: 122px;
  height: 51px;
  background-repeat: no-repeat;
  background-size: contain;
  top: 35px;
  right: 0;
  left: 0;
  margin: auto;
}

.safety_subsec01 .safety_wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.safety_subsec01 .safety_contents {
  padding: 92px 25px 30px;
  min-width: 194px;
  width: 25%;
}

.safety_subsec01 .safety_contents::before {
  position: absolute;
  top: 25px;
  right: 0;
  left: 0;
  margin: auto;
}

.safety_subsec01 .safety_contents:last-of-type {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 160px;
}

.safety_subsec01 .safety_contents:last-of-type::before {
  content: none;
}

.safety_subsec02 .safety_wrap2 {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.safety_subsec02 .safety_wrap {
  width: calc(100% - 417px - 32px);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.safety_subsec02 .safety_contents {
  display: flex;
  align-items: center;
  padding: 20px 55px;
  gap: 30px;
  width: 100%;
}

.safety_subsec02 .safety_contents_txt {
  width: calc(100% - 45px - 30px);
}

.safety_subsec02 .safety_img {
  width: 417px;
  border-radius: 10px;
}

.safety_subsec02 .safety_img img {
  border-radius: 10px;
}

.safety_other_bx {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}

.safety_other_bx .bullet_list {
  max-width: 780px;
  margin: auto;
}

.jfs_bx {
  border: solid 2px #E36235;
  border-radius: 10px;
  padding: 35px;
  margin: 40px 0;
}

.jfs_full {
  max-width: 600px;
  margin: auto;
  border: solid 1px #999;
}

/*==================================================
$企業理念 philosophy
==================================================*/
.greeting_sec {}

.greeting_main {
  text-align: center;
  font-size: 5.5rem;
  font-weight: bold;
  color: #E36235;
  margin-bottom: 10px;
}

.greeting_sub {
  text-align: center;
  font-weight: bold;
  font-size: 3.0rem;
  line-height: 1em;
  margin-bottom: 40px;
}

.greenting_circle_area {
  background-image: url(../img/philosophy/circle.png);
  width: 675px;
  height: 632px;
  background-size: cover;
  margin: auto;
  color: #fff;
  position: relative;
}

.greenting_circle {
  position: absolute;
  width: 226px;
}

.greenting_circle_ttl {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.greenting_circle_txt {}

.greenting_circle.greenting_circle01 {
  top: 70px;
  right: 0;
  left: 0;
  margin: auto;
}

.greenting_circle.greenting_circle02 {
  left: 50px;
  top: 365px;
}

.greenting_circle.greenting_circle03 {
  right: 50px;
  top: 365px;
}

.greeting_fix {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-top: 35px;
}

/*==================================================
$会社案内 company
==================================================*/
.facility_img {
  margin-bottom: 15px;
}

.facility_img img {
  border-radius: 10px;
}

.facility_ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/*==================================================
$アクセス access
==================================================*/
.access_map iframe {
  width: 100%;
  height: 364px;
  border-radius: 10px;
}

/*==================================================
$お問い合わせ contact
==================================================*/
.contact .page_mv {
  margin-bottom: 0;
}

.contact .pankuzu {
  padding-top: 20px;
}

.contact section>.inner {
  max-width: 850px;
}

.kome {
  color: #E36235;
  font-size: 1.8rem;
  line-height: 1em;
}

.contact .sec_intro {
  margin-bottom: 60px;
}

.contact_form table tr {
  margin-bottom: 25px;
  display: flex;
}

.contact_form table tr th, .contact_form table tr td {}

.contact_form table tr th {
  vertical-align: middle;
  width: 250px;
  font-weight: bold;
  padding-top: 8px;
}

.contact_form table tr th b {
  color: #ADADAD;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: brandon-grotesque, sans-serif;
  display: block;
}

.contact_form table tr td {
  vertical-align: middle;
  width: calc(100% - 250px);
}

.contact_form table tr td input, .contact_form table tr td select, .contact_form table tr td textarea {
  border-radius: 10px;
  width: 100%;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  height: 50px;
}

.contact_form table tr td textarea {
  height: 10em;
}

.submit_btn_wrap {
  max-width: 750px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}

.submit_btn {
  width: 100%;
  height: 70px;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
}

.reset_btn {
  width: 100%;
  height: 70px;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
}

.reset_btn.btn::after {
  background-image: url(../img/red_arrow.svg);
}

.reset_btn.btn::after {
  right: auto;
  left: 20px;
}

.reset_btn.btn:hover::after {
  right: auto;
  left: 12px;
}

table#mfp_confirm_table {
  background-color: #fff;
  padding: 52px;
  display: block;
  border-radius: 5px;
  max-width: 752px;
  margin: 0 auto 50px;
}

table#mfp_confirm_table tr.mfp_achroma {
  background-color: transparent !important;
}

table#mfp_confirm_table tr.mfp_colored {
  background-color: transparent !important;
}

table#mfp_confirm_table tr th, table#mfp_confirm_table tr td {
  border: none !important;
  padding: 20px !important;
  font-size: 1.4rem !important;
}

.thanks_bx {
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.7em;
  padding: 45px;
  margin-bottom: 45px;
}

.company_other_bx {
  background-color: #FAF8F5;
  padding: 30px;
}
