@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #333;
  font-family: "YakuHanJP", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  background: #fefefe;
}

a {
  color: rgb(204, 123.2, 0);
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: rgb(153, 92.4, 0);
}

img {
  max-width: 100%;
  height: auto;
}

/* language
----------------------------------*/
.ja {
  font-family: "YakuHanJP", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", sans-serif;
}

.en {
  font-family: "YakuHanJP", "Jost", sans-serif;
  font-weight: 500;
}

.num_font {
  font-family: "YakuHanJP", "Jost", sans-serif;
}

.uppercase {
  text-transform: uppercase;
}

/* loader
----------------------------------*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, #FF9A00 0%, #00ecbc 100%);
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
}

.splashbg1,
.splashbg2 {
  display: none;
}

body.appear .splashbg1,
body.appear .splashbg2 {
  display: block;
}
body.appear .splashbg1 {
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 50%;
  transform: scaleX(1);
  background: #FF9A00;
}
body.appear .splashbg2 {
  animation-name: PageAnime2;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 50%;
  transform: scaleX(1);
  background: #FF9A00;
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
@keyframes PageAnime2 {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
#container {
  opacity: 0;
}

body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* header
----------------------------------*/
#header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  width: 100%;
  transition: all 0.3s ease;
  background-color: #fff;
  padding: 15px;
}
#header #logo {
  width: 300px;
}
#header .inner {
  margin: 0 auto;
  max-width: 100%;
  min-width: 1024px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#header #head_right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#header .contact {
  background-color: #FF9A00;
  padding: 30px;
}
#header .contact_link {
  position: relative;
}
#header .contact_link li a {
  position: relative;
  padding: 10px 24px;
  color: #fff;
  background: #FF9A00;
  border-radius: 3px;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
}
#header .contact_link li a:hover {
  background: #4B4B4B;
}
#header:before {
  position: absolute;
  content: "";
  background-color: #FF9A00;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  left: 10px;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 0.3s;
}
#header.static {
  position: static;
}
#header.is-fixed {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.5411764706);
  z-index: 10;
  box-shadow: rgba(217, 217, 217, 0.24) 0px 3px 8px;
}
#header.is-fixed:before {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  left: -10px;
}
#header.is-fixed #logo {
  width: 250px;
}
#header.is-hide {
  transform: translateY(-100%);
}

.underlayer #header {
  position: relative;
  display: block;
}
.underlayer #header.is-fixed {
  position: fixed;
}

.outer-menu {
  display: none;
  position: relative;
  z-index: 6;
  width: 60px;
  height: 60px;
}
.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 60px;
  height: 60px;
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked + .hamburger > div {
  transform: rotate(135deg);
  background-color: #fff;
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:before {
  top: 0;
  transform: rotate(90deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
  visibility: visible;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: 0.75s;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0.4s ease 0.4s;
}
.outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}
.outer-menu .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: 0.5em 1em;
  border-radius: 0 0.12em 0.12em 0;
  cursor: pointer;
  transition: box-shadow 0.4s ease;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #333;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .hamburger > div:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  transition: all 0.4s ease;
}
.outer-menu .hamburger > div:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  transition: all 0.4s ease;
  top: 10px;
}
.outer-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  backface-visibility: hidden;
  outline: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu > div {
  width: 300vw;
  height: 300vw;
  color: #fff;
  background: rgba(35, 35, 35, 0.9294117647);
  border-radius: 50%;
  transition: all 0.4s ease;
  flex: none;
  transform: scale(0);
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu > div > div > ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  max-height: 100vh;
}
.outer-menu .menu > div > div > ul > li {
  display: block;
  margin: 2em 0;
  padding: 0;
  line-height: 1.4;
}
.outer-menu .menu > div > div > ul > li > a {
  position: relative;
  display: block;
  cursor: pointer;
  transition: color 0.4s ease;
  color: #fff;
  font-size: 1.6rem;
}
.outer-menu .menu > div > div > ul > li > a span {
  display: block;
  font-size: 1rem;
  color: #FF9A00;
}
.outer-menu .menu > div > div > ul > li > a:hover:after {
  width: 100%;
}
.outer-menu .menu > div > div > ul > li > a:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -0.15em;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.4s ease;
}

/* navi
----------------------------------*/
#navi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-right: 1em;
}
#navi > li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translateY(-50%, -50%);
  width: 1px;
  height: 16px;
  background-color: #333;
  opacity: 0.5;
}
#navi > li:last-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translateY(-50%, -50%);
  width: 1px;
  height: 16px;
  background-color: #333;
  opacity: 0.5;
}
#navi > li a {
  color: #333;
  font-weight: 600;
  line-height: 1.2;
  padding: 0 12px;
}
#navi > li a:hover {
  color: #FF9A00;
}
#navi > li span {
  display: block;
  color: #FF9A00;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: none;
}

/* mega_menu
----------------------------------*/
.mega_parents:hover .mega_menu {
  opacity: 1;
  max-height: 9999px;
  padding: 20px 0;
}

.mega_menu {
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 10;
  width: 100%;
  max-height: 0;
  transition: all 0.1s ease;
}
.mega_menu .mega_inner {
  background-color: #FF9A00;
  margin-top: 32px;
  padding: 24px 0;
}

.mega_wrap {
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
}
.mega_wrap .ttl_area {
  width: 240px;
  padding-top: 40px;
  margin-right: auto;
}
.mega_wrap .ttl_area .ttl {
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
}
.mega_wrap .ttl_area .ttl span {
  font-size: 1.2rem;
  color: #fff !important;
}
.mega_wrap .menu_list {
  width: calc(100% - 260px);
  max-width: 1024px;
  margin-left: 20px;
  display: flex;
  flex-wrap: wrap;
}
.mega_wrap .menu_list li {
  width: calc(20% - 2px);
  max-width: 190px;
  margin: 0 1px 2px 1px;
}
.mega_wrap .menu_list li a {
  display: block;
}
.mega_wrap .menu_img {
  position: relative;
  overflow: hidden;
  height: 160px;
}
.mega_wrap .menu_img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  vertical-align: middle;
}
.mega_wrap .menu_btn {
  position: relative;
  background-color: #fff;
  color: #333;
  line-height: 1.3;
  padding: 20px 5px;
}
.mega_wrap .menu_btn:after {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 10px;
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  color: #FF9A00;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 55px;
  right: 10px;
  z-index: 5;
}
#page-top a {
  display: inline-block;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  text-decoration: none;
  color: #FF9A00;
  font-size: 1.4rem;
  line-height: 80px;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
#page-top a:before {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  left: 0;
  margin: auto;
  border-top: 1px solid #FF9A00;
  border-right: 1px solid #FF9A00;
  width: 15px;
  height: 15px;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* footer
----------------------------------*/
#footer {
  background: #1e1d1b;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 100px 100px 0 0;
}
#footer .inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 40px;
}
#footer .foot_contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#footer .foot_address {
  position: relative;
  width: 28%;
}
#footer .foot_link {
  width: 56%;
}
#footer .link_list {
  display: flex;
  flex-wrap: wrap;
  max-width: 550px;
  margin-left: auto;
  row-gap: 15px;
  margin-top: 60px;
}
#footer .link_list li {
  width: 25%;
}
#footer .link_list a {
  display: block;
  position: relative;
  padding-bottom: 8px;
  color: #fff;
}
#footer .link_list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#footer .link_list a:hover:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
#footer .link_list > li > a {
  font-weight: 600;
}
#footer .sub_link_list {
  margin-top: 15px;
  font-size: 1.3rem;
}
#footer .sub_link_list li {
  margin-top: 10px;
}
#footer .sub_link_list li a {
  position: relative;
  padding-left: 15px;
  color: rgba(255, 255, 255, 0.5);
}
#footer .sub_link_list li a:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 6 Free";
  content: "\f0da";
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
}
#footer .address {
  margin-bottom: 16px;
}
#footer .permission {
  font-size: 0.9em;
}
#footer .flogo {
  width: 320px;
  margin-bottom: 60px;
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}
#footer .copyright {
  margin-top: 80px;
  opacity: 0.6;
  font-size: 1rem;
}

/* contact_list
----------------------------------*/
.contact_list {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.contact_list li {
  width: 40%;
  margin: 0 2%;
}
.contact_list li a {
  display: block;
  padding: 0.8em 0;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 5em;
}
.contact_list li a:before {
  margin-right: 10px;
}
.contact_list li a.tel_btn {
  background: #fff;
  color: #FF9A00;
}
.contact_list li a.tel_btn:before {
  font-family: "Font Awesome 6 Free";
  content: "\f095";
  font-weight: 900;
}
.contact_list li a.mail_btn {
  background: #FF9A00;
  color: #fff;
}
.contact_list li a.mail_btn:before {
  font-family: "Font Awesome 6 Free";
  content: "\f0e0";
  font-weight: 900;
}

/* flex
----------------------------------*/
.flex {
  display: flex;
}

.jc-center {
  justify-content: center;
}

.flex-tate {
  flex-direction: column;
}

.ai-center {
  align-items: center;
}

/* sp_navi
----------------------------------*/
#sp_navi,
.humb-menu {
  display: none;
}

.sp_only {
  display: none;
}

/* slideshow
----------------------------------*/
#slideshow {
  position: relative;
  margin-top: 120px;
  margin-right: 40px;
  padding: 60px 0;
}
#slideshow::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 0;
  z-index: -1;
  width: 85%;
  height: 100%;
  background: url(../img/bg-05.png) no-repeat center bottom/100%;
  transform: scale(-1, 1);
}

.slide-wrap {
  overflow: hidden;
  position: relative;
  max-width: 60%;
  margin-left: auto;
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.slide-img video {
  width: 100%;
  border-radius: 20px;
}

.main_catch {
  position: absolute;
  font-size: 5rem;
  left: 2%;
  top: auto;
  bottom: 25%;
  z-index: 5;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
  line-height: 1.4;
}
.main_catch span {
  display: block;
}
.main_catch .eng {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  margin-top: 20px;
}
.main_catch .catch_txt {
  font-weight: 600;
  white-space: nowrap;
  color: #fefefe;
  text-shadow: 2px 3px 5px rgba(61, 61, 61, 0.4);
}

.scroll_down {
  position: absolute;
  bottom: 4%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff;
  padding-top: 60px;
}
.scroll_down span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
.scroll_down span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotateY(0) rotateZ(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateY(720deg) rotateZ(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotateY(0) rotateZ(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotateY(720deg) rotateZ(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
/* particles-js
----------------------------------*/
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#vanta {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* contact_btn
----------------------------------*/
.contact_btn li a,
.contact_btn li button {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0.5em 3em;
  border-radius: 5em;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
}
.contact_btn li a span,
.contact_btn li button span {
  position: relative;
}
.contact_btn li a:before,
.contact_btn li button:before {
  display: block;
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
}
.contact_btn li a:after,
.contact_btn li button:after {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.contact_btn li a:hover:before,
.contact_btn li button:hover:before {
  width: 100%;
}
.contact_btn li .contact_other {
  background-color: #FF9A00;
  color: #fff;
}
.contact_btn li .contact_other:before {
  background-color: rgb(229.5, 138.6, 0);
}
.contact_btn li .contact_mail {
  background-color: #ffd8a4;
  color: #fff;
}
.contact_btn li .contact_mail:before {
  background-color: rgb(255, 205.0714285714, 138.5);
}
.contact_btn li .contact_shop {
  background-color: #fff;
  border: 1px solid #FF9A00;
  color: #FF9A00;
}
.contact_btn li .contact_shop:before {
  background-color: rgb(242.25, 242.25, 242.25);
}
.contact_btn li .contact_w_01 {
  max-width: 340px;
  padding: 1em 3em;
}
.contact_btn li .contact_w_02 {
  margin: 30px auto 0;
}

/* contents
----------------------------------*/
.container {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 0;
}
.container--full {
  width: 100%;
  max-width: 100%;
}
.container--p0 {
  padding: 0;
}
.container--wide {
  max-width: 1500px;
}
.container--phalf {
  padding: 40px 0;
}
.container--top-only {
  padding-bottom: 0 !important;
}
.container--btm-only {
  padding-top: 0 !important;
}

.box {
  position: relative;
  z-index: 3;
  padding: 30px;
  border-radius: 20px;
}
.box--bd {
  border: 3px solid #FF9A00;
  background: #fefefe;
}
.box--bd2 {
  border: 1px solid #ffd8a4;
}
.box--bg1 {
  background: #ffd8a4;
}
.box--message {
  background-color: #FF9A00;
  color: #fff;
  padding: 1em 1.5em;
  position: relative;
  font-size: 1.7em;
  line-height: 1.6;
  margin: 0 auto 40px;
  text-align: center;
}
.box--message::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 12px 10px 0 10px;
  border-style: solid;
  border-color: #FF9A00 transparent transparent transparent;
}
.box--bwidth {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.box--small {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.box--small2 {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.box--small3 {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.box--center {
  display: inline-block;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 2em;
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contents-center {
  display: flex;
  justify-content: center;
}
.contents-center .inner {
  text-align: left;
  max-width: 800px;
  width: 100%;
}

/* slider
----------------------------------*/
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slider .slider-track {
  display: flex;
  gap: 40px;
  will-change: transform;
}
.slider .slider-track .slide {
  flex: 0 0 auto;
  width: 350px;
  height: 500px;
}
.slider .slider-track .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 200px;
}

/* bg
----------------------------------*/
.bg_01 {
  position: relative;
}
.bg_01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 56%;
  height: 72%;
  background-color: #fefefe;
}

.bg_02 {
  position: relative;
  overflow: hidden;
}
.bg_02::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -30px;
  width: 95%;
  height: 100%;
  background: url(../img/about-bg2.png) no-repeat left top/contain;
  z-index: -2;
  opacity: 0.2;
}

.bg_03 {
  position: relative;
}
.bg_03::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #1e1d1b;
  z-index: -2;
  opacity: 0.03;
}

.bg_04 {
  position: relative;
  z-index: 0;
  color: #fff;
  padding: 30px 24px 80px;
  margin-top: -250px;
  margin-bottom: -150px;
}
.bg_04::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FF9A00;
  z-index: -1;
  clip-path: polygon(50% 30%, 100% 0, 100% 70%, 50% 100%, 0 70%, 0 0);
}
.bg_04 .inner {
  text-align: center;
  padding: 180px 0 40px;
  font-size: 1.3em;
}
.bg_04 .inner span {
  display: block;
  margin-top: 20px;
  font-size: 2em;
  line-height: 1.3;
  font-weight: 600;
}

.bg_05 {
  position: relative;
}
.bg_05::before {
  content: "";
  position: absolute;
  top: -50px;
  right: 0;
  z-index: -1;
  width: 85%;
  height: 100%;
  background: url(../img/bg-05.png) no-repeat center top/100%;
}

.bg_contact {
  position: relative;
  color: #fff;
}
.bg_contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(.assets/img/bg_contact.jpg);
  background-repeat: no-repeat;
  background-position: center 24%;
  background-size: cover;
}

.p_kadomaru {
  padding: 5px 30px;
  border-radius: 50px;
  margin-right: 5px;
}

.bg-top-padding {
  padding-top: 140px;
}

/* column
----------------------------------*/
.half {
  display: flex;
  justify-content: space-between;
}
.half > .child {
  width: 50%;
}

.triple {
  display: flex;
  justify-content: space-between;
}
.triple .child {
  width: 33.3%;
}

.l-column {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 40px;
}
.l-column.col2 > li,
.l-column.col2 .col-item {
  width: 49%;
}
.l-column.col3 li,
.l-column.col3 .col-item {
  width: 32%;
}
.l-column.col4 li,
.l-column.col4 .col-item {
  width: 23%;
}
.l-column.col5 li,
.l-column.col5 .col-item {
  width: 19%;
}
.l-column.reverse {
  flex-direction: row-reverse;
}
.l-column.al-top {
  align-items: flex-start;
}
.l-column.jus-center {
  justify-content: center;
  gap: 20px;
}
.l-column.jus-center.col3 .col-item {
  width: calc((100% - 40px) / 3);
}
.l-column.al-stretch {
  align-items: stretch;
}
.l-column li.w100,
.l-column .col-item.w100 {
  width: 100%;
}
.l-column li.w70,
.l-column .col-item.w70 {
  width: 67%;
}
.l-column li.w30,
.l-column .col-item.w30 {
  width: 30%;
}
.l-column li.w60,
.l-column .col-item.w60 {
  width: 57%;
}
.l-column li.w40,
.l-column .col-item.w40 {
  width: 40%;
}

.flex {
  display: flex;
}
.flex--wrap {
  flex-wrap: wrap;
}
.flex--column {
  flex-direction: column;
}
.flex--center {
  align-items: center;
  justify-content: center;
}
.flex--end {
  justify-content: flex-end;
}
.flex--gap20 {
  gap: 20px;
}
.flex--gap40 {
  gap: 40px;
}

/* mtitle
----------------------------------*/
.mtitle_page {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
}
.mtitle_page span {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0em;
}

.mtitle_big {
  font-size: 10rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
  border-bottom: 1px solid #333333;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}
.mtitle_big span {
  display: block;
  color: #FF9A00;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}
.mtitle_big em {
  display: block;
  font-style: normal;
  font-size: 1.4rem;
}
.mtitle_big.white {
  border-bottom: 1px solid #fefefe;
}
.mtitle_big.white span {
  color: #fff;
}
.mtitle_big.white span::before {
  background-color: #fff;
}
.mtitle_big.no-border-bottom {
  border-bottom: none;
}

.mtitle_middle {
  position: relative;
  border-bottom: 3px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 5px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}
.mtitle_middle:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 3px;
  background-color: #FF9A00;
}
.mtitle_middle span {
  margin-left: 1em;
  color: #FF9A00;
  font-size: 1.2rem;
}

.mtitle_small {
  position: relative;
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 2rem;
  padding: 15px 30px;
  margin-bottom: 20px;
}
.mtitle_small:before {
  position: absolute;
  top: 15%;
  left: 8px;
  width: 6px;
  height: 70%;
  content: "";
  background: #FF9A00;
}

.mtitle {
  position: relative;
  margin-bottom: 24px;
  color: #FF9A00;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.mtitle_top {
  margin-bottom: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
}

.title_wrap {
  margin-bottom: 40px;
}

.title_sub {
  border-top: 1px solid #333;
  padding: 30px;
}

.title_subtxt {
  border-top: 1px solid #333;
  padding: 30px 0;
  line-height: 2.2;
}

.p_kadomaru {
  padding: 5px 30px;
  border-radius: 50px;
  margin-right: 5px;
}

.mtitle_point {
  margin-bottom: 16px;
  position: relative;
  color: #FF9A00;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}

.mtitle_news {
  margin-bottom: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mtitle_ribon {
  position: absolute;
  top: -25px;
  left: -10px;
  width: 100%;
}
.mtitle_ribon span {
  display: inline-block;
  background: #FF9A00;
  color: #fff;
  font-size: 1.8rem;
  padding: 10px 30px;
}
.mtitle_ribon:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent rgb(153, 92.4, 0) transparent transparent;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.mtitle_deco {
  margin-bottom: 30px;
  font-size: 10rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
  border-bottom: 1px solid #333333;
  position: relative;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
}
.mtitle_deco:before {
  position: absolute;
  content: "";
  background-color: #333;
  width: 15px;
  height: 1px;
  left: auto;
  right: -12px;
  top: auto;
  bottom: -6px;
  transform: rotate(45deg);
}
.mtitle_deco:after {
  position: absolute;
  content: "";
  background-color: #FF9A00;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  left: auto;
  right: -31px;
  top: auto;
  bottom: -35px;
  z-index: -1;
}
.mtitle_deco span {
  display: block;
  position: relative;
  color: #FF9A00;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}
.mtitle_deco.right {
  text-align: right;
}
.mtitle_deco.right:before {
  right: auto;
  left: -12px;
  transform: rotate(315deg);
}
.mtitle_deco.right:after {
  right: auto;
  left: -31px;
}

.mtitle_sub {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 40px;
}
.mtitle_sub.right {
  text-align: right;
}

.mtitle_balloon {
  font-size: 3.5rem;
  margin-bottom: 30px;
}
.mtitle_balloon span {
  position: relative;
  display: inline-block;
  padding-bottom: 24px;
  line-height: 1em;
  overflow: hidden;
  font-weight: 600;
}
.mtitle_balloon span:before, .mtitle_balloon span:after {
  content: "";
  display: block;
  border-bottom: 3px solid #333;
  position: absolute;
  width: 50%;
  bottom: 6px;
}
.mtitle_balloon span:before {
  left: -5px;
}
.mtitle_balloon span:after {
  right: -5px;
}
.mtitle_balloon span i {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}

.mtitle_foot {
  font-size: 1.5rem;
  font-weight: 600;
}

.mtitle_service {
  position: relative;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.read {
  position: relative;
  margin-bottom: 8px;
  padding-left: 56px;
  font-size: 1.8rem;
}
.read::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #ccc;
}

.mtitle_catch {
  margin-bottom: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.mtitle_logo {
  margin: 0 auto 40px;
  max-width: 240px;
}

.title01 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
  background: #4B4B4B;
  color: #fff;
  border-radius: 50px;
  padding: 5px 10px;
}

.title02 {
  font-size: 23px;
  font-weight: bold;
  margin: 1rem 0;
  text-align: center;
}
.title02.small {
  font-size: 20px;
}

.title03 {
  color: #333;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 25px;
  letter-spacing: 1px;
  font-size: 3.2rem;
  line-height: 1.6;
}
.title03.white {
  color: #fefefe;
}
.title03 span {
  font-size: 0.7rem;
  letter-spacing: 0;
  padding-left: 1.5rem;
}
@media screen and (max-width: 690px) {
  .title03 {
    font-size: 1.4rem;
  }
}

.title04 {
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-size: 2rem;
  line-height: 1.6;
}

/* btn
----------------------------------*/
.btn_common {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 40px;
  padding: 1em 2em;
  max-width: 220px;
  transition: 0.3s;
  font-weight: 600;
}
.btn_common::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: -2em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  transition: 0.3s;
}
.btn_common::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  width: 70px;
  height: 2px;
  transition: 0.3s;
}
.btn_common:hover::before, .btn_common:hover::after {
  right: -2.5em;
}

.btn_auto {
  margin: 40px auto 0;
}

.a_btn {
  background-color: #fff;
  border: 1px solid #FF9A00;
  color: #FF9A00;
}
.a_btn::before {
  background-color: #FF9A00;
}
.a_btn::after {
  background-color: #FF9A00;
}
.a_btn:hover {
  color: #FF9A00;
}

.b_btn {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.b_btn::before {
  background-color: #fff;
}
.b_btn::after {
  background-color: #fff;
}
.b_btn:hover {
  background-color: #fff;
  color: #333;
}
.b_btn:hover::before {
  background-color: #333;
}
.b_btn:hover::after {
  background-color: #333;
}

.c_btn {
  background-color: #fff;
  border: 1px solid #fff;
  color: #333;
}
.c_btn::before {
  background-color: #333;
}
.c_btn::after {
  background-color: #333;
}

.d_btn {
  background-color: #fff;
  border: 1px solid #FF9A00;
  color: #FF9A00;
}
.d_btn::before {
  background-color: #FF9A00;
}
.d_btn::after {
  background-color: #FF9A00;
}
.d_btn:hover {
  color: #FF9A00;
}

.btn_01 a {
  display: block;
  background: #FF9A00;
  color: #fff;
  padding: 10px 24px;
  border-radius: 90px;
  position: relative;
  text-align: center;
  max-width: 240px;
  margin: 40px auto 0;
}
.btn_01 a::after {
  content: "●";
  transition: all 0.5s ease;
  position: absolute;
  right: 2em;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7em;
}
.btn_01 a:hover {
  background: #4B4B4B;
}
.btn_01 a:hover::after {
  transform: translate(5px, -50%);
}
.btn_01.btn_left a {
  margin-left: 0;
}

.btn_02 {
  position: relative;
  color: #fefefe;
  font-weight: 500;
  transition: background-color 0.4s ease, color 0.4s ease;
  margin: 25px;
}
.btn_02 a {
  padding: 20px 25px;
  border-radius: 5px;
  height: 100%;
  width: 100%;
  color: #fefefe;
  border: 2px solid #FF9A00;
  background-color: #FF9A00;
}
.btn_02 a:hover {
  background-color: #fefefe;
  border: 2px solid #FF9A00;
  color: #FF9A00;
}
.btn_02.border {
  border: 2px solid #ccc;
}
.btn_02.margin_top {
  margin-top: 15px;
}
.btn_02.full_width {
  display: block;
  text-align: center;
}

.btn_v2 {
  display: block;
  max-width: 320px;
  min-width: 160px;
  margin: 32px auto 0;
}
.btn_v2 .inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  flex: 20%;
}
.btn_v2 .inner .button {
  position: relative;
  padding: 7% 0 0;
  width: 100%;
  height: 70px;
  background: rgba(255, 154, 0, 0.1);
  color: #333;
  text-align: center;
  align-items: center;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
}
.btn_v2 .inner .button .button_bnr .b-txt {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
}
.btn_v2 .inner .button .button_bnr .b-txt::before, .btn_v2 .inner .button .button_bnr .b-txt::after {
  content: "";
  position: absolute;
  background: #333;
}
.btn_v2 .inner .button .button_bnr .b-txt::before {
  top: 15px;
  right: 20px;
  height: 1px;
  width: 42px;
}
.btn_v2 .inner .button .button_bnr .b-txt::after {
  top: 11px;
  right: 19px;
  height: 1px;
  width: 10px;
  transform: rotate(45deg);
}
.btn_v2 .inner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #FF9A00;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
.btn_v2 .inner:hover::before {
  background: rgba(255, 154, 0, 0.3);
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.btn_v2 .inner .border,
.btn_v2 .inner .border2 {
  position: absolute;
  background: none;
  transition: all 0.5s ease-in-out;
}
.btn_v2 .inner .border {
  top: 0;
  left: 0;
  border-left: 1px solid #FF9A00;
  border-top: 1px solid #FF9A00;
  width: 30px;
  height: 30px;
}
.btn_v2 .inner .border2 {
  bottom: 0;
  right: 0;
  border-right: 1px solid #FF9A00;
  border-bottom: 1px solid #FF9A00;
  width: 30px;
  height: 30px;
}
.btn_v2 .inner:hover .border, .btn_v2 .inner:hover .border2 {
  width: 100%;
  height: 100%;
}

.product_btn {
  position: relative;
  display: block;
  background-color: #fff;
  margin-top: 24px;
  padding: 8px;
  max-width: 270px;
  color: #FF9A00;
  border: 1px solid #FF9A00;
  border-radius: 3em;
  text-align: center;
}
.product_btn::after {
  position: absolute;
  top: 50%;
  right: 4%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
}
.product_btn:hover {
  background-color: #FF9A00;
  color: #fff;
}
.product_btn.product_btn_typeB {
  border: 1px solid #fff;
}
.product_btn.product_btn_typeB:hover {
  background-color: transparent;
  color: #fff;
}
.product_btn.product_btn_auto {
  margin: 24px auto 0;
}

.catalog_list {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-bottom: -1%;
}
.catalog_list > li {
  width: 31.3%;
  margin: 0 3% 1% 0;
}
.catalog_list > li:nth-child(3n) {
  margin: 0 0 1% 0;
}
.catalog_list > li a {
  position: relative;
  display: block;
  background-color: #fff;
  padding: 8px;
  color: #FF9A00;
  font-size: 0.9em;
  border: 1px solid #FF9A00;
  text-align: center;
}
.catalog_list > li a::after {
  position: absolute;
  top: 50%;
  right: 4%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
}
.catalog_list > li a:hover {
  background-color: #FF9A00;
  color: #fff;
}

.link-news {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 50px;
}
.link-news .link {
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1;
  color: #FF9A00;
  padding-right: 30px;
}
.link-news:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #FF9A00;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
.link-news:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 50%;
  right: 10px;
  border-top: 1px solid #FF9A00;
  border-right: 1px solid #FF9A00;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.link-news:hover:before {
  background: #FF9A00;
}
.link-news:hover:after {
  border-color: #fff !important;
}

/* news
----------------------------------*/
.news-bl dt {
  float: left;
  width: 7em;
  margin-bottom: 10px;
  text-align: center;
}
.news-bl dd {
  padding: 0 0 10px 9em;
  border-bottom: 1px dotted #ccc;
  margin: 0 0 10px;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}

.news_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news_box .news_title {
  width: 20%;
}
.news_box .news_list,
.news_box .news_contents {
  width: 76%;
}

.news_list li {
  border-bottom: 1px solid #ccc;
}
.news_list li:first-child {
  border-top: 1px solid #ccc;
}
.news_list li a,
.news_list li .news_link {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 3em 1em;
  color: #333;
  transition: all 0.3s ease;
}
.news_list li a:hover,
.news_list li .news_link:hover {
  background-color: #fefefe;
}
.news_list li .news_date {
  margin-right: 20px;
  font-size: 1.2rem;
}
.news_list li .news_category {
  background: #fff;
  border: 1px solid #FF9A00;
  color: #FF9A00;
  padding: 5px;
  margin-right: 30px;
  min-width: 140px;
  text-align: center;
}

.news_time_date {
  width: 80px;
  color: #FF9A00;
  font-size: 1.4rem;
  padding-top: 1px;
}

.top_news_wrap {
  position: absolute;
  width: 70%;
  left: 0;
  top: -50px;
  z-index: 5;
  padding: 40px 70px;
  background-color: #fefefe;
  border-radius: 0 130px 0 0;
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
  background-color: #fff;
  color: #333;
}
.tbl th,
.tbl td {
  vertical-align: middle;
  padding: 15px;
  border: 1px solid #ccc;
}
.tbl th {
  background-color: #fefefe;
  font-weight: 600;
}

.tbl_new {
  width: 100%;
  border-top: 1px dotted #ccc;
}
.tbl_new th,
.tbl_new td {
  vertical-align: middle;
  padding: 10px;
  border-bottom: 1px dotted #ccc;
  word-break: break-all;
}
.tbl_new th {
  text-align: left;
  font-weight: 500;
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.company th,
.company td {
  padding: 10px;
  vertical-align: middle;
}
.company th {
  text-align: left;
  width: 25%;
  position: relative;
  background: #FF9A00;
  color: #fff;
  font-weight: 600;
}
.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #fcfcfc;
  border-width: 10px;
  border-left-color: #FF9A00;
  margin-top: -10px;
}
.company td {
  background: #fcfcfc;
  padding-left: 20px;
}

.tbl_company {
  width: 100%;
  font-size: 1.4rem;
}
.tbl_company th,
.tbl_company td {
  padding: 16px;
  vertical-align: middle;
}
.tbl_company th {
  border-bottom: 1px solid #FF9A00;
  font-weight: 500;
  text-align: left;
}
.tbl_company td {
  border-bottom: 1px solid #dcdcdc;
  line-height: 1.8em;
}

.tbl_fee {
  width: 100%;
  border-top: 1px dotted #ccc;
}
.tbl_fee th,
.tbl_fee td {
  vertical-align: middle;
  padding: 10px;
  border-bottom: 1px dotted #ccc;
  word-break: break-all;
}
.tbl_fee th {
  text-align: left;
  font-weight: 500;
}
.tbl_fee td {
  text-align: right;
}

.cell_01 {
  width: 25%;
}

.cell_02 {
  width: 35%;
}

.cell_03 {
  width: 20%;
}

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 10px;
  padding-left: 1rem;
  margin-bottom: 10px;
  border-bottom: 1px dotted #ddd;
}

.list_half {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
.list_half li {
  width: 50%;
}

.check_img {
  margin-right: 5px;
  width: 30px;
}

.list_check li {
  position: relative;
  padding: 4px 0 5px 2em;
}
.list_check li:before {
  position: absolute;
  top: 0;
  left: 1.5em;
  font-family: "Font Awesome 6 Free";
  content: "\f058";
  font-weight: 900;
  margin: 0 5px 0 -1.5em;
  padding: 1px;
  color: #FF9A00;
  font-size: 1.3em;
}

.list_note li {
  margin-bottom: 5px;
  padding-left: 1.5em;
}
.list_note li:last-child {
  margin-bottom: 0;
}
.list_note li:before {
  content: "※";
  margin: 0 5px 0 -1.5em;
  color: #ff0000;
}

.list_disc > li {
  margin-bottom: 5px;
  padding-left: 1.5em;
}
.list_disc > li:last-child {
  margin-bottom: 0;
}
.list_disc > li:before {
  content: "・";
  margin: 0 5px 0 -1em;
  color: #FF9A00;
}

.list_line li {
  position: relative;
  display: inline-block;
  padding-right: 10px;
}
.list_line li:after {
  position: absolute;
  right: 0;
  content: "/";
}
.list_line li:last-child:after {
  display: none;
}

.list_macker {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  text-align: center;
  font-size: 1.1em;
  font-weight: bold;
}
.list_macker li {
  width: 18.4%;
  margin: 0 2% 1% 0;
}
.list_macker li:nth-child(5n) {
  margin: 0 0 1% 0;
}

.rounded-list {
  counter-reset: li;
  padding-left: 1em;
  list-style: none;
}
.rounded-list li {
  position: relative;
  padding: 0.4em 0.4em 0.4em 2em;
  margin: 0.5em 0;
  background: #fafafa;
  border-radius: 0.3em;
  transition: all 0.3s ease-out;
  box-sizing: border-box;
}
.rounded-list li:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: -1.3em;
  top: 50%;
  margin-top: -1.3em;
  background: #FF9A00;
  color: #fff;
  height: 3em;
  width: 3em;
  line-height: 2.4em;
  border: 0.3em solid #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 2em;
  transition: all 0.3s ease-out;
}

.drop_down {
  position: relative;
  cursor: pointer;
  padding-left: 15px;
}
.drop_down:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  color: #FF9A00;
}

.list_child {
  display: none;
  margin-bottom: 15px;
}
.list_child li:before {
  content: "・";
  margin: 0 5px 0 -1em;
  color: #FF9A00;
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ggmap.ggmap_02 {
  padding-bottom: 20.25%;
}

.ggcalendar {
  position: relative;
  padding-bottom: 76.25%;
  height: 0;
  overflow: hidden;
}
.ggcalendar iframe,
.ggcalendar object,
.ggcalendar embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe[style] {
  width: 100% !important;
}

.youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.youtube iframe,
.youtube object,
.youtube embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* article
----------------------------------*/
.article {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #fefefe;
}
.article .article_image {
  width: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.article .article_detail {
  width: 50%;
  box-sizing: border-box;
  padding: 60px 0;
}
.article .article_detail .inner {
  margin: 0 auto;
  width: 70%;
}
.article.article_b {
  margin-bottom: 60px;
}
.article.article_white {
  background-color: #fff;
}
.article.article_01 .article_image {
  background-image: url(.assets/img/bnr_v2_image_01.jpg);
}
.article.article_02 .article_image {
  background-image: url(.assets/img/product/pickup_02.jpg);
}
.article.article_03 .article_image {
  background-image: url(.assets/img/article_03.jpg);
}
.article.article_04 .article_image {
  background-image: url(.assets/img/article_04.jpg);
}
.article.article_05 .article_image {
  background-image: url(.assets/img/article_05.jpg);
}
.article.article_06 .article_image {
  background-image: url(.assets/img/article_06.jpg);
}
.article.article_07 .article_image {
  background-image: url(.assets/img/article_07.jpg);
}
.article.article_08 .article_image {
  background-image: url(.assets/img/article_08.jpg);
}
.article.article_09 .article_image {
  background-image: url(.assets/img/article_09.jpg);
}
.article.article_10 .article_image {
  background-image: url(.assets/img/article_10.jpg);
}
.article.article_11 .article_image {
  background-image: url(.assets/img/article_11.jpg);
}

/* top_blog
----------------------------------*/
.top_blog {
  display: block;
  position: relative;
  color: #333;
}
.top_blog:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  background-color: #FF9A00;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top_blog:hover {
  color: #333;
}
.top_blog:hover:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.top_blog .inner {
  background-color: #fff;
  padding: 24px 24px 64px;
}

.date {
  display: inline-block;
  color: #fefefe;
  padding: 0 5px;
  background: #4B4B4B;
  font-size: 1.2rem;
  text-align: right;
}

.categori {
  display: inline-block;
  color: #fefefe;
  padding: 0 15px;
  margin-left: 1rem;
  border-radius: 50px;
  font-weight: 400;
  background: #0066cc;
  font-size: 1.2rem;
  text-align: right;
}

.date_entry {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 500;
}

.top_blog_title {
  margin: 8px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}

.top_blog_txt {
  font-size: 1.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.more {
  position: absolute;
  bottom: 16px;
  right: 16px;
  color: #FF9A00;
  font-size: 1.2rem;
}
.more::after {
  margin-left: 0.5em;
  font-family: "Font Awesome 6 Free";
  content: "\f0da";
  font-weight: 900;
}

.top_blog_category {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 2;
  padding: 0.2em 2em;
  background-color: #fff;
  border: 1px solid #FF9A00;
  border-radius: 5em;
  color: #FF9A00;
  text-align: center;
}

.blog_topics li a {
  position: relative;
  display: block;
  padding: 16px;
  color: #333;
  border-bottom: 1px dotted #ccc;
}
.blog_topics li a:hover {
  background-color: #fefefe;
}
.blog_topics li a .topics_detail {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
}
.blog_topics li a .topics_detail .image {
  width: 16%;
}
.blog_topics li a .topics_detail .text {
  width: 80%;
  margin-left: 10px;
}
.blog_topics li a .time_date {
  width: 80px;
  color: #FF9A00;
  font-size: 1.2rem;
}

.btn_news {
  display: block;
  padding: 0.5em 2em;
  background-color: #fff;
  border: 1px solid #FF9A00;
  color: #FF9A00;
  text-align: center;
}
.btn_news::after {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  margin-left: 1em;
}
.btn_news:hover {
  background-color: #FF9A00;
  color: #fff;
}

/* blog
----------------------------------*/
.blog_contents {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.blog_contents .blog_main {
  width: 80%;
}
.blog_contents .blog_side {
  width: 30%;
  background-color: #fafafa;
  padding: 30px;
}

.category_nav li {
  border-bottom: 1px dotted #ccc;
}
.category_nav li a {
  display: block;
  padding: 10px 15px;
}
.category_nav li a:before {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  margin-right: 5px;
  margin-right: 5px;
  color: #FF9A00;
}
.category_nav li a:hover {
  background-color: #fff;
}
.category_nav li a:hover::before {
  color: #ffd8a4;
}
.category_nav li:last-child a {
  border-bottom: none;
}

.blog_title {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 600;
}
.blog_title:before {
  margin-right: 5px;
  color: #FF9A00;
}
.blog_title.archive:before {
  font-family: "Font Awesome 6 Free";
  content: "\f187";
  font-weight: 900;
}
.blog_title.new:before {
  font-family: "Font Awesome 6 Free";
  content: "\f044";
  font-weight: 900;
}

.blog_article {
  padding: 0 30px 50px;
  background-color: #fff;
  margin-bottom: 50px;
}
.blog_article:last-child {
  margin-bottom: 0;
}

.blog_new {
  border-bottom: 1px dotted #FF9A00;
}
.blog_new:last-child {
  border-bottom: none;
}
.blog_new a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 10px;
}
.blog_new a .image {
  width: 40%;
}
.blog_new a .detail {
  width: 50%;
}
.blog_new a .detail .entry_title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pages {
  overflow: hidden;
  margin-top: 50px;
}
.pages .page_next,
.pages .page_prev {
  display: inline-block;
}
.pages .page_next a,
.pages .page_prev a {
  display: block;
  padding: 10px 20px;
  background-color: #fff;
}
.pages .page_next {
  float: left;
}
.pages .page_prev {
  float: right;
}

/* gallery
----------------------------------*/
.gallery_ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
.gallery_ul a {
  display: block;
  position: relative;
  overflow: hidden;
  height: 240px;
}
.gallery_ul a img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  vertical-align: middle;
}
.ie .gallery_ul a img {
  position: absolute;
  width: auto;
  height: auto;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
}
.gallery_ul span {
  display: block;
  margin-top: 5px;
  text-align: center;
}
.gallery_ul.gallery_ul_01 li {
  width: 31.3%;
  margin: 0 3% 3% 0;
}
.gallery_ul.gallery_ul_01 li:nth-child(3n) {
  margin: 0 0 3% 0;
}
.gallery_ul.gallery_ul_02 li {
  width: 22.7%;
  margin: 0 3% 3% 0;
}
.gallery_ul.gallery_ul_02 li:nth-child(4n) {
  margin: 0 0 3% 0;
}
.gallery_ul.gallery_ul_03 li {
  width: 48.5%;
  margin: 0 3% 3% 0;
}
.gallery_ul.gallery_ul_03 li:nth-child(2n) {
  margin: 0 0 3% 0;
}
.gallery_ul.gallery_ul_04 li {
  width: 100%;
  margin: 0 0 3%;
}
.gallery_ul.gallery_small li a {
  height: 208px;
}

/* sns_list
----------------------------------*/
.sns_list {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-top: 30px;
}
.sns_list li {
  width: 24%;
  margin-right: 1.2%;
}
.sns_list li:last-child {
  margin: 0;
}

.sns_btn {
  overflow: hidden;
  color: #fff;
  position: relative;
  display: block;
  border-radius: 100px;
  height: 60px;
  text-align: center;
  line-height: 60px;
}
.sns_btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sns_btn i {
  font-size: 2rem;
  position: relative;
  top: 3px;
  margin-right: 10px;
}
.sns_btn span {
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.sns_btn:hover {
  color: #fff;
}
.sns_btn:hover span {
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}

.facebook_btn {
  background: #4267b2;
}

.insta_btn {
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.insta_btn:before {
  background: -webkit-linear-gradient(15deg, #ffdb2c, #f9764c 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, #f9764c 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.line_btn {
  background: #00b82b;
}

.twitter_btn {
  background: #55acee;
}

.sns li {
  display: inline-block;
  margin: 0 10px;
}
.sns li a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
}
.sns li a.instagram {
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.sns li a.facebook {
  background: #4267b2;
}
.sns li a.line {
  background: #00b82b;
}

/* page_bnr
----------------------------------*/
.page_bnr {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-bottom: -2%;
}
.page_bnr li {
  margin: 0 2% 2% 0;
}
.page_bnr li a {
  display: block;
  color: #333;
  border: 1px solid #ddd;
  background-color: #fff;
  padding: 10px;
}
.page_bnr li a:hover {
  color: #FF9A00;
}
.page_bnr li a:before {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  margin-right: 10px;
  color: #FF9A00;
}
.page_bnr.page_bnr_01 li {
  width: 49%;
}
.page_bnr.page_bnr_01 li:nth-child(2n) {
  margin: 0 0 2% 0;
}
.page_bnr.page_bnr_02 li {
  width: 32%;
}
.page_bnr.page_bnr_02 li:nth-child(3n) {
  margin: 0 0 2% 0;
}

/* flex_type
----------------------------------*/
.flex_type {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex_type_01 .flex_image {
  width: 32%;
}
.flex_type_01 .flex_detail {
  width: 64%;
}

.flex_type_02 .flex_image {
  width: 24%;
}
.flex_type_02 .flex_detail {
  width: 72%;
}

.flex_type_03 .flex_image {
  width: 12%;
}
.flex_type_03 .flex_detail {
  width: 87%;
}

.order {
  order: 2;
}

/* faq
----------------------------------*/
.faq {
  border-bottom: 0.1rem solid #e1e0e0;
}
.faq:first-child {
  border-top: 0.1rem solid #e1e0e0;
}
.faq.active {
  background-color: #fefefe;
}
.faq.active dt::after {
  content: "－";
}
.faq dt {
  position: relative;
  padding: 4rem 0 4rem 7.6rem;
  cursor: pointer;
  transition: all 0.5s ease;
}
.faq dt::before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 2.4rem;
  color: #cac9c9;
  width: 1.6rem;
}
.faq dt::after {
  content: "＋";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 3.2rem;
  color: #FF9A00;
  text-align: center;
}
.faq dt:hover {
  background-color: #fefefe;
}
.faq dd {
  position: relative;
  display: none;
  padding-left: 7.6rem;
  padding-bottom: 4rem;
}

.voice_faq {
  padding-top: 20px;
}
.voice_faq dl dt {
  position: relative;
  border-top: solid 1px #ddd;
  padding: 10px 0 25px 72px;
  font-size: 1.8rem;
  font-weight: 600;
}
.voice_faq dl dt span {
  position: absolute;
  left: 0;
  top: -20px;
  display: block;
  width: 56px;
  line-height: 56px;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  background: #FF9A00;
  font-weight: 100;
  letter-spacing: 0.05rem;
}
.voice_faq dl dd {
  position: relative;
  padding: 0 40px 45px 72px;
}
.voice_faq dl dd span {
  position: absolute;
  left: 15px;
  top: -10px;
  display: block;
  color: #ffd8a4;
  font-size: 2rem;
  font-weight: 100;
  letter-spacing: 0.05rem;
}

/* flow
----------------------------------*/
.flow {
  padding-left: 80px;
  position: relative;
}
.flow::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #fff;
  margin-left: -8px;
  display: block;
  position: absolute;
  top: 0;
  left: 110px;
}
.flow > li {
  position: relative;
}
.flow > li:not(:last-child) {
  margin-bottom: 5vh;
}
.flow > li .icon {
  font-size: 12px;
  color: #fff;
  background-color: #FF9A00;
  padding: 8px 20px;
  display: block;
  position: absolute;
  top: 0;
  left: -80px;
  z-index: 2;
}
.flow > li .icon::after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #FF9A00;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.flow > li dl {
  padding-left: 80px;
  position: relative;
}
.flow > li dl::before, .flow > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 17px;
}
.flow > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #FF9A00;
  border-radius: 50%;
  left: 26px;
}
.flow > li dl::after {
  width: 32px;
  border-bottom: 1px dashed #FF9A00;
  position: absolute;
  left: 32px;
}
.flow > li dl dt {
  font-size: 1.8rem;
  font-weight: 600;
  color: #FF9A00;
  margin-bottom: 1vh;
}

/* belongs
----------------------------------*/
.belongs {
  position: relative;
  background: #fff;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
  width: 90%;
  margin: -30px auto 0;
}

/* vertical_image
----------------------------------*/
.common_image {
  position: relative;
  overflow: hidden;
}
.common_image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

.vertical_image {
  height: 360px;
}

.top_image {
  height: 280px;
}

.point_image {
  height: 400px;
}

.orijinal_image {
  height: 480px;
  max-width: 400px;
  margin: 64px auto 0;
}

.merit_icon {
  display: block;
  width: 40px;
  margin: 0 auto 16px;
}

/* about_box
----------------------------------*/
.about_box {
  position: relative;
  align-items: stretch;
  background-color: #fff;
  box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
}
.about_box .inner {
  position: relative;
  padding: 48px 24px 72px;
  color: #333;
}

/* new_bnr
----------------------------------*/
.new_bnr {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.new_bnr li {
  position: relative;
  overflow: hidden;
  width: 48.5%;
  height: 240px;
  box-sizing: border-box;
}
.new_bnr li .bg {
  position: absolute;
  z-index: 1;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 240px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 3s ease-out;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  will-change: transform;
}
.new_bnr li .bg.bg_new_01 {
  background-image: url(.assets/img/bg_new_01.jpg);
}
.new_bnr li .bg.bg_new_02 {
  background-image: url(.assets/img/bg_new_02.jpg);
}
.new_bnr li .bg.bg_new_03 {
  background-image: url(.assets/img/bg_new_03.jpg);
}
.new_bnr li .bg.bg_new_04 {
  background-image: url(.assets/img/bg_new_04.jpg);
}
.new_bnr li a {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: block;
}
.new_bnr li .text {
  position: absolute;
  z-index: 3;
  bottom: 50px;
  left: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
}
.new_bnr li .text span {
  display: block;
  font-size: 1.2rem;
}
.new_bnr li .btn {
  position: absolute;
  bottom: 58px;
  right: 50px;
  z-index: 1;
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.12s ease-in 0s;
}
.new_bnr li .btn:before {
  position: absolute;
  z-index: 2;
  display: block;
  content: "";
  top: 25px;
  left: 24px;
  width: 6.5px;
  height: 6.5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.12s ease-in 0s;
}
.new_bnr li:hover .bg {
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.95);
}
.new_bnr li:hover .btn {
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  background-color: #FF9A00;
  border: 1px solid #FF9A00;
}
.new_bnr li:hover .btn:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.img_shadow {
  position: relative;
  transition: all 0.5s ease-in 0s;
}
.img_shadow:after {
  position: absolute;
  z-index: 2;
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, black 100%);
  opacity: 0.65;
  transition: all 0.5s ease-in 0s;
}
.img_shadow:hover :after {
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, black 100%);
  opacity: 0.85;
}

/* trouble
----------------------------------*/
.trouble li {
  position: relative;
  padding-bottom: 15px;
  padding-left: 3rem;
  margin-bottom: 15px;
  border-bottom: 1px dotted #bbb;
}
.trouble li:before {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(.assets/img/icon_trouble.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
}

/* contact_v2
----------------------------------*/
.contact_box_v2 {
  position: relative;
}
.contact_box_v2::before {
  content: "";
  position: absolute;
  top: -22%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 768px;
  height: 100%;
  background-image: url(.assets/img/bg_contact.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

.contact_v2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.contact_v2 .telephone,
.contact_v2 .mail_v2 {
  width: 48.5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.contact_v2 .telephone .title,
.contact_v2 .mail_v2 .title {
  width: 24%;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
.contact_v2 .telephone .title span,
.contact_v2 .mail_v2 .title span {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
}
.contact_v2 .telephone .content,
.contact_v2 .mail_v2 .content {
  width: 74%;
  padding-left: 7%;
  border-left: 2px solid #ffd8a4;
}
.contact_v2 .phone a {
  color: #333;
  font-size: 4rem;
  font-weight: 600;
}
.contact_v2 .auxiliary {
  font-size: 1.3rem;
}
.contact_v2 .mail_btn_v2 a {
  position: relative;
  display: block;
  background-color: #fff;
  padding: 2em 3em;
  color: #333;
  font-size: 1.6rem;
  font-weight: 600;
}
.contact_v2 .mail_btn_v2 a::after {
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  content: "\f0e0";
  font-weight: 900;
}
.contact_v2 .mail_btn_v2 a:hover {
  background-color: #ffd8a4;
  color: #fff;
}

/* story_list
----------------------------------*/
.story_list {
  list-style: none;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
.story_list li {
  position: relative;
  width: 22.7%;
  margin-right: 3%;
  overflow: hidden;
  line-height: 1;
}
.story_list li:last-child {
  margin-right: 0;
}
.story_list li:before {
  content: "";
  display: block;
  padding-top: 91%;
}
.story_list li p {
  display: none;
}
.story_list li a {
  display: block;
  color: #fff;
  text-decoration: none;
  height: 100%;
}
.story_list li a:hover .num i:after {
  left: 100%;
}
.story_list li a:hover .num i:before {
  left: 0;
}
.story_list li a:hover .img span {
  width: 100%;
}
.story_list li a:hover .profile {
  right: 0;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: all 250ms 250ms ease-in;
}
.story_list .num {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 17px;
  width: 16.7%;
  font-size: 1.8rem;
}
.story_list .num span {
  position: relative;
  left: 0;
  color: #FF9A00;
}
.story_list .num i {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 20px;
  overflow: hidden;
}
.story_list .num i:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #FF9A00;
  left: -100%;
  top: 0;
  transition: all 0.2s ease 0.3s;
}
.story_list .num i:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #FF9A00;
  left: 0;
  top: 0;
  transition: all 0.2s ease 0s;
}
.story_list .list,
.story_list .pr {
  height: 100%;
}
.story_list .img {
  width: 91%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  z-index: 2;
}
.story_list .img span {
  width: 0%;
  height: 100%;
  display: block;
  position: relative;
  transition: all 300ms 0s ease-in;
}
.story_list .img span:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 150ms 0s ease-in;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #ffd8a4), color-stop(80%, #FF9A00));
  background: linear-gradient(90deg, #ffd8a4 20%, #FF9A00 80%);
  opacity: 0.8;
  filter: alpha(opacity=80);
  background-size: cover;
}
.story_list .profile {
  position: absolute;
  bottom: 45%;
  width: 91%;
  text-align: center;
  transition: all 200ms 0ms ease-in;
  opacity: 0;
  filter: alpha(opacity=0);
  right: 0;
  z-index: 2;
}
.story_list .profile .name {
  font-size: 2.4rem;
}

.story_list_01 .img {
  background-image: url(https://placehold.jp/640x480.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.story_list_02 .img {
  background-image: url(https://placehold.jp/640x480.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.story_list_03 .img {
  background-image: url(.assets/img/recruit_06.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.story_list_04 .img {
  background-image: url(https://placehold.jp/640x480.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* flow_v2
----------------------------------*/
.flow_v2 {
  padding-left: 0;
}
.flow_v2 > li {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  padding-bottom: 80px;
  background-image: url(.assets/img/flow_arrow.png);
  background-repeat: no-repeat;
  background-position: center bottom 40px;
}
.flow_v2 > li:last-child {
  background: none;
}
.flow_v2 figure {
  position: absolute;
  left: 52%;
  top: 72px;
  width: 550px;
}

.process {
  display: flex;
  align-items: center;
  background: #fff;
  width: 58%;
  min-height: 524px;
}
.process .box {
  max-width: 500px;
  margin-right: 20%;
  margin: 4em auto;
}

.application {
  display: block;
  margin-bottom: 20px;
  text-align: center;
}

.application_title {
  margin-bottom: 8px;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
}

.flow_num {
  color: #ccc;
  text-transform: uppercase;
  font-weight: 600;
}
.flow_num span {
  margin-left: 0.1em;
  font-size: 2em;
}

/* accordion
----------------------------------*/
.accordion {
  position: relative;
  cursor: pointer;
  padding-top: 48px;
}
.accordion::after {
  content: "＋";
  position: absolute;
  bottom: -10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 1.4rem;
  line-height: 30px;
  color: #fff;
  background: #FF9A00;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
}
.accordion.active::after {
  content: "－";
}

.accordion_contents {
  display: none;
}

/* parallax
----------------------------------*/
.parallax {
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 50vh;
}

.parallax_01 {
  background-image: url(.assets/img/19.jpg);
}

.parallax_02 {
  background-image: url(.assets/img/parallax_02.jpg);
}

.parallax_txt {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.parallax_txt span {
  display: block;
  padding-left: 15%;
  animation: animate-banner 20s linear infinite;
  user-select: none;
  font-size: 24rem;
  font-weight: 600;
  color: #ffd8a4;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.05;
}

@keyframes animate-banner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-115%);
  }
}
.parallax-section {
  background-image: url(".assets/img/26.webp");
  min-height: 600px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: white;
  overflow: hidden;
}
.parallax-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.parallax-section .parallax-content {
  position: relative;
  z-index: 1;
}

/* iOS対策：fixedを解除して scroll に */
@supports (-webkit-touch-callout: none) {
  .parallax-section {
    background-attachment: scroll;
  }
}
/* mask
----------------------------------*/
.mask {
  position: relative;
  -webkit-clip-path: circle(0%);
  clip-path: circle(0%);
  -webkit-transition: 1.6s ease-in all;
  transition: 1.6s ease-in all;
}
.mask.on {
  -webkit-clip-path: circle(120%);
  clip-path: circle(120%);
}

/* restaurant
----------------------------------*/
.restaurant {
  position: relative;
  overflow: hidden;
}
.restaurant a {
  display: block;
  position: relative;
  background-image: url(.assets/img/affiliated.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 6em;
  color: #ffd8a4;
}
.restaurant a:hover .arrow {
  right: 24px;
}
.restaurant .inner {
  position: relative;
  background-color: #fff;
  color: #ffd8a4;
  padding: 48px 48px 80px;
  max-width: 560px;
}
.restaurant .arrow {
  position: absolute;
  right: 32px;
  bottom: 36px;
  width: 50px;
  height: 8px;
  transition: 0.4s ease-out;
}
.restaurant .arrow::before, .restaurant .arrow::after {
  content: "";
  position: absolute;
  background-color: #FF9A00;
}
.restaurant .arrow::before {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
}
.restaurant .arrow::after {
  right: 2px;
  bottom: -1px;
  width: 1px;
  height: 10px;
  transform: rotate(-45deg);
  transform-origin: right;
}

/* greet_block
----------------------------------*/
.greet_block {
  position: relative;
  margin: 60px 0 160px;
}

.greet_img {
  overflow: hidden;
  position: absolute;
  top: -15%;
  width: 60%;
  height: 130%;
  left: auto;
  right: 0;
}
.greet_img img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

.greet_txt {
  position: relative;
  z-index: 3;
  width: 55%;
  max-width: 770px;
  margin-right: 3em;
  padding: 56px;
  margin-right: auto;
}

.greet_title {
  margin-bottom: 24px;
  color: #333;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.type_b .greet_img {
  right: 0;
}
.type_b .greet_txt {
  margin-right: 0;
  margin-left: 160px;
}

/* roll
----------------------------------*/
.roll {
  position: absolute;
  right: 0;
  bottom: -16%;
  z-index: -1;
  width: 200px;
  height: 200px;
  animation: 16s linear infinite rotation1;
}
.roll::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-image: url(.assets/img/roll.png);
  background-repeat: no-repeat;
  background-position: center;
}

@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* medical
----------------------------------*/
.medical {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.medical .child {
  width: 22.7%;
  margin: 0 3% 3% 0;
  padding: 0 3% 3% 0;
  border-right: 1px solid #ccc;
}
.medical .child:nth-child(4n) {
  margin: 0 0 3% 0;
  padding-right: 0;
  border-right: none;
}

.medical_title {
  background-color: #fff;
  color: #FF9A00;
  border: 1px solid #FF9A00;
  border-radius: 5em;
  margin-bottom: 24px;
  padding: 0.5em;
  text-align: center;
  font-size: 1.8rem;
}

/* phone_txt
----------------------------------*/
.phone_txt {
  line-height: 1.2;
}
.phone_txt a {
  position: relative;
  font-size: 4rem;
  font-weight: 600;
}
.phone_txt a:before {
  font-family: "Font Awesome 6 Free";
  content: "\f095";
  font-weight: 900;
  margin-right: 0.2em;
}
.phone_txt span {
  margin-left: 0.5em;
  text-align: center;
  font-size: 1.2rem;
}

/* contact_area
----------------------------------*/
.contact_area_title {
  margin-bottom: 32px;
  font-size: 2.4rem;
  font-weight: 600;
}
.contact_area_title span {
  margin-left: 1em;
  font-size: 1.6rem;
}

.contact_area {
  display: flex;
  justify-content: space-between;
}
.contact_area .detail {
  width: 56%;
}
.contact_area .txt {
  margin-bottom: 32px;
  font-size: 1.1em;
  letter-spacing: 0.1em;
}
.contact_area .contact_phone {
  line-height: 1.2;
}
.contact_area .contact_phone a {
  position: relative;
  color: #fff;
  font-size: 4rem;
  font-weight: 600;
}
.contact_area .contact_phone a:before {
  font-family: "Font Awesome 6 Free";
  content: "\f095";
  font-weight: 900;
  margin-right: 5px;
}
.contact_area .contact_phone span {
  margin-left: 1em;
}
.contact_area .contact_phone.type_b a {
  color: #FF9A00;
}
.contact_area .btn {
  width: 32%;
}
.contact_area .link_txt a {
  position: relative;
  display: block;
  color: #fff;
  padding: 1em;
  font-size: 1.1em;
  font-weight: 600;
  border-bottom: 1px solid #fff;
}
.contact_area .link_txt a:before {
  margin-right: 1em;
}
.contact_area .link_txt a:hover:after {
  width: 100%;
}
.contact_area .link_txt a:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -0.15em;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}
.contact_area .link_txt .link_txt_01 a:before {
  font-family: "Font Awesome 6 Free";
  content: "\f0e0";
  font-weight: 900;
}
.contact_area .link_txt .link_txt_02 a:before {
  font-family: "Font Awesome 6 Free";
  content: "\f279";
  font-weight: 900;
}

.business_icon {
  color: #333;
}

/* serch
----------------------------------*/
.serch .serch_title {
  padding: 8px;
  border-radius: 16px 16px 0 0;
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
}
.serch .serch_title span {
  margin-left: 1em;
  font-size: 1.5rem;
}
.serch .serch_title_01 {
  background-color: #FF9A00;
}
.serch .serch_title_02 {
  background-color: #ffd8a4;
}
.serch .inner {
  padding: 32px;
  border-radius: 0 0 16px 16px;
  border-right: 1px solid #e7e7e7;
  border-left: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  background-color: #fff;
}
.serch .serch_list li {
  margin-bottom: 16px;
}
.serch .serch_list li:last-child {
  margin-bottom: 0;
}
.serch .serch_list li a {
  display: block;
  background-color: #e8e8e8;
  box-shadow: 0 1px 0 0 #d9d9d9;
  border-radius: 100px;
  padding: 16px;
  color: #333;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
}
.serch .serch_list li a:hover {
  background-color: #eee;
}
.serch .serch_list li a i {
  display: inline-block;
  margin-right: 1em;
  max-width: 32px;
}

/* bnr_v2
----------------------------------*/
.bnr_v2 {
  display: block;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 64px 24px;
  border: 1px solid #e7e7e7;
}
.bnr_v2:hover .bnr_v2_image {
  transform: scale(1.2, 1.2);
}
.bnr_v2 .title {
  position: relative;
  z-index: 2;
  padding-right: 1.5em;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
}
.bnr_v2 .title span {
  margin-left: 0.5em;
  font-size: 1.4rem;
}
.bnr_v2 .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(.assets/img/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.bnr_v2 .bnr_v2_image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.bnr_v2 .bnr_v2_image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

/* top_main_v2
----------------------------------*/
.top_main_v2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top_main_v2 .image {
  width: 40%;
}
.top_main_v2 .detail {
  width: 56%;
}

.dismembered {
  display: flex;
  justify-content: space-between;
}
.dismembered .dismembered_list {
  width: 48.5%;
}
.dismembered .dismembered_list:last-child {
  margin-top: 50px;
}

.top_main_catch {
  margin-bottom: 40px;
}

.top_main_txt {
  margin-bottom: 24px;
}
.top_main_txt:last-child {
  margin-bottom: 0;
}

/* top_works
----------------------------------*/
.top_works {
  max-width: 83%;
  margin-left: auto;
  padding-bottom: 120px;
}

/* slide_list
----------------------------------*/
.slide_list li {
  height: 184px;
}
.slide_list li img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

/* point_v3
----------------------------------*/
.point_v3 {
  position: relative;
  text-align: center;
}
.point_v3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 47px;
  height: 57px;
  background-repeat: no-repeat;
  background-position: left top;
}

.point_v3_01::before {
  background-image: url(.assets/img/point_01.png);
}

.point_v3_02::before {
  background-image: url(.assets/img/point_02.png);
}

.point_v3_03::before {
  background-image: url(.assets/img/point_03.png);
}

.point_v3_04::before {
  background-image: url(.assets/img/point_04.png);
}

.icon_point {
  display: block;
  margin: 0 auto 8px;
  width: 57px;
}

/* etc
----------------------------------*/
.font_ss {
  font-size: 1rem;
}

.font_s {
  font-size: 1.2rem;
}

.font_m {
  font-size: 1.4rem;
}

.font_l {
  font-size: 1.6rem;
}

.num {
  color: #ffd8a4;
  font-size: 1.5em;
  margin: 0 5px;
}

.fly {
  display: block;
}
.fly i {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.fly:hover i {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.cut {
  overflow: hidden;
  zoom: 1;
}

/* is-animated
----------------------------------*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  overflow: hidden;
  position: relative;
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #FF9A00;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* animation
----------------------------------*/
.zoomin {
  opacity: 0;
}
.zoomin.is-animated {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.fadeup {
  opacity: 0;
}
.fadeup.move {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.fadein {
  opacity: 0;
}
.fadein.move {
  animation: fadein 1.2s ease forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* page_title_box
----------------------------------*/
.page_title_box {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.page_title_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
}
.page_title_box .inner {
  position: relative;
  padding: 80px 0;
}

/* page_title_box_v2
----------------------------------*/
.page_title_box_v2 {
  position: relative;
  background-color: #FF9A00;
  color: #fff;
  padding: 24px 0;
}
.page_title_box_v2 .inner {
  position: relative;
  z-index: 1;
  max-width: 1024px;
  min-height: 360px;
  margin: 0 auto;
  padding-top: 80px;
}

.page_title_v2 {
  margin-bottom: 32px;
  font-size: 4rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.page_title_v2 span {
  display: block;
  font-size: 1.4rem;
}

.table_contents {
  border-left: 1px solid #fff;
  padding-left: 1.5em;
}
.table_contents li {
  margin-bottom: 8px;
}
.table_contents li::before {
  content: "・";
}
.table_contents li a {
  position: relative;
  color: #fff;
}
.table_contents li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.table_contents li a:hover:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

table {
  width: 100%;
}
table.tbl_1 tr {
  border-bottom: 1px solid #9c9c9c;
}
table.tbl_1 td,
table.tbl_1 th {
  padding: 15px;
}
table.tbl_1 td {
  padding-left: 25px;
}
table.tbl_1 td a {
  color: #FF9A00;
}

.page_image {
  overflow: hidden;
  position: absolute;
  z-index: 1;
  width: 960px;
  height: 360px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.page_image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

.border-x {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

/* breadcrumb_box
----------------------------------*/
.breadcrumb_box {
  padding: 16px 0;
}
.breadcrumb_box .breadcrumb {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 0;
  font-size: 1.3rem;
}
.breadcrumb_box .breadcrumb li {
  display: inline;
}
.breadcrumb_box .breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}
.breadcrumb_box .breadcrumb li a {
  color: #FF9A00;
}
.breadcrumb_box .breadcrumb li .home:before {
  font-family: "Font Awesome 6 Free";
  content: "\f015";
  font-weight: 900;
}

/* form
----------------------------------*/
form {
  color: #080808;
}

.form-contents {
  padding: 0 !important;
  border: none;
}

.form-contents form dl dd:not(.pattern-exclusion) {
  padding-bottom: 15px !important;
  padding-left: 0 !important;
}

.form-contents dd:not(.pattern-exclusion) input.textarea {
  height: 30px;
  background: #fdfbfb;
  border-bottom: 1px solid #b46a6a;
  padding: 10px 14px;
  border-radius: 3px;
}

.form-contents form dl dt:not(.pattern-exclusion) {
  width: 150px !important;
  padding-top: 0 !important;
}

.form-contents form dl {
  margin-bottom: 0 !important;
}

.form-contents dd:not(.pattern-exclusion) .textarea {
  background: #fdfbfb;
  padding: 10px 14px;
  border-radius: 3px;
  border: none;
}

.form-contents dd:not(.pattern-exclusion) input.textarea {
  border: none;
}

.form-contents :not(.pattern-exclusion) button {
  background: #ff9a00;
  color: #fff;
  font-weight: 500;
  border-radius: 3px;
  border: none;
}
.form-contents :not(.pattern-exclusion) button:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1024px) {
  .form-contents form dl dt:not(.pattern-exclusion) {
    width: 100% !important;
  }
  .form-contents {
    padding: 15px;
  }
}
/* service_area
----------------------------------*/
.icon_deco {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  background-color: #f2f2f2;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}
.icon_deco img {
  width: 50%;
}

/* tsuyomi_area
----------------------------------*/
.tsuyomi-img {
  width: 75%;
}

.contact_wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: block;
  text-align: center;
  border-radius: 10px;
  color: #333;
  background: #fff;
  transition: 0.3s;
  max-width: 550px;
  margin-left: auto;
  margin-bottom: 20px;
}
.contact_wrap:hover {
  background: #faefe3;
  color: #333;
}
.contact_wrap p {
  font-size: 2.5rem;
}
.contact_wrap .ja {
  font-size: 2rem;
}
.contact_wrap .num {
  font-family: "Outfit", sans-serif;
  color: #333;
}
.contact_wrap img {
  width: 3.5rem;
}
.contact_wrap .contact_inner {
  gap: 5px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  font-weight: bold;
}
.contact_wrap .contact_inner .left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact_wrap .contact_inner .left .icon {
  padding-bottom: 0.3em;
}
.contact_wrap .contact_inner i {
  font-size: 0.7em;
  color: #fff;
  background: #FF9A00;
  border-radius: 50%;
  padding: 10px;
}
.arrow_wrap {
  border-radius: 50px;
  width: 35px;
  height: 35px;
  padding: 10px;
  border: 2px solid #FF9A00;
  transition: 0.3s;
}
.arrow_wrap .arrow_right {
  position: relative;
  display: inline-block;
  width: 50%;
  height: 1px;
  margin-top: 22px;
  border-radius: 9999px;
  background-color: #FF9A00;
  transition: 0.3s;
}
.arrow_wrap .arrow_right:before {
  content: "";
  position: absolute;
  top: calc(50% - 2.5px);
  right: -1px;
  width: 10px;
  height: 1.5px;
  border-radius: 9999px;
  background-color: #FF9A00;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2.5px) 50%;
  transition: 0.3s;
}

.contact_btn {
  overflow: hidden;
  position: fixed;
  z-index: 5;
  top: auto;
  bottom: 20px;
  left: auto;
  right: 20px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #FF9A00;
}
.contact_btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact_btn .contact_btn_text {
  position: absolute;
  left: 50%;
  top: 18px;
  font-size: 12px;
  color: #faefe3;
  font-weight: bold;
  letter-spacing: 0.5px;
  transform: translate(-50%, -50%);
}

/* ポップアップの背景 */
.popup-wrap {
  display: none;
  z-index: 1000;
}

.popup_title {
  padding: 15px;
  text-align: center;
  font-weight: bold;
  background: #FF9A00;
  color: #fefefe;
  padding: 15px;
}

.popup-content-inner {
  padding: 20px;
}

/* コンテンツ部分 */
.popup-content {
  background: #faefe3;
  position: fixed;
  top: auto;
  bottom: 15px;
  right: 15px;
  left: auto;
  transform: translateY(0px);
  height: 400px;
  width: 370px;
  border-radius: 5px;
  opacity: 1;
  overflow-y: scroll;
  box-shadow: 0px 3px 5px -1px #a7a7a7;
  animation: fadeSlideIn 0.4s ease forwards;
}

/* WebKit系：スクロールバー本体 */
.popup-content::-webkit-scrollbar {
  width: 4px;
  /* ← お好みで細さを調整 */
}

/* スクロールバーのトラック（背景） */
.popup-content::-webkit-scrollbar-track {
  background: #ffd8a4;
}

/* スクロールバーのつまみ部分 */
.popup-content::-webkit-scrollbar-thumb {
  background-color: #4b4b4b;
  /* ← 色も変更可能 */
  border-radius: 3px;
}

/* 閉じるボタン */
.close-btn {
  position: absolute;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: #fefefe;
  background: #4B4B4B;
  padding: 5px;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  top: 3px;
  right: 5px;
}

/* アニメーション */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animation_text {
  background-color: #2d2d2d;
  color: #fefefe;
  padding: 15px;
  overflow: hidden;
}
.animation_text p {
  display: inline-block;
  white-space: nowrap;
  animation: text_scroll 20s linear infinite;
  padding-left: 100%;
}

@keyframes text_scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes fadeInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
    /* ←右から登場 */
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in-right {
  opacity: 0;
  animation: fadeInFromRight 1s ease-out forwards;
}

/* ①：すぐに開始 */
.first {
  animation-delay: 0.5s;
}

.second {
  animation-delay: 1s;
}

.third {
  animation-delay: 1.5s;
}

@keyframes gentle-sway {
  0% {
    transform: rotate(0deg);
  }
  1% {
    transform: rotate(1deg);
  }
  2% {
    transform: rotate(-1deg);
  }
  3% {
    transform: rotate(0.8deg);
  }
  4% {
    transform: rotate(-0.8deg);
  }
  5% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
  /* それ以外の時間は静止 */
}
.gentle-sway-every-10s {
  animation: gentle-sway 10s infinite;
  transform-origin: center bottom;
  /* ゆらゆら感を自然に */
}

@keyframes hop {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.hop-on-hover {
  display: inline-block;
  transition: transform 0.3s ease;
}
.hop-on-hover img {
  transition: filter 0.3s ease;
}
.hop-on-hover:hover {
  animation: hop 0.4s ease;
}
.hop-on-hover:hover img {
  filter: drop-shadow(5px 1px 0px #ffd8a4);
}

.fade-in-target {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-target.visible {
  opacity: 1;
}

.blog-section {
  padding: 80px 20px;
  text-align: center;
}
.blog-section .section-title {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
}
.blog-section .section-lead {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
  line-height: 1.6;
}
.blog-section .tabs {
  max-width: 1000px;
  margin: auto;
}
.blog-section .tabs .tab-menu {
  display: flex;
  gap: 1%;
  list-style: none;
  padding: 0;
}
.blog-section .tabs .tab-menu li {
  padding: 10px 40px;
  cursor: pointer;
  background: #eee;
  border-radius: 5px 5px 0 0;
  transition: background 0.3s ease;
  font-size: 1.1em;
  font-weight: 600;
}
.blog-section .tabs .tab-menu li.active {
  background: #FF9A00;
  color: #fff;
}
.blog-section .tabs .tab-content {
  display: none;
  padding: 20px;
  border: 20px solid #FF9A00;
  border-radius: 0 0 20px 20px;
}
.blog-section .tabs .tab-content.active {
  display: block;
}
.blog-section .knowledge-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.blog-section .knowledge-cards .knowledge-card {
  background-color: #fff;
  width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
}
.blog-section .knowledge-cards .knowledge-card:hover {
  transform: translateY(-5px);
}
.blog-section .knowledge-cards .knowledge-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
}
.blog-section .knowledge-cards .knowledge-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.blog-section .knowledge-cards .knowledge-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}
.blog-section .knowledge-cards .knowledge-card .read-more {
  font-size: 14px;
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
}
.blog-section .knowledge-cards .knowledge-card .read-more:hover {
  text-decoration: underline;
}
.blog-section .knowledge-cards .knowledge-card .txt-line-limit {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* ← 表示する行数を指定 */
  overflow: hidden;
  text-overflow: ellipsis;
}

/* other
----------------------------------*/
.para-gap p + p {
  margin-top: 20px;
}
.para-gap--large p + p {
  margin-top: 30px;
}
.para-gap--mini p + p {
  margin-top: 12px;
}

.about-img {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-left: 40px;
  position: relative;
  z-index: 10;
}
.about-img img {
  display: inline-block;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1/1;
  width: 50%;
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: center;
}
.about-img img:nth-child(1) {
  animation: aboutFloat1 6.5s ease-in-out infinite alternate;
  animation-delay: 0.05s;
}
.about-img img:nth-child(2) {
  transform: translate(50px, 50px);
  animation: aboutFloat2 7s ease-in-out infinite alternate;
  animation-delay: 0.1s;
}
.about-img img:nth-child(3) {
  margin-left: 70px;
  margin-top: 20px;
  animation: aboutFloat3 5.8s ease-in-out infinite alternate;
  animation-delay: 0.15s;
}
@keyframes aboutFloat1 {
  0% {
    transform: translate3d(0, -36px, 0) rotate(-2deg) scale(0.992);
  }
  50% {
    transform: translate3d(16px, 0px, 0) rotate(0deg) scale(1.004);
  }
  100% {
    transform: translate3d(0, 36px, 0) rotate(2deg) scale(1.008);
  }
}
@keyframes aboutFloat2 {
  0% {
    transform: translate3d(50px, 34px, 0) rotate(-1.8deg) scale(0.992);
  }
  50% {
    transform: translate3d(68px, 50px, 0) rotate(0deg) scale(1.004);
  }
  100% {
    transform: translate3d(50px, 66px, 0) rotate(1.8deg) scale(1.008);
  }
}
@keyframes aboutFloat3 {
  0% {
    transform: translate3d(-18px, 28px, 0) rotate(1.6deg) scale(1.006);
  }
  50% {
    transform: translate3d(22px, -14px, 0) rotate(0deg) scale(1);
  }
  100% {
    transform: translate3d(-18px, 28px, 0) rotate(-1.6deg) scale(0.994);
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-img .about-img img {
    animation: none !important;
  }
}

.vision-img {
  display: flex;
  gap: 10px;
}
.vision-img img {
  border-radius: 20px;
  height: 400px;
  object-fit: cover;
}
.vision-img img:nth-child(1) {
  width: 22%;
  object-position: 70% center;
}
.vision-img img:nth-child(2) {
  width: 22%;
}
.vision-img img:nth-child(3) {
  width: 45%;
}

.problem-list figure {
  position: relative;
  border-top: 10px solid #4B4B4B;
  padding: 20px;
  box-shadow: rgba(17, 12, 46, 0.1) 0px 20px 50px 0px;
  background: #fefefe;
  border-radius: 0 0 10px 10px;
}
.problem-list figure figcaption {
  font-weight: 600;
  font-size: 1.3em;
  text-align: center;
  margin-top: 20px;
  line-height: 1.5;
}
.problem-list figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1e1d1b;
  opacity: 0.03;
  z-index: -1;
}

.point-box {
  text-align: center;
  margin-bottom: 40px;
}
.point-box .col-item {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 50px 28px 32px;
  box-shadow: rgba(17, 12, 46, 0.1) 0px 20px 50px 0px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.point-box .col-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14), 0 3px 10px rgba(0, 0, 0, 0.1);
}
.point-box .col-item .icon {
  max-width: 160px;
  margin: 0 auto 20px;
}
.point-box .col-item .title {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 10px 28px;
  background: #d73232;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(201, 49, 46, 0.35);
  font-size: 1.3em;
  white-space: nowrap;
}
.point-box .col-item .title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 14px;
  height: 10px;
  background: #d73232;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  filter: drop-shadow(0 3px 3px rgba(201, 49, 46, 0.3));
}

.service-box {
  max-width: 900px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
}
.service-box .inner {
  width: 45%;
  position: relative;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}
.service-box .inner:nth-child(2) {
  transform: translateY(60px);
}
.service-box .inner .icon {
  max-width: 130px;
  margin: 0 auto 10px;
}
.service-box .inner .txt_box {
  position: relative;
  padding: 40px;
}
.service-box .inner .txt_box .num {
  position: absolute;
  top: -30px;
  left: -40px;
  font-weight: 400;
  font-size: 7em;
  line-height: 0.8;
  letter-spacing: 0;
  color: #FF9A00;
  font-family: "Outfit", sans-serif;
}
.service-box .inner .txt_box .eng {
  position: absolute;
  left: -1.2em;
  top: 3.5em;
  color: #FF9A00;
  font-family: "Outfit", sans-serif;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.5em;
  line-height: 1;
}
.service-box .inner .txt_box .title {
  position: relative;
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 1.5em;
  text-align: center;
}
.service-box .inner .txt_box .service-p {
  margin-bottom: 10px;
}

.fit-box {
  align-items: stretch;
}
.fit-box .col-item {
  background: rgba(30, 29, 27, 0.05);
  padding: 40px;
  border-radius: 10px;
}
.fit-box .col-item .icon {
  background: #fff;
  border-radius: 50%;
  aspect-ratio: 1/1;
  padding: 15%;
  max-width: 180px;
  margin: 0 auto 10px;
}

.strength-box {
  margin: 80px auto 60px;
}
.strength-box .col-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background: #fff;
  aspect-ratio: 1/1;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  border-bottom: 10px solid #FF9A00;
}
.strength-box .col-item::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translateX(-50%);
  background: url(../img/check.png) no-repeat center/contain;
}
.strength-box .col-item .title {
  font-weight: 600;
  font-size: 1.6em;
  margin-bottom: 20px;
}
.strength-box .col-item .title::first-letter {
  font-size: 2em;
  color: #FF9A00;
}