@charset "UTF-8";
/* helpers */
:root {
  /*
  * BREAKPOINT DEVICE
  */
  --cus-grid-breakpoints-smp: 768px;
  /*
  * FONTS
  */
  --cus-font-family-base: -apple-system, "SF Pro", "Inter", sans-serif;
  --cus-font-weight-base: 400;
  --cus-font-style-base: normal;
  --cus-font-size-base: 17px;
  --cus-font-size-smp-base: 100%;
  /*
  * LINE-HEIGHT
  */
  --cus-line-height-base: 1.5;
  /*
  * COLORS
  */
  --cus-text-color-base: #000;
  /*
  * CONTAINER WIDTH
  */
  --cus-container-default: 1300px;
  --cus-container-default-smp: 90%;
  --cus-container-default-padding: 0;
  /*
  * EFFECTS
  */
  --cus-transition-speed: 0.5s;
}

/*
 * BREAKPOINT VAR SCSS
 */
/*
 * @include mixins.background( $color, $image, $position, $repeat, $size )
 */
/*
 * @include mixins.background-image($name)
 */
/*
 * @include iframe-absolute( $ratio : 45% )
 */
/*
 * @include transform( $transform )
 */
/*
 * @include rotate( $deg )
 */
/*
 * @include a-hover-line( $color, $thickness, $position )
 */
/*
 * @include font-size( $size )
 */
/* font */
@font-face {
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/Futura-Bold.woff2") format("woff2"), url("../fonts/Futura-Bold.woff") format("woff"), url("../fonts/Futura-Bold.ttf") format("truetype");
  font-family: "Futura Bold";
  font-display: swap;
}
.en, .title ._en {
  font-family: "Futura Bold";
  letter-spacing: -1px;
}

.inter-900, .csr_title, .csr_subtitle, .csr_box h5, .ourwork_block__title, .ourwork_block__job_main ._list, .ourwork_block__job_related h3, .oem_title ._en, .oem_strength ._item h3, .oem_flow_list ._item_number, .oem_flow_list ._item_step, .oem_flow_list ._item_name, .dema_block04__text ._steps li ._num, .dema_block04__text ._steps li ._tit, .main_visual__title h2, .common_entry h2 ._jp, .common_entry .btn, .title02 ._big, .title03, .inter-800, .ourwork_block__job_related ._list p, .oem, .main_title02 {
  font-style: normal;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
}

.inter-800, .ourwork_block__job_related ._list p, .oem, .main_title02 {
  font-weight: 800;
}

.inter-900, .csr_title, .csr_subtitle, .csr_box h5, .ourwork_block__title, .ourwork_block__job_main ._list, .ourwork_block__job_related h3, .oem_title ._en, .oem_strength ._item h3, .oem_flow_list ._item_number, .oem_flow_list ._item_step, .oem_flow_list ._item_name, .dema_block04__text ._steps li ._num, .dema_block04__text ._steps li ._tit, .main_visual__title h2, .common_entry h2 ._jp, .common_entry .btn, .title02 ._big, .title03 {
  font-weight: 900;
}

/* inview */
[class*=inview-] {
  --timer: 0.4s;
  visibility: hidden;
  opacity: 0;
  transition: var(--timer) transform, var(--timer) opacity;
}

.inview-active {
  transform: translate3d(0, 0, 0) !important;
  visibility: visible;
  opacity: 1;
}

.inview-up {
  transform: translate3d(0, 10%, 0);
}

.inview-down {
  transform: translate3d(0, -10%, 0);
}

.inview-left {
  transform: translate3d(10%, 0, 0);
}

.inview-right {
  transform: translate3d(-10%, 0, 0);
}

.inview-fadeup {
  transform: translate(0, 20px);
  transition-delay: 0.3s;
  transition-duration: 0.6s;
  transition-timing-function: ease;
}

.delay1 {
  transition-delay: 0.1s;
}

.delay2 {
  transition-delay: 0.2s;
}

.delay3 {
  transition-delay: 0.3s;
}

.delay4 {
  transition-delay: 0.4s;
}

.delay5 {
  transition-delay: 0.5s;
}

.delay6 {
  transition-delay: 0.6s;
}

.delay7 {
  transition-delay: 0.7s;
}

.delay8 {
  transition-delay: 0.8s;
}

.delay9 {
  transition-delay: 0.9s;
}

.delay10 {
  transition-delay: 1s;
}

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

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgappear {
  opacity: 0;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  animation-name: bgextendAnimeSecond;
}

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

@keyframes bgLRextendAnime {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
.bginnerTrg,
.bgLRendTrg {
  opacity: 0;
}

@keyframes arrow {
  50% {
    right: 0.2em;
    opacity: 1;
  }
  100% {
    right: -0.4em;
    opacity: 0;
  }
}
/* anime sroll left to right */
@keyframes marquee_right {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
/* anime sroll right to left */
@keyframes marquee_left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
/* anime scroll bottom to top */
@keyframes marquee_up {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -100%, 0);
  }
}
/* anime scroll top to bottom */
@keyframes marquee_down {
  from {
    transform: translate3d(0, -100%, 0);
  }
  to {
    transform: translate3d(0, 0%, 0);
  }
}
/* Hover Glow Effect  */
.glow-on-hover {
  position: relative;
  z-index: 0;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 10px;
  background: #111;
  width: 220px;
  height: 50px;
  color: #fff;
}
.glow-on-hover::before {
  position: absolute;
  top: -2px;
  left: -2px;
  opacity: 0;
  z-index: -1;
  filter: blur(5px);
  animation: glowing 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  content: "";
}
.glow-on-hover::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 10px;
  background: #111;
  width: 100%;
  height: 100%;
  content: "";
}
.glow-on-hover:active {
  color: #000;
}
.glow-on-hover:active::after {
  background: transparent;
}
.glow-on-hover:hover::before {
  opacity: 1;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
/*!
 * THEMES
!*/
/* components */
/*
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 18px;
  height: 15px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 18px;
  height: 3px;
  background-color: #0A4BB7;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -6px;
}
.hamburger-inner::after {
  bottom: -6px;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 1.5px;
}
.hamburger--slider .hamburger-inner::before {
  top: 6px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 12px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 6px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-2.5714285714px, -3px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -12px, 0) rotate(-90deg);
}

/* helpers */
.main_text {
  position: relative;
  z-index: 2;
  margin: 150px 0 20px 195px;
  color: rgba(110, 95, 57, 0.1);
  font-size: 91px;
  line-height: 75%;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .main_text {
    margin: 130px 0 20px;
    font-size: 50px;
    line-height: 150%;
  }
}

.main_title02 {
  margin-bottom: 95px;
  margin-top: 170px;
  color: #0a4bb7;
}
.main_title02 h2 {
  margin-bottom: 15px;
  font-size: 68px;
}
.main_title02 p {
  font-size: 21px;
}
@media only screen and (max-width: 768px) {
  .main_title02 {
    margin-top: 140px;
  }
  .main_title02 h2 {
    margin-bottom: 20px;
    font-size: 50px !important;
    line-height: 50px;
  }
  .main_title02 p {
    font-size: 95%;
  }
}

.title {
  position: relative;
  margin-bottom: 35px;
  border-bottom: #0a4bb7 solid 4px;
  padding-bottom: 20px;
}
.title ._ja {
  color: #0a4bb7;
  font-size: 40px;
  letter-spacing: 0.5px;
}
.title ._en {
  position: absolute;
  bottom: -6px;
  left: 330px;
  color: rgba(110, 95, 57, 0.1);
  font-size: 91px;
  line-height: 80%;
  letter-spacing: -5px;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .title {
    margin-bottom: 30px;
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .title ._ja {
    font-size: 35px;
  }
  .title ._en {
    bottom: 95%;
    left: 0;
    font-size: 300%;
    line-height: 80%;
    letter-spacing: -1px;
  }
}

.title02 {
  position: relative;
  margin-bottom: 85px;
  padding-left: 39px;
  color: #0a4bb7;
}
.title02::before {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0a4bb7;
  width: 17px;
  height: 100%;
  content: "";
}
.title02 span {
  display: block;
  width: 100%;
  line-height: 100%;
}
.title02 ._big {
  margin-bottom: 15px;
  padding-top: 5px;
  font-size: 39px;
}
.title02 ._small {
  padding-bottom: 2px;
  font-weight: 700;
  font-size: 18px;
  line-height: 160%;
}
@media only screen and (max-width: 768px) {
  .title02 {
    margin-bottom: 50px;
  }
  .title02 ._big {
    font-size: 160%;
  }
  .title02 ._small {
    font-size: 90%;
  }
}

.title03 {
  margin-bottom: 50px;
  color: #0a4bb7;
  text-align: center;
}
.title03 span {
  display: block;
  line-height: 100%;
  text-align: center;
}
.title03 ._en {
  margin-bottom: 30px;
  font-size: 45px;
}
.title03 ._jp {
  font-size: 25px;
}
@media only screen and (max-width: 768px) {
  .title03 ._en {
    margin-bottom: 15px;
    font-size: 230%;
  }
  .title03 ._jp {
    font-size: 150%;
  }
}

/* helpers */
.btn {
  --btn-color-text: #0A4BB7;
  --btn-color-bg: #fff;
  --btn-color-border: #0A4BB7;
  --btn-font-size: 17px;
  display: inline-flex;
  align-items: center;
  outline: none;
  position: relative;
  min-width: 240px;
  height: 50px;
  padding: 0 15px 0 50px;
  color: var(--btn-color-text);
  font-size: var(--btn-font-size);
  text-align: center;
  font-weight: bold;
  border-radius: 50px;
  border: 2px solid var(--btn-color-border);
  background-color: var(--btn-color-bg);
  cursor: pointer;
}
.btn::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("../../../../uploads/icon-02.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: 0.5s;
}
.btn:hover {
  --btn-color-text: #fff;
  --btn-color-bg: #0A4BB7;
  text-decoration: none;
}
.btn:hover::before {
  content: "";
  background-image: url("../../../../uploads/icon-03.png");
}
@media only screen and (max-width: 768px) {
  .btn {
    --btn-font-size: 100%;
    min-width: 250px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/* templates */
/*
* html tag reset
*/
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: var(--cus-text-color-base);
  font-style: var(--cus-font-style-base);
  font-weight: var(--cus-font-weight-base);
  font-size: var(--cus-font-size-base);
  line-height: var(--cus-line-height-base);
  font-family: var(--cus-font-family-base);
}
@media only screen and (min-width: 769px) {
  body {
    zoom: 0.9;
  }
}

nav,
ul,
li {
  list-style: none;
}

img {
  display: block;
  margin: 0 auto;
  border: 0;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  outline: 0;
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

input[type=checkbox],
input[type=radio] {
  border: 1px solid #b3b3b3;
  border-radius: 0;
  background-color: #fff;
}

input[type=submit]:hover {
  opacity: 0.8;
  cursor: pointer;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
select,
textarea {
  position: relative;
  border: 1px solid #b3b3b3;
  border-radius: 0;
  background-color: #fff;
  padding: 6px 0;
  width: auto;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  text-indent: 1em;
}

textarea {
  resize: none;
}

area {
  outline: 0;
}

table {
  margin: 0 auto;
  width: 100%;
  max-width: var(--cus-container-default);
  table-layout: fixed;
}

table,
td,
th {
  vertical-align: top;
  border-collapse: collapse;
  border-spacing: 0;
  font-weight: var(--cus-font-weight-base);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 120%;
}

/*
* smooth effect
*/
a,
button,
input {
  -webkit-transition: var(--cus-transition-speed);
  transition: var(--cus-transition-speed);
}

#outside {
  overflow-x: hidden;
}

/*
* common class
*/
.pc {
  display: inline-block;
}

.smp {
  display: none;
}

.hide {
  display: none;
}

.logo_hover:hover img {
  opacity: 1;
  cursor: default;
}

@media only screen and (max-width: 768px) {
  /*
  * html tag reset
  */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    line-height: inherit;
  }
  a,
  button,
  input {
    -webkit-transition: none;
    transition: none;
  }
  /*
  * common class
  */
  .pc {
    display: none;
  }
  html.pc {
    display: block;
  }
  .smp {
    display: inline-block;
  }
}
#header {
  position: fixed;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  transition: var(--cus-transition-speed);
  border-radius: 35px;
  background: rgba(255, 255, 255, 0.79);
  padding: 10px 73px 10px 22px;
  width: 100%;
  max-width: 1325px;
}
#header._small {
  top: 15px;
  background: #fff;
}
#header._small .header_social {
  display: none;
}
@media only screen and (min-width: 769px) {
  #header {
    top: 0;
    left: 0;
    transform: none;
    max-width: 100%;
    padding-top: 60px;
    border-radius: 0;
    top: 0;
    background: #fff;
  }
  #header._small {
    top: 0;
  }
  #header._small .header_social {
    display: flex;
  }
  #header .container-head {
    max-width: 1325px;
    margin: 0 auto;
    column-gap: 40px;
    justify-content: center;
  }
  #header .overlay {
    display: none;
  }
}

.container-head {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  clear: both;
  z-index: 1;
  margin-right: auto;
  margin-left: auto;
}

.header_logo {
  width: 53px;
}
.header_social {
  display: flex;
  position: absolute;
  top: -40px;
  right: 0;
  align-items: flex-start;
}
.header_social li {
  position: relative;
  margin-right: 20px;
  padding-right: 20px;
  line-height: 100%;
}
.header_social li:before {
  position: absolute;
  top: 2px;
  right: 0;
  background: #0a4bb7;
  width: 2px;
  height: 25px;
  content: "";
}
.header_social li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.header_social li:last-child:before {
  display: none;
}
.header_social a {
  display: inline-block;
  color: #0a4bb7;
  font-weight: bold;
  font-size: 23px;
  line-height: 100%;
  text-shadow: 0px 0px 3px #fff;
}
.header_social ._icon {
  width: 28px;
  height: 28px;
}
.header_social ._icon a {
  display: block;
}
.header_navi {
  display: flex;
  transition: var(--cus-transition-speed);
}
.header_navi > li {
  position: relative;
}
.header_navi > li:last-child {
  margin-bottom: 0;
}
.header_navi > li > a {
  position: relative;
  padding: 0 35px;
  color: #0a4bb7;
  font-size: 21px;
}
.header_navi > li > a:hover {
  color: #d6b980;
  text-decoration: none;
}
.header_navi .open .header_navi_sub {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.header_navi_sub {
  position: absolute;
  top: calc(100% + 28px);
  left: 0;
  transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 38px 20px 15px;
  width: auto;
  min-width: 210px;
  pointer-events: none;
}
.header_navi_sub::before {
  position: absolute;
  top: -28px;
  left: 0;
  width: 100%;
  height: 28px;
  content: "";
}
.header_navi_sub li {
  margin-bottom: 18px;
}
.header_navi_sub a {
  position: relative;
  transition: var(--cus-transition-speed);
  margin-left: 15px;
  padding-right: 0;
  padding-left: 5px;
  color: #0a4bb7;
  font-size: 19px;
}
.header_navi_sub a:before {
  position: absolute;
  top: 11px;
  left: -15px;
  background: #0a4bb7;
  width: 7px;
  height: 3px;
  content: "";
}
.header_navi_sub a:hover {
  text-decoration: none;
}

/*
 * only SMP 
 */
@media only screen and (max-width: 768px) {
  .overlay {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
  }
  body.menu-open .overlay {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  #header {
    top: 0;
    left: 0;
    transform: unset;
    border-radius: unset;
    background: #fbf7f0;
    padding: 15px 0;
  }
  #header._small {
    width: 100%;
  }
  #header._small .container-head {
    width: auto;
  }
  #header .container-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.5%;
  }
  .header_menu_trigger {
    position: relative;
    padding-top: 5px;
    padding-right: 2.5%;
  }
  .header_menu_trigger.parent-active {
    display: flex;
    position: relative;
    top: 15px;
    right: 2.5%;
    justify-content: center;
    align-items: center;
    z-index: 3;
    border-radius: 50%;
    background: #0a4bb7;
    padding-top: 0;
    padding-right: 0;
    width: 50px;
    height: 50px;
  }
  .header_menu_trigger .hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .header_menu_trigger .hamburger.is-active .hamburger-label {
    display: none;
  }
  .header_menu_trigger .hamburger-label {
    color: #0a4bb7;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
  }
  .header_pc {
    display: none;
  }
  .header_smp a {
    display: flex;
    align-items: center;
  }
  .header_smp img {
    margin: 0;
  }
  .header_smp ._text {
    padding-left: 10px;
    color: #0a4bb7;
    font-weight: bold;
    font-size: 110%;
    letter-spacing: 1.2px;
  }
  .header_group {
    position: absolute;
    top: -15px;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translateX(20px);
    visibility: hidden;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: unset;
    border: 3px solid #0a4bb7;
    border-radius: 20px;
    background: #fff;
    padding: 90px 20px 45px 35px;
    width: 75%;
    max-width: 290px;
    pointer-events: none;
  }
  .header_group.is-open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    max-height: 80vh;
    overflow-y: auto;
    pointer-events: auto;
  }
  .header_group_link .btn {
    --btn-color-bg: #fcf16e;
    justify-content: center;
    padding: 14px 15px;
    min-width: 220px;
  }
  .header_navi {
    display: block;
    margin-bottom: 35px;
  }
  .header_navi > li {
    margin-bottom: 15px;
  }
  .header_navi > li > a {
    padding: 0 40px 0 0;
    font-size: 110%;
  }
  .header_navi > li > a:before {
    width: 18px;
    height: 18px;
    content: "";
    background-image: url("../../../../uploads/icon-01.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 2px;
    right: 0;
    opacity: 0;
    transition: 0.5s;
  }
  .header_navi > li > a:hover:before {
    opacity: 1;
  }
  .header_navi_sub {
    position: static;
    top: 100%;
    left: 0;
    transform: unset;
    visibility: unset;
    opacity: 1;
    padding: 10px 0 10px;
    pointer-events: auto;
  }
  .header_navi_sub li {
    margin-bottom: 10px;
  }
  .header_navi_sub li a {
    font-size: 100%;
  }
  .header_smp {
    display: flex;
    width: calc(100% - 65px);
    justify-content: space-between;
  }
  .header_smp h1 {
    max-width: 220px;
  }
  .header_smp ._instagram {
    width: 28px;
    height: 28px;
    position: relative;
    top: 6px;
  }
}
.footer {
  position: relative;
  margin-top: 100px;
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
  background: #0A4BB7;
  padding-bottom: 55px;
  color: #fff;
}
.footer_logo {
  margin-bottom: 30px;
  font-size: 27px;
}
.footer_info {
  margin-bottom: 140px;
  font-weight: 600;
  font-size: 16px;
}
.footer_info ._zip {
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.footer_info ._info {
  display: flex;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.footer_info ._text01 {
  display: block;
  width: 35px;
}
.footer_related {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  max-width: 525px;
}
.footer_related ._col01 img:first-child {
  margin-bottom: 4px;
}
.footer_copyright {
  font-size: 14px;
  letter-spacing: 1px;
}
.footer_left {
  padding-top: 145px;
}
.footer_left .container {
  padding-left: 30px;
}
.footer_right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
.footer_iframe {
  position: relative;
  border-top-right-radius: 50px;
  height: 100%;
  overflow: hidden;
}
.footer_iframe iframe {
  width: 100%;
  height: 100%;
}

/*
 * only SMP 
 */
@media only screen and (max-width: 768px) {
  .footer {
    margin-top: 50px;
    padding-bottom: 0;
  }
  .footer_left {
    padding-top: 50px;
  }
  .footer_left .container {
    padding-right: 5%;
    padding-left: 5%;
  }
  .footer_right {
    position: static;
    width: 100%;
    height: 100%;
  }
  .footer_right_copyright {
    display: block;
    padding: 20px 0;
    font-size: 95%;
    text-align: center;
  }
  .footer_logo {
    margin-bottom: 20px;
    font-size: 146%;
  }
  .footer_info {
    margin-bottom: 30px;
    font-size: 95%;
  }
  .footer_info ._info,
  .footer_info ._zip {
    margin-bottom: 5px;
    letter-spacing: 0.5px;
  }
  .footer_info ._zip {
    line-height: 150%;
  }
  .footer_related {
    column-gap: 5px;
  }
  .footer_related ._col01 img:first-child {
    margin-bottom: 3px;
  }
  .footer_iframe {
    border-top-right-radius: unset;
    position: relative;
  }
  .footer_iframe::before {
    display: block;
    padding-top: 60%;
    content: "";
  }
  .footer_iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
}
/* helpers */
body {
  background-color: #fbf7f0;
  overflow-x: hidden;
}

/*
* container
*/
.main_visual__title, .container-1154, .container-1170, .container-1228, .container-1500, .container-1300, .container-1270, .container-1080, .container-1030, .common_entry, .container-860, .container-full, .container {
  position: relative;
  clear: both;
  z-index: 1;
  margin-right: auto;
  margin-left: auto;
  width: var(--cus-container-default, 100%);
  max-width: var(--cus-container-default, 100%);
}
@media only screen and (max-width: 768px) {
  .main_visual__title, .container-1154, .container-1170, .container-1228, .container-1500, .container-1300, .container-1270, .container-1080, .container-1030, .common_entry, .container-860, .container-full, .container {
    --cus-container-default-padding: 0;
    width: var(--cus-container-default-smp, 95%);
  }
}

.container {
  --cus-container-default: 1300px;
}
.container-full {
  --cus-container-default: 100%;
  --cus-container-default-smp: 100%;
}
.container-860 {
  --cus-container-default: 860px;
}
.container-1030, .common_entry {
  --cus-container-default: 1030px;
}
.container-1080 {
  --cus-container-default: 1080px;
}
.container-1080 {
  --cus-container-default: 1080px;
}
.container-1270 {
  --cus-container-default: 1270px;
}
.container-1300 {
  --cus-container-default: 1300px;
}
.container-1500 {
  --cus-container-default: 1500px;
}
.container-1228 {
  --cus-container-default: 1228px;
}
.container-1170 {
  --cus-container-default: 1170px;
}
.container-1154 {
  --cus-container-default: 1154px;
}

/*
* wrapper
*/
@media only screen and (min-width: 769px) {
  #wrapper {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 768px) {
  #wrapper {
    padding-top: 0;
  }
}

/*
* main content
*/
#main_content {
  position: relative;
  z-index: 1;
  background-color: #fbf7f0;
  padding-top: 100px;
}
@media only screen and (max-width: 768px) {
  #main_content {
    padding-top: 50px;
  }
}

/*
* pager
*/
.pager-list {
  clear: both;
  margin: 95px auto 70px;
  width: 80%;
}
.pager-list .page-container {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 20px 5px;
}
.pager-list .page-numbers {
  --pager-color: #0a4bb7;
  --pager-color-border: #ebebeb;
  --pager-size: 42px;
  -webkit-transition: 0.5s;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  transition: color 0.3s ease-out;
  cursor: pointer;
  border: 2px solid var(--pager-color-border);
  border-radius: 50%;
  background-color: var(--pager-color-border);
  padding: 0 4px;
  width: var(--pager-size);
  height: var(--pager-size);
  color: var(--pager-color);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}
.pager-list .page-numbers.current, .pager-list .page-numbers:hover:not(.dots), .pager-list .page-numbers.prev, .pager-list .page-numbers.next {
  --pager-color: #fff;
  --pager-color-border: #0a4bb7;
}
.pager-list .page-numbers.current {
  cursor: default;
}
.pager-list .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  color: var(--pager-color);
  letter-spacing: 3px;
}
.pager-list .page-numbers.prev, .pager-list .page-numbers.next {
  --pager-size: 18px;
  font-size: 10px;
}
.pager-list .page-numbers.prev:hover, .pager-list .page-numbers.next:hover {
  opacity: 0.8;
}
.pager-list .page-numbers.prev {
  margin-right: 10px;
}
.pager-list .page-numbers.next {
  margin-left: 10px;
}
@media only screen and (max-width: 768px) {
  .pager-list {
    margin: 40px auto 80px;
    width: 100%;
  }
  .pager-list .page-container {
    gap: 20px 15px;
  }
  .pager-list .page-numbers {
    --pager-size: 50px;
    font-size: 105%;
  }
  .pager-list .page-numbers.dots {
    margin: 0;
    width: 30px;
  }
  .pager-list .page-numbers.prev, .pager-list .page-numbers.next {
    font-size: 100%;
  }
}

.btn_backlist {
  text-align: center;
}
.btn_backlist a {
  margin: 0 auto;
}

/*
* main_visual
*/
.main_visual {
  --cus-container-default: 1270px;
  --circle-width: 1300px;
  position: absolute;
  top: 122px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  width: 100vw;
  max-width: 100vw;
}
.main_visual__title {
  min-height: 560px;
}
.main_visual__title h2 {
  position: absolute;
  bottom: 0;
  left: 50px;
  max-width: 620px;
  color: #0a4bb7;
}
.main_visual__title span {
  display: block;
  line-height: 90%;
  text-align: center;
}
.main_visual__title ._en {
  margin-bottom: 20px;
  font-size: 105px;
}
.main_visual__title ._ja {
  font-size: 41px;
}
.main_visual__image {
  position: absolute;
  top: -740px;
  right: -14.25vw;
  z-index: 0;
  border: 4px solid #0a4bb7;
  border-radius: 50%;
  width: var(--circle-width);
  height: var(--circle-width);
  overflow: hidden;
}
.main_visual__image img {
  position: absolute;
  bottom: var(--background-position-bottom, 0);
  left: var(--background-position-left, 0);
  max-width: 1920px;
}
.main_visual + #main_content {
  margin-top: 750px;
}
@media only screen and (max-width: 768px) {
  .main_visual {
    --circle-width: 90vw;
    min-height: 120vw;
    overflow-x: hidden;
    top: 0;
  }
  .main_visual__title {
    min-height: 117vw;
  }
  .main_visual__title h2 {
    top: 100vw;
    bottom: auto;
    left: 0;
    width: 100%;
    max-width: 100%;
  }
  .main_visual__title ._en {
    margin-bottom: 10px;
    font-size: 230%;
  }
  .main_visual__title ._ja {
    font-size: 120%;
  }
  .main_visual__image {
    --background-position-left: -20%;
    --background-position-bottom: 0;
    top: 0;
    right: -40px;
  }
  .main_visual__image img {
    width: 130vw;
    max-width: 130vw;
  }
  .main_visual + #main_content {
    margin-top: 125vw;
  }
}
.main_visual._bg_center + #main_content {
  margin-top: 600px;
  padding-top: 50px;
}
@media only screen and (max-width: 768px) {
  .main_visual._bg_center + #main_content {
    margin-top: 120vw;
  }
}
.main_visual._bg_center .main_visual__image {
  --circle-width: 1305px;
  top: -935px;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .main_visual._bg_center .main_visual__image {
    --circle-width: 90vw;
    --background-position-bottom: -35vw;
    top: -32vw;
  }
}
.main_visual._bg_center .main_visual__title h2 {
  position: absolute;
  top: 0;
  bottom: auto;
  left: auto;
  margin-top: 405px;
  width: 100%;
  max-width: 100%;
}
.main_visual._bg_center .main_visual__title h2 span._hightlight {
  display: inline-block;
  margin-left: 40px;
  background-color: #0a4bb7;
  padding: 14px 40px;
  min-width: 250px;
  color: #ffffff;
  font-size: 42px;
}
.main_visual._bg_center .main_visual__title h2 ._en {
  margin-bottom: 5px;
  font-size: 114px;
}
.main_visual._bg_center .main_visual__title h2 ._ja {
  font-size: 41px;
}
@media only screen and (max-width: 768px) {
  .main_visual._bg_center .main_visual__title h2 {
    position: relative;
    top: 70vw;
    margin-top: 0;
  }
  .main_visual._bg_center .main_visual__title h2 span._hightlight {
    margin-top: 15px;
    margin-left: 10px;
    padding: 14px 20px;
    min-width: 0;
    font-size: 44px;
  }
  .main_visual._bg_center .main_visual__title h2 ._en {
    margin-bottom: 25px;
    font-size: 270%;
  }
  .main_visual._bg_center .main_visual__title h2 ._ja {
    font-size: 170%;
  }
}

/*
* common block
*/
.common_entry {
  margin-bottom: 195px;
  text-align: center;
}
.common_entry h2 {
  margin-bottom: 65px;
  text-align: center;
}
.common_entry h2 span {
  display: block;
  width: 100%;
  line-height: 100%;
  text-align: center;
}
.common_entry h2 .en {
  margin-bottom: 15px;
  color: rgba(110, 95, 57, 0.1);
  font-size: 91px;
  letter-spacing: -5px;
}
.common_entry h2 ._jp {
  color: #0a4bb7;
  font-size: 52px;
}
.common_entry .btn {
  --btn-font-size: 41px;
  --btn-color-bg: #0a4bb7;
  --btn-color-text: #fff;
  justify-content: center;
  border-radius: 74px;
  padding: 0;
  min-width: 875px;
  height: 148px;
}
.common_entry .btn:before {
  width: 39px;
  height: 39px;
  background-image: url("../../../../uploads/careers-icon.png");
  left: 145px;
}
.common_entry .btn:hover {
  --btn-color-bg: #fff;
  --btn-color-text: #0a4bb7;
}
@media only screen and (max-width: 768px) {
  .common_entry {
    margin-top: 90px;
    margin-bottom: 130px;
  }
  .common_entry h2 {
    margin-bottom: 30px;
  }
  .common_entry h2 .en {
    font-size: 260%;
    letter-spacing: -2px;
  }
  .common_entry h2 ._jp {
    font-size: 140%;
  }
  .common_entry .btn {
    --btn-font-size: 110%;
    border-radius: 40px;
    width: 100%;
    min-width: auto;
    max-width: 380px;
    height: 80px;
  }
  .common_entry .btn:before {
    left: 29px;
    background-size: cover;
    width: 25px;
    height: 25px;
  }
}

._ico_dot {
  display: block;
  width: 100%;
  position: relative;
  padding-left: 17px;
}
._ico_dot::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* form */
.datepicker_icon {
  position: relative;
}
.datepicker_icon img.ui-datepicker-trigger {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}

.form_page .main_title02 {
  position: relative;
  margin-bottom: 75px;
  padding-bottom: 30px;
  line-height: 2.3;
}
.form_page.entry .main_title02::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #CECECE;
  width: 1015px;
  height: 1px;
  content: "";
}
.form_page.entry .form_page__detail {
  background-color: #fff;
  border-radius: 67px;
  padding: 64px 138px 98px 138px;
}
.form_page.entry .form_group {
  margin-bottom: 72px;
}
.form_page ._ps97 {
  padding-left: 97px;
}
.form_page ._note {
  color: #B7050E;
  font-weight: 500;
}
.form_page__description {
  margin-bottom: 60px;
}
.form_page__description_block01 {
  margin-bottom: 70px;
  border-bottom: 1px solid #797979;
  padding-bottom: 90px;
}
.form_page__description_block01 .title {
  --color-text-en: #BBA448;
  --color-icon: #E7DFBD;
  margin-bottom: 10px;
}
.form_page__description_block01 p {
  margin-left: 15px;
}
.form_page__description_block01 ._note {
  margin-bottom: 15px;
}
.form_page__description_block01 dl {
  display: flex;
  align-items: flex-end;
  gap: 30px 10px;
  padding-left: 10px;
  color: #BBA448;
}
.form_page__description_block01 dl dt {
  padding-left: 48px;
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  background-image: url("../../../../uploads/icon-tel4.png");
  background-position: left top 12px;
  background-repeat: no-repeat;
}
.form_page__description_block01 dl dd {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 2px;
}
.form_page__description_block02 p {
  margin-bottom: 20px;
  margin-left: 20px;
  line-height: 160%;
}
.form_page__detail {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 100px;
  width: 100%;
}
.form_page__detail ._top {
  background-color: #fff;
  border-radius: 67px;
  padding: 65px 130px 76px 138px;
  margin-bottom: 98px;
}
.form_page__detail dt,
.form_page__detail dd {
  position: relative;
}
.form_page__detail dt {
  width: 100%;
  font-weight: bold;
  font-size: 20px;
}
.form_page__detail dt.form_mandatory {
  --color: #fff;
  --color-bg: #DD5B5B;
  --text: '必須';
  padding-left: 45px;
}
.form_page__detail dt.form_mandatory ._title {
  position: relative;
}
.form_page__detail dt.form_mandatory ._title::after {
  position: absolute;
  top: 0;
  left: -45px;
  border: 1px solid var(--color);
  border-radius: 3px;
  background: var(--color-bg);
  padding: 3px 0;
  width: 40px;
  content: var(--text);
  color: var(--color);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  text-align: center;
}
.form_page__detail dt.form_mandatory._text_inline {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  width: 100%;
}
.form_page__detail dt.form_mandatory._text_inline ._title {
  width: fit-content;
}
.form_page__detail dt.form_mandatory._text_inline ._desc {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
}
.form_page__detail dt.form_any {
  --color: #7295A2;
  --color-bg: #DCECF0;
  --text: '任意';
}
.form_page__detail dd {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 25px;
  width: calc(100% - 460px);
}
.form_page__detail dd ::placeholder,
.form_page__detail dd ::-ms-input-placeholder {
  color: #9B9B9B;
  font-weight: 500;
}
.form_page__detail dd ._note-r01 {
  padding-left: 7px;
  font-size: 15px;
}
.form_page__detail dd ._list {
  position: relative;
  margin-top: 10px;
}
.form_page__detail dd ._list .wpcf7-form-control {
  display: flex;
  gap: 35px 50px;
}
.form_page__detail dd ._list._1line .wpcf7-form-control {
  gap: 0 0;
}
.form_page__detail dd ._list._1line .wpcf7-list-item {
  width: 100%;
}
.form_page__detail dd .wpcf7-list-item {
  display: block;
  margin-left: 0;
  min-width: 85px;
}
.form_page__detail dd .wpcf7-list-item.last {
  margin-bottom: 0;
}
.form_page__detail dd .wpcf7-list-item-label::before {
  display: none;
}
.form_page__detail dd .wpcf7-list-item input {
  margin-right: 8px;
}
.form_page__detail dd .wpcf7-list-item-other {
  margin-left: 10px;
}
.form_page__detail dd .wpcf7-list-item-other ._note {
  margin-right: 50px;
}
.form_page__detail dd ._fw300 {
  font-weight: 300;
}
.form_page__detail dd ._fw300 ._note {
  font-weight: inherit;
}
.form_page__detail dd._w862 {
  width: 862px !important;
}
.form_page__detail dd._w862 input,
.form_page__detail dd._w862 textarea {
  max-width: none;
}
.form_page__detail dd._w862 .wpcf7-form-control-wrap {
  width: 100%;
}
.form_page__detail dd .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding-left: 45px;
}
.form_page__detail dd .wpcf7-radio input[type=radio] {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  appearance: none;
  border: 1px solid #767676;
  border-radius: 50%;
  width: 22px;
  height: 22px;
}
.form_page__detail dd .wpcf7-radio input[type=radio]:checked {
  border-color: #0A4BB7;
}
.form_page__detail dd .wpcf7-radio input[type=radio]:checked::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #0A4BB7;
  width: 14px;
  height: 14px;
  content: "";
}
.form_page__detail dd ._group {
  display: flex;
  gap: 10px;
}
.form_page__detail dd ._group .btn_autofill {
  margin-top: 20px;
  border-radius: 5px;
  background-color: #000;
  width: 123px;
  height: 33px;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
}
.form_page__detail dd ._group .form_input {
  width: 192px;
}
.form_page__detail dd ._group .wpcf7-form-control-wrap {
  width: fit-content;
}
.form_page__detail dd._group_checkbox {
  margin-left: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 19px;
}
.form_page__detail dd._group_checkbox label {
  display: grid;
  align-items: center;
  grid-template-columns: 20px 280px 1fr;
  gap: 10px;
}
.form_page__detail dd._group_checkbox label span {
  letter-spacing: -2px;
}
.form_page__detail dd._group_checkbox label input[type=checkbox] {
  border-color: #0A4BB7;
  width: 24px;
  height: 24px;
}
.form_page__detail dd._group_checkbox label ._sub_text {
  font-size: 15px;
  font-weight: 500;
}
.form_page__detail dd._group_checkbox .wpcf7-list-item {
  margin-bottom: 20px;
}
.form_page__detail dd .file-box {
  display: flex;
  position: relative;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 14px;
  width: 100%;
}
.form_page__detail dd .file-box input[type=file] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  inset: 0;
}
.form_page__detail dd .file-box .file-btn {
  cursor: pointer;
  border: 1px solid #938989;
  border-radius: 5px;
  background: #E6E6E6;
  padding: 6px 14px;
  width: 143px;
  height: 33px;
  font-weight: 500;
  font-size: 15px;
}
.form_page__detail dd .file-box .file-name {
  color: #ADADAD;
}
.form_page__detail dd .file-box .wpcf7-form-control-wrap {
  width: fit-content;
}
.form_page__detail dd._no-wrap {
  flex-direction: column;
  align-items: start;
}
.form_page__detail dd.last {
  margin-bottom: 0;
}
@media only screen and (min-width: 769px) {
  .form_page__detail dd [class*=_w] {
    max-width: 100%;
  }
  .form_page__detail dd ._wfull {
    width: 100%;
  }
  .form_page__detail dd ._w700 {
    width: 700px;
  }
  .form_page__detail dd ._w670 {
    width: 670px;
  }
  .form_page__detail dd ._w615 {
    width: 615px;
  }
  .form_page__detail dd ._w395 {
    width: 395px;
  }
  .form_page__detail dd ._w335 {
    width: 335px;
  }
  .form_page__detail dd ._w290 {
    width: 290px;
  }
  .form_page__detail dd ._w275 {
    width: 275px;
  }
  .form_page__detail dd ._w270 {
    width: 270px;
  }
  .form_page__detail dd ._w255 {
    width: 255px;
  }
  .form_page__detail dd ._w215 {
    width: 215px;
  }
  .form_page__detail dd ._w185 {
    width: 185px;
  }
  .form_page__detail dd ._w145 {
    width: 145px;
  }
  .form_page__detail dd ._h75 {
    height: 75px;
  }
}
.form_page__detail .form_group {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-bottom: 22px;
  width: 100%;
}
.form_page__detail .form_input, .form_page__detail .form_textarea, .form_page__detail .form_select {
  outline: none;
  border: 1px solid #D3D3D3;
  border-radius: 7px;
  background: #fff;
  width: 100%;
  height: 54px;
}
.form_page__detail .form_select, .form_page__detail .form_textarea {
  text-indent: 1em;
}
.form_page__detail .form_select {
  appearance: none;
  color: #959595;
}
.form_page__detail .form_textarea {
  padding: 9px;
  height: 205px;
  resize: none;
  text-indent: 10px;
}
.form_page__detail .form_textarea::placeholder {
  line-height: 170%;
}
.form_page__detail .form_select_group {
  position: relative;
}
.form_page__detail .form_select_group select {
  appearance: none;
  padding: 10px 40px 10px 0;
}
.form_page__detail .form_select_group::after {
  position: absolute;
  top: 25px;
  right: 13px;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
  border-right: 2px solid #939393;
  border-bottom: 2px solid #939393;
  width: 8px;
  height: 8px;
  content: "";
}
.form_page__detail .form_select_group ._title {
  position: absolute;
  top: 6px;
  right: 30px;
  color: #666;
  font-size: 12px;
}
.form_page__detail .form_layout__2col .wpcf7-form-control-wrap {
  margin-right: 30px;
}
.form_page__detail .form_layout__3col .form_select_group {
  margin-right: 20px;
}
.form_page__detail .form_layout__birthday {
  display: flex;
  column-gap: 12px;
  align-items: center;
}
.form_page__detail .form_layout__birthday .form_select_group {
  width: 96px;
}
.form_page__detail .form_layout__birthday ._unit {
  margin-right: 4px;
}
.form_page__detail .form_layout__address {
  display: flex;
  row-gap: 15px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 460px;
}
.form_page__detail .form_layout__address ._item_row {
  display: flex;
  column-gap: 15px;
  align-items: center;
  width: 100%;
}
.form_page__detail .form_layout__address ._item_name {
  width: 75px;
}
.form_page__detail .form_layout__address ._item_value {
  width: auto;
}
.form_page__detail .form_privacy {
  margin-bottom: 18px;
}
.form_page__detail .form_privacy__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 7px;
}
.form_page__detail .form_privacy__scroll {
  background-color: #DEDEDE;
  padding: 15px 17px 5px 17px;
  font-weight: 500;
  font-size: 14px;
  border-radius: 7px;
  padding-right: 40px;
  height: 98px;
  width: 862px;
  overflow-y: auto;
}
.form_page__detail .form_privacy__scroll p {
  margin-bottom: 10px;
  line-height: 140%;
}
.form_page__detail .form_acceptance {
  width: 100%;
  font-size: 15px;
  font-weight: 500;
}
.form_page__detail .form_acceptance label {
  display: flex;
  align-items: start;
  gap: 7px;
}
.form_page__detail .form_acceptance .wpcf7-acceptance {
  margin-right: 15px;
}
.form_page__detail .form_acceptance .wpcf7-list-item {
  margin: 0;
}
.form_page__detail .form_btn {
  --btn-width: 100%;
  --btn-color-text: #fff;
  --btn-font-size: 26px;
  --btn-color-bg: #0A4BB7;
  --btn-color-bg-hover: #0A4BB7;
  --btn-color-border: #0A4BB7;
  width: 561px;
  min-width: 0;
  max-width: none;
  height: 94px;
}
.form_page__detail .form_btn._disabled {
  --btn-color-bg: #DEDEDE;
  --btn-color-bg-hover: #DEDEDE;
  --btn-color-border: #DEDEDE;
}
.form_page__detail .form_btn._disabled:hover::after {
  right: 19px;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
.form_page__detail .form_btn input {
  position: absolute;
  top: 0;
  left: 0;
  outline: none;
  border: none;
  background: none;
  width: 100%;
  height: 100%;
  color: inherit;
}
.form_page__detail .form_btn input:disabled {
  cursor: not-allowed;
}
.form_page__detail .form_btn_group {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 561px;
}
.form_page__detail .form_btn_group li:first-child:nth-last-child(1) {
  width: 100%;
}
.form_page__detail .form_btn_group li:first-child:nth-last-child(2),
.form_page__detail .form_btn_group li:first-child:nth-last-child(2) ~ li {
  margin: 0 2%;
  width: 48%;
  max-width: none;
}
@media only screen and (max-width: 768px) {
  .form_page__detail .form_btn_group {
    flex-wrap: wrap;
  }
  .form_page__detail .form_btn_group li {
    margin: 0 !important;
    margin-bottom: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 80px !important;
  }
}
.form_page__detail .form_btn_group .btn {
  border-width: 5px;
  transition: all 0.3s ease;
}
.form_page__detail .form_btn_group .btn::before {
  left: 45px;
  width: 24px;
  height: 24px;
  background-image: url("../../../../uploads/icon-arrow-right-circle.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.form_page__detail .form_btn_group .btn:hover {
  text-decoration: none;
  background-color: #fff;
  color: #0A4BB7;
  border: 5px solid #0A4BB7;
}
.form_page__detail ._questionnaire._confirm_title {
  margin: 50px 0 20px;
  font-size: 20px;
}
.form_page__detail ._questionnaire.form_group dt,
.form_page__detail ._questionnaire.form_group dd {
  padding: 10px 0 0 45px;
  width: 100%;
}
.form_page__detail ._questionnaire.form_group dd {
  margin-bottom: 15px;
}
.form_page__detail input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}
.form_page__detail input[type=checkbox]:checked {
  background: #0A4BB7;
}
.form_page__detail input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}

.form_page_confirm ._confirm_title {
  margin-bottom: 50px;
  font-size: 30px;
}
.form_page_confirm .form_btn_group {
  margin-top: 0;
  max-width: none;
}
.form_page_confirm .form_btn_group .form_btn.btn-button {
  --btn-color-bg: #ccc;
  --btn-color-bg-hover: #ccc;
  --btn-color-border: #ccc;
  cursor: pointer;
}
.form_page_confirm dt.form_mandatory ._title::after {
  top: 3px;
}

.form_page_thanks {
  margin: 100px auto;
  width: 100%;
}
.form_page_thanks ._title {
  margin-bottom: 20px;
  font-size: 20px;
  text-align: center;
}
.form_page_thanks ._link {
  margin-top: 20px;
}
.form_page_thanks ._link a {
  position: relative;
}
.form_page_thanks ._link a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
  background: #b3d189;
  width: 100%;
  height: 1px;
  content: "";
}
.form_page_thanks ._link a:hover {
  text-decoration: none;
}
.form_page_thanks ._link a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.form_page_thanks ._link a::after {
  background: #000;
}
.form_page_thanks .thanks_box {
  text-align: center;
}
.form_page_thanks .container {
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  background: #fff;
  padding: 40px 20px;
  width: 100%;
  max-width: 500px;
}
.form_page_thanks .container a {
  color: #000;
}
@media only screen and (max-width: 768px) {
  .form_page_thanks .container {
    margin: 0 auto;
    border: 2px solid #ccc;
    padding: 40px 5%;
    width: 90%;
  }
}

@media only screen and (max-width: 768px) {
  .form_page.entry .form_page__detail {
    padding: 43px 32px;
    border-radius: 13px;
  }
  .form_page.entry .form_group {
    margin-bottom: 72px;
  }
  .form_page.entry .form_btn_group {
    position: relative;
    bottom: 0;
    padding: 0;
  }
  .form_page ._ps97 {
    padding-left: 0;
  }
  .form_page .main_title02 {
    margin-bottom: 55px;
    padding-bottom: 0;
    line-height: 2;
  }
  .form_page .main_title02:after {
    display: none;
  }
  .form_page .main_title02 h2 {
    font-size: 45px;
    line-height: 120%;
  }
  .form_page .main_title02 p {
    font-size: 105%;
  }
  .form_page .wpcf7-form {
    overflow-x: hidden;
  }
  .form_page__description_block01 {
    padding-bottom: 60px;
  }
  .form_page__description_block01 p {
    margin-left: 0;
  }
  .form_page__description_block01 ._note {
    margin-bottom: 35px;
  }
  .form_page__description_block01 dl {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 0;
    padding-left: 0;
  }
  .form_page__description_block01 dl dt,
  .form_page__description_block01 dl dd {
    width: 100%;
  }
  .form_page__description_block01 dl dt {
    background-position: left top 8px;
    background-size: 35px auto;
    padding-left: 40px;
    font-size: 42px;
  }
  .form_page__description_block01 dl dd {
    font-size: 16px;
    letter-spacing: 0;
    text-align: center;
  }
  .form_page__description_block02 p {
    margin-bottom: 30px;
    margin-left: 0;
  }
  .form_page__detail {
    border-radius: 13px;
  }
  .form_page__detail ._top {
    padding: 43px 32px 113px 32px;
    width: 100%;
    border-radius: 13px;
  }
  .form_page__detail dt,
  .form_page__detail dd {
    padding-top: 0;
    width: 100% !important;
  }
  .form_page__detail dt {
    padding-bottom: 15px;
    padding-left: 0;
    font-size: 105%;
  }
  .form_page__detail dt ._title {
    margin-top: 0;
  }
  .form_page__detail dt ._title::after {
    position: absolute;
    top: 2px;
    left: 0;
    padding: 3px 0 5px;
    width: 45px;
  }
  .form_page__detail dt.form_mandatory {
    flex-direction: column;
    padding: 0;
  }
  .form_page__detail dt.form_mandatory ._title {
    margin-bottom: 7px;
    padding-top: 0px;
    padding-left: 48px;
  }
  .form_page__detail dt.form_mandatory ._title::after {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .form_page__detail dt.form_mandatory ._text_inline {
    gap: 0;
  }
  .form_page__detail dd {
    padding-bottom: 0;
    padding-left: 0;
  }
  .form_page__detail dd ._note-r01 {
    padding-top: 10px;
    padding-left: 15px;
  }
  .form_page__detail dd ._list {
    margin-top: 0;
    margin-left: 15px;
  }
  .form_page__detail dd ._list .wpcf7-form-control {
    gap: 0 0;
    width: 100%;
  }
  .form_page__detail dd .wpcf7-list-item {
    margin-bottom: 5px;
    min-width: 100%;
  }
  .form_page__detail dd .wpcf7-radio {
    gap: 0;
    padding-left: 0;
  }
  .form_page__detail dd .file-box .file-btn {
    height: auto;
  }
  .form_page__detail dd ._group {
    width: 100%;
  }
  .form_page__detail dd ._group .btn_autofill {
    margin-top: 25px;
  }
  .form_page__detail dd._w862 {
    width: 100% !important;
  }
  .form_page__detail dd._group_checkbox {
    margin-left: 0;
  }
  .form_page__detail dd._group_checkbox .wpcf7-list-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 17px;
  }
  .form_page__detail dd._group_checkbox ._sub_text {
    margin-left: 24px;
  }
  .form_page__detail dd._group_checkbox label {
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 0 10px;
  }
  .form_page__detail dd._group_checkbox .wpcf7-list-item-label {
    grid-column: 2;
  }
  .form_page__detail dd._group_checkbox ._sub_text {
    grid-column: 2;
    margin-top: 4px;
    margin-left: 0;
  }
  .form_page__detail .form_input, .form_page__detail .form_textarea, .form_page__detail .form_select {
    height: 60px;
  }
  .form_page__detail .form_textarea {
    height: 300px;
  }
  .form_page__detail .form_textarea._h75 {
    height: 150px;
  }
  .form_page__detail .form_layout__birthday {
    width: 100%;
  }
  .form_page__detail .form_layout__birthday .form_select_group {
    width: 96px;
  }
  .form_page__detail .form_layout__birthday .form_select_group .form_select {
    text-indent: 5px;
  }
  .form_page__detail .form_layout__address {
    width: 100%;
  }
  .form_page__detail .form_layout__address ._item_value {
    width: calc(100% - 90px);
  }
  .form_page__detail .form_privacy {
    margin-bottom: 12px;
    padding: 0;
  }
  .form_page__detail .form_privacy__scroll {
    padding-right: 20px;
    height: 117px;
    width: 100%;
  }
  .form_page__detail .form_acceptance {
    margin-bottom: 16px;
  }
  .form_page__detail .form_acceptance p:first-child {
    font-size: 90%;
  }
  .form_page__detail .form_acceptance p:last-child {
    margin-bottom: 0;
    font-size: 105%;
  }
  .form_page__detail .form_acceptance .wpcf7-acceptance {
    display: flex;
  }
  .form_page__detail .form_btn {
    --btn-height: 90px;
  }
  .form_page__detail .form_btn_group {
    position: absolute;
    bottom: 113px;
    padding: 0 30px;
  }
  .form_page__detail .form_btn_group .btn {
    font-size: 110%;
  }
  .form_page__detail .form_btn_group .btn::before {
    left: 34px;
    width: 15px;
    height: 15px;
    background-image: url("../../../../uploads/icon-arrow-right-circle.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .form_page__detail .form_btn_group .btn:hover {
    text-decoration: none;
  }
  .form_page__detail .form_select_group {
    width: 100%;
  }
  .form_page__detail .form_select_group::after {
    top: 28px;
  }
  .form_page_confirm ._confirm_title {
    margin-bottom: 20px;
    width: 100%;
    font-size: 130%;
  }
  .form_page_confirm .form_btn_group {
    position: relative;
    bottom: 0;
  }
  .form_page_confirm dt,
  .form_page_confirm dd {
    width: 100%;
  }
  .form_page_confirm dt {
    padding-top: 25px;
  }
  .form_page_confirm dd {
    margin-bottom: 0;
  }
  .form_page_confirm ._text_inline {
    margin-top: 25px;
  }
  .form_page_confirm .form_btn .btn {
    --btn-font-size: 100%;
  }
}
.contact .main_text {
  text-align: end;
}
.contact .main_title02 p {
  white-space: pre-line;
}

/* pages */
.home-page #footer {
  background: #f7f4df;
}

.ind_video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.ind_video:before {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(154, 154, 154, 0.35);
  width: 100%;
  height: 100%;
  content: "";
}
.ind_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind_block01 {
  position: relative;
  background-image: url("../../../../uploads/ind-img11.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding-top: 155px;
  padding-bottom: 155px;
}
.ind_block01_slider {
  position: relative;
  margin: 0 auto;
  border: 5px solid #0a4bb7;
  border-radius: 34px;
  width: 510px;
}
.ind_block01_slider:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  border-radius: 29px;
  background: rgba(5, 32, 77, 0.54);
  width: 100%;
  height: 100%;
  content: "";
}
.ind_block01_hidetext {
  position: absolute;
  bottom: 67px;
  left: -53%;
  width: 1839px;
  height: 646px;
}
.ind_block01_title {
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
}
.ind_block01_title ._normal01 {
  font-size: 58px;
}
.ind_block01_title ._big {
  padding-right: 10px;
  font-size: 122px;
}
.ind_block01_title ._normal02 {
  font-size: 66px;
  letter-spacing: -5px;
}
.ind_block01_box {
  position: absolute;
  top: 165px;
  border-radius: 32px;
  background: #fff;
  padding: 190px 100px 243px;
  width: 100%;
}
.ind_block01_box ._title {
  text-align: center;
}
.ind_block01_box ._title span {
  display: block;
}
.ind_block01_box ._title ._big {
  position: relative;
  left: 40px;
  margin-bottom: 25px;
  color: #0a4bb7;
  font-size: 102px;
  line-height: 100%;
  letter-spacing: 3px;
}
.ind_block01_box ._title .en {
  margin-bottom: 25px;
  color: rgba(44, 95, 222, 0.36);
  font-size: 26px;
  letter-spacing: -0.5px;
}
.ind_block01_bottle {
  display: flex;
  justify-content: space-between;
}
.ind_block01_bottle_box {
  width: 400px;
}
.ind_block01_bottle_box ._des {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 32px;
  text-align: center;
  grid-row-gap: 5px;
  font-weight: 700;
}
.ind_block01_bottle_box ._des.smp {
  display: none;
}
.ind_block01_bottle_box ._line {
  background: #0a4bb7;
  padding: 4px 15px;
  color: #fff;
  letter-spacing: -2px;
}
.ind_text_translate {
  position: absolute;
  bottom: 160px;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  transform-origin: left center;
  z-index: 1;
  margin: 0 auto;
  border: 4px solid #0a4bb7;
  border-radius: 15px;
  background: #fcf16e;
  padding: 10px 0 10px 45px;
  width: 1300px;
  color: #0a4bb7;
  font-size: 71px;
  line-height: 100%;
  letter-spacing: -7px;
}
.ind_block02 {
  background: rgba(247, 244, 223, 0.41);
  padding-bottom: 120px;
  overflow: hidden;
}
.ind_block02 h4 {
  background: #0a4bb7;
  padding: 74px 0 70px;
  color: #e7e0d5;
  font-size: 26px;
  letter-spacing: -2px;
  text-align: center;
}
.ind_block02_title {
  margin-bottom: 20px;
  padding-top: 100px;
  padding-left: 30px;
  color: #0a4bb7;
  line-height: 120%;
  letter-spacing: -5px;
}
.ind_block02_title .en {
  font-size: 75px;
  letter-spacing: -4px;
}
.ind_block02_title ._text {
  padding-left: 30px;
  font-size: 68px;
}
.ind_block02_content {
  position: relative;
}
.ind_block02_box {
  position: relative;
  padding-top: 50px;
  min-height: 1012px;
}
.ind_block02_box ._des {
  display: flex;
  flex-wrap: wrap;
  max-width: 810px;
  grid-row-gap: 6px;
  padding-left: 30px;
}
.ind_block02_box ._line {
  border-radius: 15px;
  background: #0a4bb7;
  padding: 20px 40px 20px 15px;
  color: #fff;
  font-size: 61px;
  line-height: 100%;
  letter-spacing: -5px;
}
.ind_block02_box:first-child .ind_block02_img {
  top: -15.5%;
}
.ind_block02_box:first-child .ind_block02_title {
  padding-top: 203px;
}
.ind_block02_box:first-child .ind_block02_link {
  bottom: -260px;
  left: 42.5%;
}
@media (min-width: 801px) and (max-width: 1920px) {
  .ind_block02_box:first-child ._line:last-child {
    padding-right: 5px;
  }
}
.ind_block02_box:nth-child(2n) .ind_block02_title {
  padding-left: 45%;
}
.ind_block02_box:nth-child(2n) .ind_block02_box_pd {
  left: 43%;
  padding-left: 0;
}
.ind_block02_box:nth-child(2n) ._des {
  padding-left: 0;
}
.ind_block02_box:nth-child(2n) .ind_block02_img {
  right: auto;
  left: -9%;
}
.ind_block02_box:nth-child(2n) .ind_block02_link {
  left: 18%;
}
@media (min-width: 801px) and (max-width: 1920px) {
  .ind_block02_box:nth-child(2n) ._line:last-child {
    padding-right: 15px;
  }
}
@media (min-width: 801px) and (max-width: 1920px) {
  .ind_block02_box:last-child ._line {
    padding-right: 20px;
  }
}
.ind_block02_box.is-link-hover .ind_block02_img img {
  transform: scale(1.05);
}
.ind_block02_img {
  position: absolute;
  top: 0;
  right: -10%;
  width: 67%;
}
.ind_block02_img img {
  display: block;
  transform: scale(1);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.ind_block02_img .pc {
  display: block;
}
.ind_block02_img .smp {
  display: none;
}
.ind_block02_link {
  position: absolute;
  bottom: -300px;
  left: 30%;
  width: 275px;
  height: 275px;
}
.ind_block02_link a {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  transition-duration: 0.15s;
  transition-property: color, background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  border: 4px solid #0a4bb7;
  border-radius: 50%;
  background: #fff;
  padding: 30px 15px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #0a4bb7;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
.ind_block02_link a:after {
  width: 204px;
  height: 204px;
  content: "";
  background-image: url("../../../../uploads/ind-img03.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ind_block02_link a:hover {
  background-color: #0a4bb7;
  color: #fff;
}
.ind_block02_link span {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
}
.ind_block02_link ._text01 {
  font-size: 28px;
  letter-spacing: -3px;
}
.ind_block02_link ._text02 {
  margin-bottom: 3px;
  font-size: 20px;
  letter-spacing: -1.5px;
}
.ind_block02_link .en {
  color: #e7e0d5;
  font-size: 26px;
  letter-spacing: -2px;
}
.ind_block03 {
  position: relative;
  background: #fff;
  padding-bottom: 95px;
  overflow: hidden;
}
.ind_block03_content {
  position: relative;
  margin: 0 auto;
  padding-top: 600px;
  max-width: 1800px;
  overflow: hidden;
}
.ind_block03_content:before {
  width: 100%;
  height: 819px;
  content: "";
  background-image: url("../../../../uploads/ind-img06.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  position: absolute;
  top: 0;
  left: 0;
}
.ind_block03 .ind_animate_animation {
  border-top: 3px solid #0a4bb7;
  background: #fff;
  padding-top: 50px;
}
.ind_block03 .ind_animate_text {
  color: #0a4bb7;
  line-height: 90%;
}
.ind_block03_title {
  margin-bottom: 72px;
}
.ind_block03_title .en {
  margin-bottom: 5px;
  color: #0a4bb7;
  font-size: 26px;
}
.ind_block03_title ._ja {
  color: #d9d9c0;
  font-size: 27px;
  letter-spacing: -2px;
}
.ind_block03_title span {
  display: block;
  line-height: 120%;
  text-align: center;
}
.ind_block03 ._title {
  margin-bottom: 110px;
  color: #0a4bb7;
  font-size: 72px;
  line-height: 120%;
  letter-spacing: -1px;
  text-align: center;
}
.ind_block03_box {
  position: relative;
}
.ind_block03_box ._content {
  position: relative;
  top: -136px;
}
.ind_block03_box:after {
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  border: 3px solid #0a4bb7;
  border-radius: 50%;
  border-bottom-right-radius: unset;
  border-bottom-left-radius: unset;
  background: #fff;
  width: 160%;
  height: 4100px;
  pointer-events: none;
  content: "";
}
.ind_block03_box_content {
  position: relative;
  top: -133px;
  margin: 0 auto;
  max-width: 1300px;
}
.ind_block03_box_content .ind_text_translate {
  top: -37px;
  bottom: auto;
  z-index: 2;
  width: 1355px;
}
.ind_block03_info {
  padding-bottom: 15px;
}
.ind_block03_info ._item {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  border: 5px solid #0a4bb7;
  border-radius: 62px;
  background: #d7edf7;
  padding: 90px 13px 50px 27px;
  width: 320px;
  color: #0a4bb7;
}
.ind_block03_info ._item.is-btn-hover {
  transform: translateY(7px);
}
.ind_block03_info .swiper-slide {
  margin-right: 7px;
  width: 320px;
}
.ind_block03_info ._text {
  margin-bottom: 30px;
  font-size: 38px;
  line-height: 130%;
  letter-spacing: -4px;
}
.ind_block03_info ._des {
  margin-bottom: 30px;
  letter-spacing: -1.2px;
}
.ind_block03_info ._link {
  text-align: center;
}
.ind_block04 {
  position: relative;
  z-index: 2;
  border-top: 5px solid #0a4bb7;
  background: #f7f4df;
}
.ind_block04_top {
  position: relative;
}
.ind_block04_top:before {
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
  border: 5px solid #0a4bb7;
  border-radius: 50%;
  background: #f7f4df;
  width: 270px;
  height: 270px;
  content: "";
}
.ind_block04_top:after {
  position: absolute;
  bottom: 0;
  z-index: -1;
  background: #f7f4df;
  width: 100%;
  height: 100%;
  content: "";
}
.ind_block04 .en {
  position: relative;
  margin-bottom: 40px;
  padding-top: 20px;
  color: #0a4bb7;
  font-size: 26px;
  text-align: center;
}
.ind_block04_link {
  text-align: center;
}
.ind_block04_link .btn {
  min-width: 265px;
}
.ind_block04_box {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  gap: 25px 80px;
  background: #f7f4df;
  padding: 50px 30px 120px;
  padding-top: 50px;
}
.ind_block04_box ._item {
  display: flex;
  position: relative;
  align-items: flex-start;
  padding-top: 20px;
  width: 580px;
  overflow: hidden;
}
.ind_block04_box ._item:before {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 1px;
  content: "";
}
.ind_block04_box ._item:after {
  position: absolute;
  top: 0;
  transform: translateX(-100%);
  background: #0a4bb7;
  width: 100%;
  height: 1px;
  content: "";
}
.ind_block04_box ._des {
  line-height: 180%;
}
.ind_block04_box ._img {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #0a4bb7;
  border-radius: 50%;
  background: #fff;
  width: 110px;
  height: 110px;
}
.ind_block04_box ._img img {
  border-radius: 50%;
}
.ind_block04_box ._info {
  padding-left: 20px;
  width: calc(100% - 109px);
  color: #0a4bb7;
}
.ind_block04_box ._date {
  margin-bottom: 5px;
  font-size: 15px;
}
.ind_block04_box a {
  letter-spacing: -1px;
}
.ind_block04_box a:hover {
  text-decoration: none;
}
.ind_animate_animation {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  column-gap: 40px;
}
.ind_animate_text {
  display: inline-flex;
  animation: marquee 15s linear infinite;
  color: rgba(110, 95, 57, 0.1);
  font-size: 91px;
  line-height: 120%;
  letter-spacing: -2px;
}
.ind_animate_line_a {
  transition: background-size 0.28s ease;
  background: linear-gradient(rgba(10, 75, 183, 0.35), rgba(10, 75, 183, 0.35)) 0 100%/100% 1px no-repeat, linear-gradient(#0a4bb7, #0a4bb7) 0 100%/0% 2px no-repeat;
  padding-bottom: 0.12em;
  text-decoration: none;
}
.ind_animate_line_a:hover {
  background-size: 100% 1px, 100% 2px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes lineRun {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@media (min-width: 1600px) and (max-width: 1920px) {
  .ind_block01_hidetext {
    left: -33%;
  }
  .ind_block02_box:first-child .ind_block02_link {
    left: 35%;
  }
  .ind_block02_box:nth-child(2n) {
    margin-bottom: 140px;
  }
  .ind_block02_box:nth-child(2n) .ind_block02_title {
    padding-left: 34.5%;
  }
  .ind_block02_box:nth-child(2n) .ind_block02_box_pd {
    left: 34%;
  }
  .ind_block02_box:nth-child(2n) .ind_block02_link {
    bottom: -310px;
    left: 17%;
  }
  .ind_block02_box:last-child .ind_block02_title ._text {
    letter-spacing: 1px;
  }
  .ind_block02_box:last-child .ind_block02_img {
    width: 64%;
  }
  .ind_block02_box:last-child .ind_block02_link {
    left: 39.5%;
  }
  .ind_block03_box:after {
    top: -230px;
    width: 160%;
  }
}
@media only screen and (max-width: 768px) {
  .home-page #wrapper {
    padding-top: 80px;
  }
  .ind_video {
    margin: 0 auto 170px;
    border: 6px solid #0a4bb7;
    border-radius: 25px;
    padding-top: 137%;
    width: 90%;
    max-width: 390px;
    height: auto;
  }
  .ind_video video {
    position: absolute;
    inset: 0;
  }
  .ind_video_block {
    position: relative;
    background: #fbf7f0;
    padding-bottom: 145px;
  }
  .ind_video_block:before {
    position: absolute;
    bottom: -5%;
    left: -42%;
    width: 565px;
    height: 565px;
    content: "";
    background-image: url("../../../../uploads/ind-img13.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .ind_video_block .ind_text_translate02 ._line:first-child {
    width: 86%;
  }
  .ind_video_block .ind_text_translate02 ._line:last-child {
    margin-right: 15px;
  }
  .ind_video.smp {
    display: block;
  }
  .ind_text_translate02 {
    display: flex;
    position: absolute;
    right: -7%;
    bottom: 25.5%;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .ind_text_translate02 ._line {
    transform: rotate(-1deg);
    border: 3px solid #0a4bb7;
    border-radius: 15px;
    background: #fcf16e;
    padding: 15px 15px 15px 25px;
    width: 75%;
    color: #0a4bb7;
    font-size: 210%;
    letter-spacing: 1px;
    text-align: center;
  }
  .ind_scroll {
    display: block;
    position: relative;
    margin: 0 auto;
    padding-top: 50px;
    width: 50px;
    text-align: center;
  }
  .ind_scroll:before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
    animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
    border: 1px solid #0a4bb7;
    border-radius: 50%;
    background: #fff;
    width: 13px;
    height: 13px;
    content: "";
  }
  .ind_scroll:after {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background: #0a4bb7;
    width: 2px;
    height: 45px;
    content: "";
  }
  .ind_scroll a {
    color: #0a4bb7;
    font-size: 105%;
    text-decoration: none;
  }
  .ind_block01 {
    background-image: url("../../../../uploads/ind-img11smp.png");
    background-position: top -500px center;
    background-size: auto;
    padding-top: 0;
    padding-bottom: 170px;
  }
  .ind_block01_title {
    position: absolute;
    top: -135px;
    margin-bottom: 25px;
    color: #0a4bb7;
    text-align: left;
  }
  .ind_block01_title ._normal01 {
    display: block;
    font-size: 165%;
  }
  .ind_block01_title ._normal02 {
    font-size: 165%;
    letter-spacing: 0;
  }
  .ind_block01_slider {
    top: -30px;
    width: 85%;
  }
  .ind_block01 .ind_text_translate {
    display: none;
  }
  .ind_block01_box {
    position: absolute;
    top: auto;
    bottom: -107px;
    z-index: 1;
    border-radius: unset;
    background: transparent;
    padding: 0;
    width: 100%;
  }
  .ind_block01_box ._title ._big {
    left: 0;
    margin-bottom: 10px;
    font-size: 307%;
    letter-spacing: 4px;
  }
  .ind_block01_box ._title .en {
    display: none;
  }
  .ind_block01_bottle {
    flex-wrap: wrap;
  }
  .ind_block01_bottle_box {
    margin-bottom: 15px;
    width: 100%;
  }
  .ind_block01_bottle_box ._des {
    position: relative;
    border-radius: 6px;
    background: #fbf7f0;
    padding: 7px 25px;
    color: #0a4bb7;
    font-size: 117%;
    letter-spacing: -0.5px;
    text-align: left;
  }
  .ind_block01_bottle_box ._des.pc {
    display: none;
  }
  .ind_block01_bottle_box ._des.smp {
    display: block;
  }
  .ind_block01_bottle_box:first-child ._title {
    text-align: left;
  }
  .ind_block01_bottle_box:first-child ._title ._big {
    padding-left: 2.5%;
    color: #fbf7f0;
  }
  .ind_block01_bottle_box:first-child ._des {
    left: -5%;
    justify-content: flex-start;
  }
  .ind_block01_bottle_box:last-child ._title {
    text-align: right;
  }
  .ind_block01_bottle_box:last-child ._des {
    right: -5%;
    justify-content: flex-start;
    background: #0a4bb7;
    color: #ffffff;
  }
  .ind_block02 {
    padding-bottom: 50px;
  }
  .ind_block02_content {
    padding-top: 40px;
  }
  .ind_block02 h4 {
    padding: 44px 0 40px;
    font-size: 139%;
  }
  .ind_block02_box {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-content: flex-end;
    margin-bottom: 40px;
    padding-top: 0;
    min-height: 400px;
  }
  .ind_block02_box:first-child .ind_block02_title {
    padding-top: 0;
  }
  .ind_block02_box:first-child .ind_block02_img {
    top: 0;
  }
  .ind_block02_box:nth-child(2n) .ind_block02_img {
    left: -41%;
  }
  .ind_block02_box:nth-child(2n) .ind_block02_title {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding-right: 17%;
    padding-left: 0;
  }
  .ind_block02_box:nth-child(2n) .en {
    text-align: right;
  }
  .ind_block02_box:nth-child(2n) .ind_block02_box_pd {
    left: 0;
  }
  .ind_block02_box:nth-child(2n) ._line {
    width: 100%;
  }
  .ind_block02_box:nth-child(2n) .ind_block02_link02 {
    display: block;
    padding-right: 6%;
    text-align: right;
  }
  .ind_block02_box:last-child ._line:first-child {
    width: 69%;
  }
  .ind_block02_box:last-child ._line:last-child {
    width: 100%;
  }
  .ind_block02_box ._des {
    margin-bottom: 15px;
    padding-left: 2.5%;
  }
  .ind_block02_box ._line {
    border-radius: 10px;
    padding: 15px 30px 15px 15px;
    min-width: 55%;
    font-size: 157%;
    line-height: 100%;
    letter-spacing: 0.5px;
  }
  .ind_block02_box ._line:first-child {
    width: 100%;
  }
  .ind_block02_box_pd {
    width: 90%;
  }
  .ind_block02_title {
    padding-left: 2.5%;
  }
  .ind_block02_title span {
    display: block;
  }
  .ind_block02_title .en {
    padding-bottom: 32px;
    width: 100%;
    color: #e7e0d5;
    font-size: 415%;
  }
  .ind_block02_title ._text {
    padding-left: 0;
    font-size: 230%;
    letter-spacing: -3px;
    text-shadow: 3px 3px 4px #fff;
  }
  .ind_block02_link {
    display: none;
  }
  .ind_block02_link02 {
    padding-left: 2.5%;
  }
  .ind_block02_link02 a {
    position: relative;
    padding-left: 30px;
    color: #0a4bb7;
    font-size: 95%;
    letter-spacing: -1px;
  }
  .ind_block02_link02 a:before {
    width: 18px;
    height: 18px;
    content: "";
    background-image: url("../../../../uploads/icon-02.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 2px;
    left: 0;
  }
  .ind_block02_img {
    right: -34%;
    width: 100%;
  }
  .ind_block02_img .pc {
    display: none;
  }
  .ind_block02_img .smp {
    display: block;
  }
  .ind_block03 {
    z-index: 1;
    padding-bottom: 20px;
  }
  .ind_block03 .ind_animate_animation {
    padding-top: 35px;
  }
  .ind_block03_title {
    margin-bottom: 15px;
  }
  .ind_block03_title .en {
    font-size: 120%;
  }
  .ind_block03_title ._ja {
    font-size: 105%;
    letter-spacing: 0px;
  }
  .ind_block03 ._title {
    position: relative;
    left: 3%;
    font-size: 190%;
    line-height: 135%;
    letter-spacing: 0;
  }
  .ind_block03_box .container-1500 {
    width: 100%;
  }
  .ind_block03_box .ind_text_translate02 {
    top: -70px;
    right: auto;
    bottom: auto;
    left: 5%;
    justify-content: flex-start;
    z-index: 2;
  }
  .ind_block03_box .ind_text_translate02 ._line {
    font-size: 155%;
    letter-spacing: 0;
    text-align: left;
    white-space: nowrap;
  }
  .ind_block03_box .ind_text_translate02 ._line:last-child {
    width: 95%;
  }
  .ind_block03_box_content {
    z-index: 3;
  }
  .ind_block03_box:after {
    top: -200px;
    border-bottom: unset;
    height: 900px;
  }
  .ind_block03_info {
    padding: 0 20px;
    overflow: visible;
  }
  .ind_block03_info .swiper-wrapper {
    align-items: stretch;
  }
  .ind_block03_info .swiper-slide {
    margin-right: 0;
    width: auto;
  }
  .ind_block03_info ._text {
    margin-bottom: 15px;
    font-size: 144%;
    line-height: 150%;
    letter-spacing: 0px;
  }
  .ind_block03_info ._des {
    margin-bottom: 15px;
    letter-spacing: -1px;
  }
  .ind_block03_info ._item {
    padding: 55px 15px 30px 20px;
    width: auto;
  }
  .ind_block03_info .swiper-button-prev,
  .ind_block03_info .swiper-button-next {
    top: auto;
    bottom: -27px;
    border-radius: 50%;
    background: #0a4bb7;
    width: 45px;
    height: 45px;
  }
  .ind_block03_info .swiper-button-prev {
    left: 38%;
    transform: translateX(-38%);
  }
  .ind_block03_info .swiper-button-next {
    right: 33%;
    transform: translateX(-33%);
  }
  .ind_block03_info svg {
    fill: #fff;
    width: 40%;
    height: 40%;
    color: #fff;
  }
  .ind_block03_content {
    padding-top: 395px;
  }
  .ind_block03_content:before {
    width: 100%;
    height: 345px;
    content: "";
    background-image: url("../../../../uploads/ind-img06smp.jpg");
    background-position: top left 54%;
    position: absolute;
    top: -9%;
    left: 0;
  }
  .ind_block04 {
    position: relative;
  }
  .ind_block04:before {
    position: absolute;
    top: -56px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    border: 5px solid #0a4bb7;
    border-radius: 50%;
    background: #f7f4df;
    width: 270px;
    height: 270px;
    content: "";
  }
  .ind_block04_top::before {
    display: none;
  }
  .ind_block04 .en {
    margin-bottom: 30px;
    padding-top: 0px;
    font-size: 130%;
  }
  .ind_block04_box {
    gap: 30px 0;
    padding: 50px 2.5% 80px 0;
  }
  .ind_block04_box ._item {
    align-items: center;
    padding-top: 0;
    width: 100%;
  }
  .ind_block04_box ._item:before {
    display: none;
  }
  .ind_block04_box ._info {
    padding-left: 5%;
  }
  .ind_block04_box ._date {
    font-size: 95%;
  }
  .ind_animate_animation {
    column-gap: 20px;
  }
  .ind_animate_text {
    display: inline-flex;
    font-size: 290%;
  }
  @keyframes circlemove {
    0% {
      transform: translate(-50%, 0);
    }
    100% {
      transform: translate(-50%, 45px);
    }
  }
  @keyframes cirlemovehide {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    80% {
      opacity: 0.9;
    }
    100% {
      opacity: 0;
    }
  }
}
@media (min-width: 360px) and (max-width: 415px) {
  .ind_block01_bottle_box ._des {
    font-size: 115%;
  }
  .ind_block02_box ._line {
    font-size: 137%;
  }
}
/* helpers */
/* 
 * Both PC & SMP 
 */
.dema_section01 {
  padding-bottom: 70px;
}
.dema_section02 {
  margin-bottom: 112px;
  background-color: #fff;
  padding: 120px 0 135px;
}
.dema_section02 .title02 {
  margin-bottom: 145px;
}
.dema_section03 {
  padding-bottom: 120px;
}
.dema_section04 {
  background-color: #fff;
  padding: 85px 0 140px;
}
.dema_section04 .title02 {
  margin-bottom: 50px;
}
.dema_block01 {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.dema_block01.dema_block01b::after {
  background-image: url("../../../../uploads/icon-star.png");
  background-position: "center center";
  background-repeat: "no-repeat";
  position: absolute;
  top: 90px;
  right: 3px;
  width: 47px;
  height: 47px;
  content: "";
}
.dema_block01__img {
  position: absolute;
  top: -18px;
}
@media only screen and (min-width: 769px) {
  .dema_block01b .dema_block01__img {
    top: 10px;
  }
}
.dema_block01__text {
  margin-left: 75px;
  border-radius: 48px;
  background-color: #0a4bb7;
  padding: 53px 75px 47px 370px;
  color: #fff;
  text-align: justify;
}
@media only screen and (min-width: 769px) {
  .dema_block01b .dema_block01__text {
    padding-right: 50px;
    padding-bottom: 40px;
  }
}
.dema_block01__text ._tit {
  margin-bottom: 10px;
  font-size: 29px;
}
.dema_block01__text ._des {
  margin-bottom: 28px;
  font-weight: 700;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: -0.5px;
}
.dema_block01b .dema_block01__text ._des p {
  margin-bottom: 25px;
  line-height: 160%;
}
.dema_block01__text ._img {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
}
.dema_block01__text ._img img {
  margin: 0;
}
.dema_block02 {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  margin-bottom: 55px;
}
.dema_block02__img {
  position: absolute;
  top: -23px;
  right: 0;
}
.dema_block02__text {
  margin-right: 100px;
  margin-left: 75px;
  border: 2px solid #0a4bb7;
  border-radius: 48px;
  background-color: #fff;
  padding: 52px 360px 37px 55px;
  max-width: 905px;
  color: #0a4bb7;
  text-align: justify;
}
.dema_block02__text ._tit {
  margin-bottom: 10px;
  font-size: 29px;
}
.dema_block02__text ._des {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
}
.dema_block02__text ._list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 2.75%;
}
.dema_block02__text ._list li {
  border-radius: 23px;
  background-color: #e4e7f0;
  padding: 8px 7px 6px;
  width: 31.5%;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}
.dema_block02__text ._list li._fullw {
  width: 100% !important;
}
.dema_block03 {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.dema_block03__img {
  position: absolute;
  top: -73px;
  left: 0;
  z-index: 1;
}
@media only screen and (min-width: 769px) {
  ._reverse .dema_block03__img {
    top: -15px;
    right: -85px;
    left: auto;
  }
}
.dema_block03__text {
  position: relative;
  margin-left: 187px;
  border-radius: 48px;
  padding: 42px 70px 37px 480px;
  max-width: 905px;
  color: #fff;
  text-align: justify;
}
.dema_block03__text::after {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  z-index: -1;
  border-radius: 245px;
  background-color: #0a4bb7;
  width: 100vw;
  height: 100%;
  content: "";
}
@media only screen and (min-width: 769px) {
  ._reverse .dema_block03__text {
    margin-left: 0;
    padding: 55px 393px 37px 0;
  }
  ._reverse .dema_block03__text::after {
    right: 60px;
    left: auto;
    transform: translateY(-50%);
    z-index: -1;
  }
}
.dema_block03__text ._tit {
  margin-bottom: 30px;
  font-size: 29px;
  line-height: 155%;
  letter-spacing: -0.5px;
}
.dema_block03__text ._des {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
}
.dema_block03__text ._list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 2%;
  margin-bottom: 20px;
}
.dema_block03__text ._list li {
  border: 2px solid #fff;
  border-radius: 23px;
  padding: 6px 7px 4px;
  width: 49%;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}
.dema_block03__text ._list li._halfw {
  width: 49.5% !important;
}
.dema_block03__text ._list li._fullw {
  width: 100% !important;
}
@media only screen and (min-width: 769px) {
  ._reverse .dema_block03__text ._list {
    gap: 8px 1%;
  }
  ._reverse .dema_block03__text ._list li {
    width: 32.5%;
    letter-spacing: -0.5px;
  }
}
.dema_images {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 48px;
}
.dema_images ._image {
  max-width: 330px;
}
.dema_images ._image h5 {
  display: inline-block;
  margin-bottom: 5px;
  border: 1px solid #0a4bb7;
  background-color: #fff;
  padding: 7px 5px 6px;
  min-width: 175px;
  color: #0a4bb7;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}
.dema_block04 {
  display: flex;
  position: relative;
  flex-wrap: wrap;
}
.dema_block04__img {
  position: absolute;
  top: -11px;
  left: 36px;
  z-index: 1;
}
.dema_block04__text {
  position: relative;
  margin-left: 132px;
  border-radius: 48px;
  padding: 42px 0 10px 240px;
  max-width: 1000px;
  color: #fff;
}
.dema_block04__text::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
  border-radius: 78px;
  background-color: #0a4bb7;
  width: 100vw;
  height: 100%;
  content: "";
}
.dema_block04__text ._steps {
  --number_cirle: 50px;
  position: relative;
}
.dema_block04__text ._steps li {
  position: relative;
  margin-bottom: 30px;
  padding-left: 70px;
}
.dema_block04__text ._steps li::before {
  position: absolute;
  top: 20px;
  left: calc(var(--number_cirle) * 0.5);
  border-radius: 50%;
  background-color: #fff;
  width: 2px;
  height: calc(100% + 40px);
  content: "";
}
.dema_block04__text ._steps li:last-child::before {
  display: none;
}
.dema_block04__text ._steps li span {
  display: block;
  width: 100%;
}
.dema_block04__text ._steps li ._num {
  display: flex;
  position: absolute;
  top: -2px;
  left: 0px;
  justify-content: center;
  align-items: center;
  z-index: 2;
  border: 1px solid #fff;
  border-radius: 50%;
  width: var(--number_cirle);
  height: var(--number_cirle);
  color: #0a4bb7;
  font-size: 23px;
}
.dema_block04__text ._steps li ._num::before, .dema_block04__text ._steps li ._num::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: var(--number_cirle);
  height: var(--number_cirle);
  content: "";
}
.dema_block04__text ._steps li ._num::before {
  z-index: -2;
  background-color: #fff;
}
.dema_block04__text ._steps li ._num::after {
  z-index: -1;
  border: 2px solid #0a4bb7;
  width: calc(var(--number_cirle) - 4px);
  height: calc(var(--number_cirle) - 4px);
}
.dema_block04__text ._steps li ._tit {
  margin-bottom: 5px;
  font-size: 22px;
}
.dema_block04__text ._steps li ._txt {
  font-weight: 700;
  font-size: 16px;
}

/*
 * only SMP 
 */
@media only screen and (max-width: 768px) {
  .dema_section01 {
    padding-bottom: 70px;
  }
  .dema_section01 .title02 {
    margin-bottom: 130px;
  }
  .dema_section02 {
    margin-bottom: 70px;
    padding: 70px 0 60px;
  }
  .dema_section02 .title02 {
    margin-bottom: 40px;
  }
  .dema_section04 {
    padding-bottom: 90px;
  }
  .dema_section04 .title02 {
    margin-bottom: 120px;
  }
  .dema_block01 {
    margin-bottom: 130px;
  }
  .dema_block01.dema_block01b {
    margin-bottom: 0;
  }
  .dema_block01.dema_block01b::after {
    display: none;
  }
  .dema_block01__img {
    top: -100px;
    left: -40px;
    width: 285px;
  }
  .dema_block01__text {
    margin-left: 0;
    padding: 200px 25px 47px;
  }
  .dema_block01__text ._tit {
    font-size: 140%;
  }
  .dema_block01__text ._des {
    margin-bottom: 40px;
    font-size: 95%;
    letter-spacing: 0;
  }
  .dema_block01__text ._img {
    column-gap: 2%;
    width: 100%;
  }
  .dema_block01__text ._img img {
    max-width: 32%;
  }
  .dema_block02 {
    margin-bottom: 130px;
  }
  .dema_block02__img {
    top: -100px;
    right: -40px;
    width: 285px;
  }
  .dema_block02__text {
    margin-right: 0;
    margin-left: 0;
    padding: 200px 15px 47px;
  }
  .dema_block02__text ._tit {
    font-size: 140%;
  }
  .dema_block02__text ._des {
    margin-bottom: 40px;
    font-size: 95%;
    letter-spacing: 0;
  }
  .dema_block02__text ._list {
    justify-content: left;
    gap: 8px 2%;
  }
  .dema_block02__text ._list li {
    padding: 7px;
    width: 49%;
    font-size: 90%;
  }
  .dema_block02__text ._list li._fullwsmp {
    width: 100% !important;
  }
  .dema_block03__img {
    position: relative;
    top: auto;
    left: 0;
    width: 95%;
  }
  .dema_block03__text {
    margin-top: -120px;
    margin-left: 0;
    padding: 145px 10px 37px 50px;
  }
  .dema_block03__text::after {
    left: 20px;
    border-radius: 45px;
    width: 1500px;
  }
  .dema_block03__text ._tit {
    font-size: 140%;
  }
  .dema_block03__text ._des {
    margin-bottom: 40px;
    font-size: 95%;
    letter-spacing: 0;
  }
  .dema_block03__text ._list {
    gap: 8px 2%;
  }
  .dema_block03__text ._list li {
    padding: 10px;
    width: 49%;
    font-size: 90%;
  }
  .dema_block03__text ._list li._halfw {
    width: 100% !important;
  }
  .dema_images {
    gap: 30px 0;
  }
  .dema_images ._image {
    width: 100%;
    max-width: 100%;
  }
  .dema_images ._image img {
    width: 100%;
  }
  .dema_block04__img {
    top: -80px;
    right: auto;
    left: -2.5%;
    width: 285px;
  }
  .dema_block04__text {
    margin-left: 0;
    padding: 230px 0 10px 3%;
  }
  .dema_block04__text::after {
    left: 20px;
    border-radius: 45px;
    width: 1500px;
  }
  .dema_block04__text ._steps {
    margin-left: 25px;
  }
  .dema_block04__text ._steps li ._tit {
    font-size: 120%;
  }
  .dema_block04__text ._steps li ._txt {
    font-size: 95%;
  }
}
/* helpers */
/* 
 * Both PC & SMP 
 */
.oem {
  --oemColor: #0A4BB7;
  --oemFontSize: 15px;
  margin-bottom: 200px;
  color: var(--oemColor);
  font-size: var(--oemFontSize);
}
.oem .main_title02 p {
  line-height: 200%;
}
.oem_section01 {
  margin: 135px 0 70px;
}
.oem_section02 {
  margin-bottom: 80px;
}
.oem_title {
  margin-bottom: 40px;
}
.oem_title span {
  display: block;
  text-align: center;
}
.oem_title ._en {
  margin-bottom: 3px;
  font-size: 39px;
  line-height: 100%;
  letter-spacing: -1px;
}
.oem_title ._ja {
  font-weight: 700;
  font-size: 15px;
}
.oem_strength {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
}
.oem_strength ._item {
  margin: 0 auto;
  border: 2px solid var(--oemColor);
  border-radius: 13px;
  background-color: #fff;
  padding: 40px 25px 50px;
  width: 70%;
  max-width: 330px;
}
.oem_strength ._item h3 {
  margin-bottom: 40px;
  font-size: 27px;
  text-align: center;
}
.oem_strength ._item p {
  line-height: 190%;
}
.oem_flow_intro {
  margin-top: -10px;
  margin-bottom: 45px;
  line-height: 190%;
  text-align: center;
}
.oem_flow_list {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 70px;
  margin: auto;
  width: 100%;
  max-width: 935px;
}
.oem_flow_list ._item {
  --itemNumberSize: 87px;
  --itemImageSize: 258px;
  position: relative;
  width: 265px;
}
.oem_flow_list ._item::after {
  background-image: url("../../../../uploads/oem-icon-right.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: block;
  position: absolute;
  top: 105px;
  left: calc(100% + 15px);
  width: 46px;
  height: 45px;
  content: "";
}
.oem_flow_list ._item:nth-child(3n)::after {
  display: none;
}
.oem_flow_list ._item_number {
  display: inline-flex;
  position: absolute;
  top: -5px;
  left: 30px;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background-color: var(--oemColor);
  width: var(--itemNumberSize);
  height: var(--itemNumberSize);
  color: #fff;
  font-size: 31px;
}
.oem_flow_list ._item_image {
  margin: 0 auto 22px;
  border: 2px solid var(--oemColor);
  border-radius: 50%;
  width: var(--itemImageSize);
}
.oem_flow_list ._item_step {
  margin-bottom: 10px;
  margin-bottom: 5px;
  font-size: 19px;
  line-height: 160%;
  text-align: center;
}
.oem_flow_list ._item_name {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 160%;
  text-align: center;
}
.oem_flow_list ._item_text {
  line-height: 190%;
}

/*
 * only SMP 
 */
@media only screen and (max-width: 768px) {
  .oem_strength {
    gap: 20px 0;
  }
  .oem_strength ._item {
    width: 100%;
  }
  .oem_strength ._item h3 {
    margin-bottom: 30px;
    font-size: 180%;
  }
  .oem_flow_list {
    gap: 100px 0;
  }
  .oem_flow_list ._item {
    --itemNumberSize: 65px;
    --itemImageSize: 200px;
    margin: 0 auto;
    width: 80%;
    max-width: 400px;
  }
  .oem_flow_list ._item::after {
    top: auto;
    bottom: -70px;
    left: 50%;
    transform: translate(-50%, 0) rotate(90deg);
  }
  .oem_flow_list ._item:nth-child(3n)::after {
    display: block;
  }
  .oem_flow_list ._item:last-child::after {
    display: none;
  }
  .oem_flow_list ._item_number {
    font-size: 28px;
  }
  .oem_flow_list ._item_step, .oem_flow_list ._item_name {
    font-size: 150%;
  }
}
.business {
  --background-position-left: -280px;
  --background-position-bottom: -220px;
}
.business .btn {
  justify-content: center;
  padding: 0 15px;
  min-width: 288px;
  height: 62px;
}
.business .btn:hover {
  text-decoration: none;
}
.business_desc {
  color: #0a4bb7;
  font-size: 23px;
}
.business_content {
  margin-left: 85px;
}
.business_bottom {
  display: flex;
  justify-content: center;
}
.business_block01 {
  background-image: url("../../../../uploads/business-img12.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  margin-bottom: 165px;
  padding-bottom: 25px;
}
.business_block01_list {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
  padding-top: 100px;
}
.business_block01_list ._item {
  display: flex;
  position: relative;
  align-items: end;
  border: 4px solid #0a4bb7;
  border-radius: 31px;
  background-color: #f2f2f2;
  padding: 30px;
  width: 303px;
  min-height: 452px;
  color: #0a4bb7;
}
.business_block01_list ._img {
  display: flex;
  position: absolute;
  top: 74px;
  right: 50%;
  justify-content: center;
  align-items: center;
  transform: translate(50%, -50%);
  border: 4px solid #0a4bb7;
  border-radius: 50%;
  background: #fff;
  width: 282px;
  height: 282px;
  overflow: hidden;
}
.business_block01_list ._img img {
  display: block;
  max-width: none;
}
.business_block01_list ._img img.img_center {
  transform: translate(-15%, 0%);
}
.business_block01_list ._title {
  margin-bottom: 17px;
  font-size: 24px;
  letter-spacing: -3px;
  text-align: center;
}
.business_block01_list ._text {
  min-height: 108px;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: -2.5px;
}
.business_block02 {
  margin-bottom: 187px;
}
.business_block02_list {
  margin-bottom: 36px;
}
.business_block02_list img {
  margin: 0;
}
.business_block02 .business_desc {
  margin-bottom: 17px;
}
.business_block03 {
  padding-bottom: 137px;
}
.business_block03_list {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 70px;
}
.business_block03_list ._item {
  border-radius: 31px;
  background-color: #f2f2f2;
  padding: 46px 10px;
  width: 246px;
  height: 436px;
  color: #0a4bb7;
  text-align: center;
}
.business_block03_list ._title {
  margin-bottom: 15px;
  font-size: 24px;
}
.business_block03_list ._text {
  fsont-size: 18px;
  font-weight: bold;
}
.business_block03_list img {
  margin-bottom: 29px;
}
.business_block03 .business_desc {
  margin-bottom: 34px;
}

@media only screen and (max-width: 768px) {
  .business .btn {
    min-width: 235px;
    font-size: 90%;
  }
  .business_desc {
    font-size: 105%;
  }
  .business_content {
    margin-left: 0;
  }
  .business_block01 {
    margin-bottom: 95px;
    padding-bottom: 0;
    background-image: url("../../../../uploads/business-img13.png");
    background-repeat: no-repeat;
    background-position: right -30px bottom 15px;
  }
  .business_block01_list {
    flex-direction: column;
    align-items: center;
    gap: 100px;
    margin-bottom: 35px;
  }
  .business_block01_list ._item {
    padding: 43px 30px;
    width: 303px;
    min-height: 354px;
  }
  .business_block01_list ._img {
    position: absolute;
    top: 10%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 236px;
    height: 236px;
  }
  .business_block01_list ._title {
    margin-bottom: 23px;
    font-size: 120%;
    letter-spacing: 0;
  }
  .business_block01_list ._text {
    min-height: 0;
    font-size: 90%;
    letter-spacing: -1px;
  }
  .business_block02 {
    margin-bottom: 150px;
  }
  .business_block02_list {
    margin-bottom: 20px;
  }
  .business_block02_list img {
    margin: 0;
  }
  .business_block02 .business_desc {
    margin-bottom: 17px;
  }
  .business_block03 {
    padding-bottom: 30px;
  }
  .business_block03_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .business_block03_list ._item {
    display: flex;
    position: relative;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
    border-radius: 14px;
    background-color: #ededed;
    padding: 10px 15px 10px 29px !important;
    width: 100%;
    height: auto !important;
    min-height: 103px;
  }
  .business_block03_list ._arrow {
    position: relative;
    width: 18px;
    height: 14px;
    content: "";
    background-image: url("../../../../uploads/icon-arrow-down.png");
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    left: 70px;
    transform: translateX(-50%);
  }
  .business_block03_list ._title {
    flex: 1;
    margin-bottom: 0;
    font-size: 120%;
  }
  .business_block03_list ._text {
    display: none;
  }
  .business_block03_list img {
    margin: 0;
    margin-bottom: 0;
    border-radius: 50%;
    width: 84px;
    height: 87px;
  }
  .business_block03 .business_desc {
    margin-bottom: 34px;
  }
}
.message {
  --background-position-left: -340px;
  --background-position-bottom: -400px;
}
.message_block01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 165px;
  border-radius: 105px;
  background: #c7d5f7;
  padding: 104px 0 72px;
}
.message_block01_img {
  position: relative;
  width: 650px;
}
.message_block01_img img {
  border: 4px solid #0a4bb7;
  border-radius: 50%;
}
.message_block01_img ._img {
  position: relative;
  top: 17px;
  left: -87px;
}
.message_block01_img ._info {
  position: absolute;
  bottom: 0;
  left: 20px;
}
.message_block01_img ._text01 {
  margin-bottom: 5px;
  background: #0a4bb7;
  padding: 7px 0;
  width: 120px;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
.message_block01_img ._text02 {
  margin-left: 15px;
  border: 4px solid #0a4bb7;
  background: #fff;
  width: 195px;
  color: #0a4bb7;
  font-size: 31px;
  text-align: center;
}
.message_block01_content {
  padding-right: 40px;
  width: calc(100% - 650px);
  color: #0a4bb7;
  font-size: 18px;
  line-height: 185%;
  letter-spacing: -1.5px;
}
.message_block01_content ._title {
  margin-bottom: 30px;
  font-size: 57px;
  line-height: 122%;
  letter-spacing: -6px;
}
.message_block01_content ._line {
  display: inline-block;
  margin-bottom: 18px;
  background: #0a4bb7;
  padding: 7px 40px 5px 25px;
  color: #fff;
  font-size: 31px;
  letter-spacing: -4px;
}
.message_block01_content ._text011 ._line:first-child {
  padding-right: 0;
}
.message_block01_content ._text011 ._line:last-child {
  padding-right: 85px;
  padding-left: 0;
}
.message_block01_content ._mbt01 {
  margin-bottom: 28px;
  font-weight: 700;
}
.message_block01_content ._mbt02 {
  margin-bottom: 40px;
}
.message_block01_content ._left {
  position: relative;
  left: -70px;
  white-space: nowrap;
}
.message_block02 {
  position: relative;
  margin-bottom: 117px;
  border: 4px solid #0a4bb7;
  border-radius: 105px;
  background: #fff;
  padding-top: 178px;
  padding-bottom: 128px;
  color: #0a4bb7;
  text-align: center;
}
.message_block02_top {
  display: flex;
  position: absolute;
  top: -99px;
  left: 50%;
  justify-content: center;
  align-items: center;
  transform: translateX(-50%);
  border: 4px solid #0a4bb7;
  border-radius: 50%;
  background: #fff;
  width: 245px;
  height: 245px;
  color: #0a4bb7;
  font-size: 25px;
}
.message_block02_title {
  margin-bottom: 50px;
}
.message_block02_title span {
  display: block;
}
.message_block02_title ._en {
  padding-bottom: 7px;
  font-size: 45px;
  line-height: 120%;
}
.message_block02_title ._jp {
  font-size: 25px;
}
.message_block02 ._des {
  margin-bottom: 30px;
  font-size: 23px;
  line-height: 175%;
}
.message_block02 ._img {
  margin-bottom: 95px;
}
.message_block02_flow {
  display: flex;
  position: relative;
  justify-content: space-between;
  margin: 0 auto;
  width: 1032px;
}
.message_block02_flow ._item {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #0a4bb7;
  border-radius: 50%;
  background: #fff;
  width: 296px;
  height: 296px;
}
.message_block02_flow ._item:last-child p:before {
  display: none;
}
.message_block02_flow p {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #0a4bb7;
  width: 272px;
  height: 272px;
  color: #fff;
  font-size: 21px;
}
.message_block02_flow p:before {
  position: absolute;
  top: 50%;
  right: -74%;
  transform: translateX(-50%);
  background: #0a4bb7;
  width: 55%;
  height: 2px;
  content: "";
}
.message_block02_flow ._text {
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
}
.message_block03 h5 {
  margin: 0 auto;
  max-width: 1400px;
  color: rgba(110, 95, 57, 0.1);
  font-size: 91px;
  letter-spacing: -11px;
}

#message_block03_gallery {
  --f-carousel-slide-width: 25%;
  position: relative;
  margin-bottom: -100px;
  padding: 30px 0 180px;
}
#message_block03_gallery:before {
  position: absolute;
  top: 0;
  left: 0;
  background: #e7e0d5;
  width: 100%;
  height: 100%;
  content: "";
}

@media only screen and (max-width: 768px) {
  .message {
    padding-top: 70px;
  }
  .message_block01 {
    position: relative;
    flex-wrap: wrap;
    margin-bottom: 130px;
    border-radius: 60px;
    padding: 81px 7% 90px;
  }
  .message_block01_img {
    position: relative;
    top: -100px;
    right: -2%;
    margin-bottom: -10px;
    width: 100%;
  }
  .message_block01_img ._img {
    top: 0;
    left: auto;
  }
  .message_block01_img ._text01 {
    padding: 7px 0;
    width: 128px;
    font-size: 117%;
  }
  .message_block01_img ._text02 {
    margin-left: 0;
    padding: 6px 0 3px;
    width: 160px;
    font-size: 143%;
  }
  .message_block01_img ._info {
    bottom: -46px;
    left: 12%;
  }
  .message_block01_content {
    padding-right: 0;
    width: 100%;
    font-size: 105%;
    line-height: 170%;
  }
  .message_block01_content ._title {
    margin-bottom: 30px;
    font-size: 179%;
    line-height: 135%;
    letter-spacing: -2px;
  }
  .message_block01_content ._left {
    left: -8%;
  }
  .message_block01_content ._line {
    margin-bottom: 15px;
    padding: 7px 40px 5px 20px;
    font-size: 117%;
    letter-spacing: -1px;
  }
  .message_block01_content ._text011 ._line:first-child {
    margin-bottom: 0;
    padding-right: 17px;
  }
  .message_block01_content ._text011 ._line:last-child {
    padding-right: 70px;
    padding-left: 20px;
  }
  .message_block01_content ._mbt02 {
    margin-bottom: 0;
  }
  .message_block02 {
    margin-bottom: 35px;
    border-radius: 55px;
    padding: 180px 5% 70px;
  }
  .message_block02_top {
    top: -80px;
    width: 225px;
    height: 225px;
    font-size: 135%;
  }
  .message_block02_title {
    margin-bottom: 25px;
  }
  .message_block02_title ._en {
    padding-bottom: 2px;
    font-size: 180%;
  }
  .message_block02_title ._jp {
    font-size: 125%;
  }
  .message_block02 ._des {
    font-size: 97%;
  }
  .message_block02 ._img {
    margin-bottom: 50px;
  }
  .message_block02_flow {
    row-gap: 30px;
    flex-wrap: wrap;
    width: 100%;
  }
  .message_block02_flow ._item {
    margin: 0 auto;
    width: 280px;
    height: 280px;
  }
  .message_block02_flow p {
    width: 260px;
    height: 260px;
    font-size: 110%;
  }
  .message_block02_flow p:before {
    top: auto;
    right: 50%;
    bottom: -69px;
    transform: unset;
    width: 2px;
    height: 80px;
  }
  .message_block03 h5 {
    max-width: 90%;
    font-size: 250%;
    letter-spacing: -1px;
  }
  .message_block03 h5 ._line:last-child {
    display: none;
  }
  #message_block03_gallery {
    --f-carousel-slide-width: 70%;
    margin-bottom: -50px;
    padding: 30px 0 55px;
  }
  #message_block03_gallery:before {
    position: absolute;
    top: 0;
    left: 0;
    background: #e7e0d5;
    width: 100%;
    height: 120%;
    content: "";
  }
}
@media (min-width: 360px) and (max-width: 410px) {
  .message_block03 h5 {
    font-size: 222%;
  }
}
.company-profile .wrap_text {
  display: none;
}
.company-profile_block01 {
  margin-bottom: 81px;
}
.company-profile_block01 ._list {
  border-radius: 67px;
  background-color: #FFFFFF;
  padding: 70px 140px;
  color: #0A4BB7;
}
.company-profile_block01 ._item {
  display: flex;
  position: relative;
  align-items: center;
  gap: 57px;
  padding: 18px 0;
  font-weight: bold;
  font-size: 18px;
}
.company-profile_block01 ._item:not(:last-child)::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #0A4BB7;
  width: 100%;
  height: 1px;
  content: "";
}
.company-profile_block01 ._item .btn_map {
  position: relative;
  margin-left: 15px;
  border-radius: 5px;
  background-color: #0A4BB7;
  padding: 5px 25px 5px 15px;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 15px;
}
.company-profile_block01 ._item .btn_map::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  content: "";
  background-image: url("../../../../uploads/icon-link.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.company-profile_block01 ._label {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 26px;
  background-color: #EBEBEB;
  padding: 10px 10px;
  min-width: 170px;
}
.company-profile_block02 {
  margin-bottom: 126px;
}
.company-profile_block02 ._map {
  margin-bottom: 55px;
  width: 100%;
}
.company-profile_block02 ._map iframe {
  border-radius: 20px;
  width: 1300px;
  height: 571px;
}
.company-profile_block02 ._info {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.company-profile_block02 ._block {
  position: relative;
  padding-left: 46px;
  color: #0A4BB7;
}
.company-profile_block02 ._block::before {
  position: absolute;
  top: 0;
  left: 0;
  background: #0A4BB7;
  width: 13px;
  height: 100%;
  content: "";
}
.company-profile_block02 ._block ._title {
  margin-bottom: 17px;
  font-size: 30px;
}
.company-profile_block02 ._block ._content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-weight: bold;
}
.company-profile_block03 {
  margin-bottom: 143px;
}
.company-profile_block03 ._desc {
  border-radius: 31px;
  background-color: #FFFFFF;
  padding: 44px 75px;
  max-width: 1300px;
  color: #0A4BB7;
  font-weight: bold;
  font-size: 18px;
}
.company-profile_block04 ._box:last-child {
  padding-bottom: 180px;
}
.company-profile_block04 ._inner {
  display: flex;
  position: relative;
  align-items: center;
  gap: 65px;
}
.company-profile_block04 ._inner::after {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  width: 100vw;
  height: 202px;
  content: "";
  background-image: url("../../../../uploads/company-profile-img03.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  z-index: 0;
}
.company-profile_block04 ._circle {
  display: flex;
  position: relative;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  z-index: 2;
  border: 4px solid #0A4BB7;
  border-radius: 50%;
  background: #fff;
  width: 246px;
  height: 246px;
  color: #0A4BB7;
  font-size: 30px;
}
.company-profile_block04 ._text {
  position: relative;
  z-index: 1;
  color: #fff;
}
.company-profile_block04 ._text h3 {
  margin-bottom: 20px;
  font-size: 27px;
}
.company-profile_block04 ._text p {
  font-weight: bold;
  font-size: 17px;
}
.company-profile_block04 .rotate ._inner::after {
  right: 10%;
  left: auto;
}
.company-profile_block04 .rotate ._inner {
  flex-direction: row-reverse;
  justify-content: space-between;
}
.company-profile_block04 .rotate ._text {
  margin-left: 50px;
}
.company-profile_block04 ._timeline {
  display: flex;
  gap: 60px;
  padding: 30px 0;
}
.company-profile_block04 ._timeline ._year {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 35px;
  color: #0A4BB7;
  font-weight: bold;
  font-size: 82px;
  line-height: 1;
  letter-spacing: -5px;
}
.company-profile_block04 ._timeline ._year span:nth-child(2) {
  display: inline-block;
  transform: rotate(90deg);
}
.company-profile_block04 ._timeline ._list ._item {
  display: flex;
  gap: 50px;
  padding: 15px 0;
  color: #0A4BB7;
  font-weight: bold;
  font-size: 18px;
}
.company-profile_block04 ._timeline ._list ._item ._date {
  white-space: nowrap;
}

@media only screen and (max-width: 768px) {
  .company-profile_block01 {
    margin-top: 0;
    margin-bottom: 50px;
  }
  .company-profile_block01 .title03 {
    display: none;
  }
  .company-profile_block01 ._list {
    border-radius: 50px;
    padding: 33px 27px;
  }
  .company-profile_block01 ._item {
    flex-direction: column;
    align-items: start;
    gap: 14px;
    padding: 14px 0;
    font-size: 100%;
  }
  .company-profile_block01 ._item .btn_map {
    font-size: 82%;
  }
  .company-profile_block01 ._label {
    min-width: 110px;
  }
  .company-profile_block02 {
    margin-bottom: 107px;
  }
  .company-profile_block02 ._map iframe {
    width: 100%;
    height: 193px;
  }
  .company-profile_block02 ._info {
    display: flex;
    flex-direction: column;
    gap: 39px;
  }
  .company-profile_block02 ._block {
    padding-left: 23px;
  }
  .company-profile_block02 ._block ._title {
    margin-bottom: 15px;
    font-size: 120%;
  }
  .company-profile_block02 ._block ._content {
    gap: 35px;
  }
  .company-profile_block03 {
    margin-bottom: 73px;
  }
  .company-profile_block03 ._desc {
    padding: 25px 29px;
    font-size: 90%;
    line-height: 200%;
    letter-spacing: -1px;
  }
  .company-profile_block04 ._box {
    position: relative;
    margin-bottom: 30px;
  }
  .company-profile_block04 ._box:last-child {
    margin-bottom: 0;
    padding-bottom: 100px;
  }
  .company-profile_block04 ._intro ._inner {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
  .company-profile_block04 ._intro ._inner::after {
    display: none;
  }
  .company-profile_block04 ._intro ._circle {
    width: 198px;
    height: 198px;
    font-size: 150%;
  }
  .company-profile_block04 ._intro ._text {
    position: relative;
    bottom: 30px;
    left: 0;
    margin-left: 0 !important;
    padding: 41px 0 26px 0;
  }
  .company-profile_block04 ._intro ._text::before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    background-color: #0A4BB7;
    width: 100vw;
    height: 100%;
    content: "";
  }
  .company-profile_block04 ._intro ._text h3 {
    margin-bottom: 15px;
    font-size: 140%;
  }
  .company-profile_block04 ._intro ._text p {
    font-size: 90%;
  }
  .company-profile_block04 .rotate ._inner {
    flex-direction: column;
    align-items: end;
  }
  .company-profile_block04 .rotate ._timeline ._year {
    right: auto;
    left: 5%;
  }
  .company-profile_block04 ._timeline {
    position: initial;
    padding: 0 0 30px 0;
  }
  .company-profile_block04 ._timeline ._year {
    position: absolute;
    top: 25px;
    right: 6%;
    margin-left: 0;
    font-size: 350%;
    line-height: 75%;
    letter-spacing: -4px;
  }
  .company-profile_block04 ._timeline ._list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .company-profile_block04 ._timeline ._list ._item {
    flex-direction: column;
    gap: 0;
    padding: 0;
    font-size: 95%;
  }
  .company-profile_block04 .bg_title_smp ._intro::after {
    top: 68%;
    left: 0;
  }
}
.careers {
  --background-position-left: -320px;
  --background-position-bottom: -630px;
  padding-bottom: 245px;
  font-weight: 700;
}
.careers_block01 {
  margin-bottom: 95px;
  color: #0A4BB7;
  text-align: center;
}
.careers_block01 h3 {
  position: relative;
  margin: 0 auto 55px;
  max-width: 765px;
  font-size: 82px;
}
.careers_block01 h3:before, .careers_block01 h3:after {
  position: absolute;
  background-repeat: no-repeat;
  content: "";
}
.careers_block01 h3:before {
  width: 66px;
  height: 41px;
  background-image: url("../../../../uploads/careers-img04.png");
  top: -10px;
  left: -75px;
}
.careers_block01 h3:after {
  width: 63px;
  height: 37px;
  background-image: url("../../../../uploads/careers-img05.png");
  right: -37px;
  bottom: 29px;
}
.careers_block01 h3 span {
  display: block;
}
.careers_block01 p {
  font-size: 28px;
  line-height: 210%;
}
.careers_block02 {
  display: flex;
  justify-content: center;
  margin-bottom: 160px;
  max-width: 1900px;
}
.careers_block02 ._note {
  position: absolute;
  right: -60px;
  bottom: 45px;
  z-index: 1;
  box-shadow: 0 0 6px rgba(51, 51, 51, 0.33);
  border-radius: 7px;
  background: #8CC61E;
  padding: 14px 10px 10px 19px;
  width: 390px;
  color: #fff;
  font-size: 21px;
  letter-spacing: -1.5px;
}
.careers_block02 ._note:before {
  position: absolute;
  top: -31px;
  right: 145px;
  transform: rotate(-34deg);
  z-index: -1;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-bottom-width: 52px;
  border-bottom-style: solid;
  border-bottom-color: #8CC61E;
  width: 0;
  height: 0;
  content: "";
}
.careers_block02 ._item {
  position: relative;
  width: 33.33%;
}
.careers_block02 ._item:nth-child(2) ._note {
  top: -28px;
  right: auto;
  bottom: auto;
  left: -32px;
  background: #0A4BB7;
  padding: 20px 10px 12px 21px;
  width: 285px;
}
.careers_block02 ._item:nth-child(2) ._note:before {
  top: auto;
  right: 131px;
  bottom: -35px;
  transform: rotate(164deg);
  border-bottom-width: 47px;
  border-bottom-color: #0A4BB7;
}
.careers_block02 ._item:last-child ._note {
  right: auto;
  bottom: -59px;
  left: -111px;
  background: #E6B01E;
  width: 340px;
}
.careers_block02 ._item:last-child ._note:before {
  top: -29px;
  right: 52px;
  transform: rotate(30deg);
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-bottom-width: 42px;
  border-bottom-color: #E6B01E;
}
.careers_title {
  margin-bottom: 25px;
  color: #0A4BB7;
  text-align: center;
}
.careers_title .en {
  padding-bottom: 23px;
  color: rgba(110, 95, 57, 0.1);
  font-size: 91px;
  line-height: 90%;
}
.careers_title span {
  display: block;
}
.careers_title span:last-child {
  font-size: 52px;
  line-height: 100%;
}
.careers_block03 {
  margin: 0 auto 140px;
}
.careers_block03 .swiper-slide {
  margin-right: 12px;
}
.careers_block03 ._item,
.careers_block03 .swiper-slide {
  width: 425px;
}
.careers_block03 ._item {
  padding: 90px 60px 72px;
}
.careers_block03 .btn {
  --btn-font-size: 18px;
  justify-content: center;
  padding-left: 40px;
  min-width: 285px;
}
.careers_block03 ._text {
  line-height: 140%;
}
.careers_block04 {
  margin-bottom: 190px;
}
.careers_block04 .careers_title {
  margin-bottom: 75px;
}
.careers_block04_list {
  margin: 0 auto;
  max-width: 860px;
}
.careers_block04_list li {
  position: relative;
  margin-bottom: 17px;
  padding-left: 75px;
  color: #0A4BB7;
  font-size: 28px;
}
.careers_block04_list li:before {
  width: 48px;
  height: 48px;
  content: "";
  background-image: url("../../../../uploads/careers-img06.png");
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: -4px;
  left: 0;
}

/*
 * only SMP 
 */
@media only screen and (max-width: 768px) {
  .careers {
    --background-position-bottom: -595px;
    padding-bottom: 0;
  }
  .careers_block01 {
    margin-bottom: 150px;
  }
  .careers_block01 h3 {
    font-size: 200%;
  }
  .careers_block01 h3:before, .careers_block01 h3:after {
    background-size: 100% 100%;
  }
  .careers_block01 h3:before {
    top: -10px;
    left: 0;
    width: 43px;
    height: 32px;
  }
  .careers_block01 h3:after {
    right: 0;
    bottom: -10px;
    width: 39px;
    height: 30px;
  }
  .careers_block01 p {
    font-size: 100%;
    line-height: 180%;
  }
  .careers_block02 {
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  .careers_block02 ._item {
    width: 100%;
  }
  .careers_block02 ._item:nth-child(2) ._note {
    top: -85px;
    bottom: auto;
    left: 0;
    background: transparent;
    padding: 30px 25px 55px 35px;
    width: 62%;
  }
  .careers_block02 ._item:nth-child(2) ._note:before {
    transform: unset;
    border: unset;
    background-image: url("../../../../uploads/careers-img08.png");
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
  }
  .careers_block02 ._item:last-child ._note {
    top: -70px;
    right: 0;
    bottom: auto;
    left: auto;
    background: transparent;
    padding: 30px 25px 55px 35px;
    width: 76%;
  }
  .careers_block02 ._item:last-child ._note:before {
    transform: unset;
    border: unset;
    background-image: url("../../../../uploads/careers-img09.png");
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
  }
  .careers_block02 ._note {
    top: -95px;
    right: 1%;
    bottom: auto;
    box-shadow: none;
    background: transparent;
    padding: 32px 24px 57px 28px;
    width: 85%;
    font-size: 100%;
  }
  .careers_block02 ._note:before {
    width: 100%;
    height: 100%;
    content: "";
    background-image: url("../../../../uploads/careers-img07.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: 0;
    right: auto;
    left: 0;
    transform: unset;
    border: unset;
  }
  .careers_title {
    margin-bottom: 45px;
    padding: 0 5%;
  }
  .careers_title .en {
    padding-bottom: 10px;
    font-size: 330%;
    line-height: 100%;
  }
  .careers_title span:last-child {
    font-size: 138%;
  }
  .careers_block03 {
    --cus-container-default-smp: 100%;
    margin-bottom: 85px;
  }
  .careers_block03 ._item,
  .careers_block03 .swiper-slide {
    width: auto;
  }
  .careers_block03 ._item {
    padding: 55px 15px 30px 20px;
  }
  .careers_block03 .btn {
    min-width: 255px;
    --btn-font-size: 100%;
    padding-left: 50px;
  }
  .careers_block04 {
    margin-bottom: 65px;
  }
  .careers_block04 .careers_title {
    margin-bottom: 45px;
  }
  .careers_block04_list {
    width: 90%;
  }
  .careers_block04_list li {
    margin-bottom: 20px;
    padding-left: 60px;
    font-size: 110%;
  }
  .careers_block04_list li:before {
    top: -3px;
    background-size: cover;
    width: 35px;
    height: 35px;
  }
}
/* helpers */
.ourwork {
  --background-position-left: 50px;
  --background-position-bottom: -500px;
}
@media only screen and (min-width: 769px) {
  .ourwork .main_visual._bg_center + #main_content {
    margin-top: 650px;
  }
}
.ourwork_block {
  margin-bottom: 20px;
  border-radius: 40px;
  background-color: #fff;
  padding: 43px 47px 60px 47px;
  color: #0A4BB7;
  font-weight: 700;
}
.ourwork_block:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .ourwork_block {
    margin: 0 auto 50px;
    padding: 25px 15px 30px;
    text-align: center;
  }
}
.ourwork_block__content {
  display: flex;
  gap: 34px;
}
@media only screen and (max-width: 768px) {
  .ourwork_block__content {
    flex-direction: column;
  }
}
.ourwork_block__title {
  display: flex;
  column-gap: 10px;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 25px;
  margin-left: auto;
  border-radius: 45px;
  background-color: #0A4BB7;
  padding: 17px 20px;
  max-width: 570px;
  color: #fff;
  text-align: center;
}
.ourwork_block__title ._b {
  font-size: 33px;
  line-height: 100%;
}
.ourwork_block__title ._s {
  font-size: 23px;
}
@media only screen and (max-width: 768px) {
  .ourwork_block__title {
    display: inline-flex;
    align-items: baseline;
    margin: 0 auto 15px;
    padding: 15px 20px 10px;
    min-width: 80%;
  }
  .ourwork_block__title ._b {
    font-size: 180%;
    line-height: 100%;
  }
  .ourwork_block__title ._s {
    font-size: 110%;
  }
}
.ourwork_block__image {
  position: relative;
  top: -68px;
  flex-shrink: 0;
  border: 5px solid #0A4BB7;
  border-radius: 50%;
  width: 451px;
  height: 451px;
  overflow: hidden;
}
.ourwork_block__image img {
  width: 100%;
  height: 125%;
}
@media only screen and (max-width: 768px) {
  .ourwork_block__image {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto 0;
    width: 75vw;
    max-width: 400px;
    height: 75vw;
    max-height: 400px;
  }
  .ourwork_block__image img {
    max-width: 115vw;
  }
}
.ourwork_block__job_main {
  margin-bottom: 40px;
}
.ourwork_block__job_main ._text {
  margin-bottom: 35px;
  margin-left: 15px;
  line-height: 160%;
  letter-spacing: -1.5px;
}
.ourwork_block__job_main ._list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 23px;
}
.ourwork_block__job_main ._list h4 {
  display: inline-block;
  position: relative;
  margin: 0 15px;
  padding: 0 20px 0 20px;
  font-size: 20px;
  letter-spacing: -2px;
  text-align: center;
}
.ourwork_block__job_main ._list h4::before, .ourwork_block__job_main ._list h4::after {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 15px;
  content: "";
  background-image: url("../../../../uploads/icon-04.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.ourwork_block__job_main ._list h4::before {
  left: 0;
  transform: translateY(-50%);
}
.ourwork_block__job_main ._list h4::after {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}
.ourwork_block__job_main ._list p {
  flex: 1;
  margin-top: -55px;
  border-radius: 14px;
  background-color: #F5F5F5;
  padding: 60px 25px 12px;
  letter-spacing: -1px;
  text-align: start;
}
.ourwork_block__job_main ._item {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 268px;
  text-align: center;
}
.ourwork_block__job_main ._item img {
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .ourwork_block__job_main {
    margin: 0 auto 0;
  }
  .ourwork_block__job_main ._text {
    margin-bottom: 30px;
    text-align: left;
  }
  .ourwork_block__job_main ._list {
    gap: 25px 4%;
  }
  .ourwork_block__job_main ._list h4 {
    padding: 15px 15px 0;
    font-size: 90%;
    letter-spacing: 0px;
  }
  .ourwork_block__job_main ._list p {
    margin-top: -55px;
    padding: 55px 15px 12px;
    font-size: 80%;
  }
  .ourwork_block__job_main ._item {
    width: 48%;
  }
}
.ourwork_block__job_related h3 {
  margin: 0 auto;
  border-radius: 15px;
  background-color: #D7EDF7;
  padding: 15px 0 25px;
  max-width: 923px;
  color: #0A4BB7;
  font-size: 21px;
  text-align: center;
}
.ourwork_block__job_related ._list {
  display: flex;
  justify-content: center;
  gap: 25px 48px;
  margin: -10px auto 0;
  border-radius: 12px;
  padding: 0 31px;
}
.ourwork_block__job_related ._list h4 {
  border-radius: 3px;
  background-color: #0A4BB7;
  padding: 6px 0;
  color: #fff;
  font-size: 21px;
  text-align: center;
}
.ourwork_block__job_related ._list p {
  color: #0A4BB7;
  font-weight: 600;
  font-size: 15px;
}
.ourwork_block__job_related ._list ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  width: fit-content;
}
.ourwork_block__job_related ._list ul li {
  width: 371px;
}
.ourwork_block__job_related ._list ul .btn {
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  height: 40px;
  font-size: 15px;
}
.ourwork_block__job_related ._list ul .btn:hover {
  text-decoration: none;
}
.ourwork_block__job_related ._list ul .is-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.ourwork_block__job_related ._item {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@media only screen and (max-width: 768px) {
  .ourwork_block__job_related h3 {
    padding: 12px 0;
    font-size: 105%;
  }
  .ourwork_block__job_related ._list {
    flex-wrap: wrap;
    gap: 10px 23px;
    margin-top: 10px;
    padding: 20px;
    width: 100%;
  }
  .ourwork_block__job_related ._list h4 {
    font-size: 115%;
  }
  .ourwork_block__job_related ._list p {
    text-align: left;
  }
  .ourwork_block__job_related ._list ul {
    gap: 5px;
  }
  .ourwork_block__job_related ._list ul li {
    width: 90%;
  }
  .ourwork_block__job_related ._item {
    gap: 15px;
  }
}

/* helpers */
/* 
 * Both PC & SMP 
 */
.news {
  margin: 185px auto 95px;
  color: #0a4bb7;
  font-size: 15px;
}
.news .title03 {
  margin-bottom: 135px;
}
.news .title03 ._en {
  margin-bottom: 10px;
  font-size: 75px;
}
.news .title03 ._ja {
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .news .title03 {
    margin-bottom: 100px;
  }
  .news .title03 ._en {
    font-size: 60px;
  }
  .news .title03 ._ja {
    font-size: 18px;
  }
}
.news_categories {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 10px;
  margin-bottom: 50px;
}
.news_categories a {
  --color: #0a4bb7;
  --background: #ebebeb;
  display: block;
  border-radius: 26px;
  background-color: var(--background);
  padding: 12px 40px;
  min-width: 115px;
  color: var(--color);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}
.news_categories a._active, .news_categories a:hover {
  --color: #fff;
  --background: #0a4bb7;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .news_categories {
    gap: 10px;
  }
  .news_categories a {
    padding: 8px 20px;
    min-width: 80px;
    font-size: 100%;
  }
}
.news_cate {
  --color: #0a4bb7;
  --background: #ebebeb;
  display: inline-block;
  margin-left: 12px;
  border-radius: 15px;
  background-color: var(--background);
  padding: 6px 20px;
  min-width: 76px;
  color: var(--color);
  font-weight: 700;
  font-size: 12px;
  text-align: center;
}
.news_cate:hover {
  --color: #fff;
  --background: #0a4bb7;
  text-decoration: none;
}
.news_list {
  margin-bottom: 125px;
}
.news_item {
  margin-bottom: 18px;
  border-bottom: 1px solid #0a4bb7;
  padding: 0 5px 12px;
  font-weight: 800;
  font-size: 17px;
}
.news_item ._info {
  margin-bottom: 10px;
}
.news_item ._title {
  font-weight: 700;
  line-height: 170%;
}
@media only screen and (max-width: 768px) {
  .news_item {
    margin-bottom: 30px;
    padding: 0 0 20px;
    font-size: 15px;
  }
}
.news_detail {
  font-weight: 700;
}
.news_detail ._info {
  margin-bottom: 15px;
  font-size: 15px;
}
.news_detail ._title {
  margin-bottom: 18px;
  border-bottom: 2px solid #0a4bb7;
  padding-bottom: 5px;
  font-size: 25px;
  line-height: 120%;
}
.news_detail ._content {
  margin-bottom: 65px;
}
.news_detail ._content p {
  margin-bottom: 40px;
  line-height: 180%;
}
.news_detail ._content img {
  margin: 40px 0;
}
@media only screen and (max-width: 768px) {
  .news_detail ._title {
    margin-bottom: 25px;
    padding-bottom: 10px;
    font-size: 130%;
    line-height: 160%;
  }
  .news_detail ._content {
    margin-bottom: 100px;
  }
}

/* 
 * Both PC & SMP 
 */
.resdev {
  margin-bottom: 180px;
}
.resdev_section01 {
  color: #0A4BB7;
  font-weight: 700;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .resdev_section01 {
    font-size: 105%;
  }
}
.resdev_img01 {
  margin: 0 auto 50px;
  width: 215px;
}
@media only screen and (max-width: 768px) {
  .resdev_img01 {
    width: 45%;
    max-width: 300px;
  }
}
.resdev_text01 {
  margin-bottom: 55px;
  line-height: 180%;
  text-align: center;
}
.resdev_text01 p {
  margin-bottom: 30px;
}
.resdev_img02 {
  margin: 0 auto 80px;
  width: 100%;
}
.resdev_img02 img {
  border-radius: 20px;
}
@media only screen and (min-width: 769px) {
  .resdev_img02 img {
    max-width: 1030px;
  }
}
.resdev_text02 {
  text-align: center;
}
.resdev_text02 p {
  margin-bottom: 10px;
}

/* helpers */
/* 
 * Both PC & SMP 
 */
.csr {
  margin-bottom: 130px;
  color: #0A4BB7;
  font-weight: 700;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .csr {
    font-size: 100%;
  }
}
.csr .main_title02 {
  margin-bottom: 0;
}
.csr #main_content {
  padding-top: 50px;
}
.csr_section-csr, .csr_section-sdgs {
  margin-bottom: 150px;
}
.csr_title {
  margin-bottom: 70px;
  font-size: 65px;
  line-height: 100%;
}
@media only screen and (max-width: 768px) {
  .csr_title {
    margin-bottom: 30px;
    font-size: 200%;
  }
}
.csr_subtitle {
  position: relative;
  margin-bottom: 35px;
  border-bottom: 1px solid #0A4BB7;
  padding-bottom: 15px;
  font-size: 29px;
  line-height: 100%;
}
.csr_subtitle ._sub {
  position: absolute;
  top: 5px;
  right: 0;
  font-weight: 700;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .csr_subtitle {
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 130%;
    line-height: 150%;
  }
  .csr_subtitle ._sub {
    display: block;
    position: relative;
    top: auto;
    right: auto;
    margin-top: 5px;
    font-size: 70%;
    text-align: right;
  }
}
.csr_text {
  margin-bottom: 105px;
  line-height: 180%;
}
.csr_text ul + p {
  margin-top: 60px;
}
.csr_text li {
  position: relative;
  padding-left: 75px;
}
@media only screen and (max-width: 768px) {
  .csr_text li {
    padding-left: 15px;
  }
}
.csr_text li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
}
@media only screen and (max-width: 768px) {
  .csr_text {
    margin-bottom: 70px;
  }
}
.csr_box {
  margin-bottom: 90px;
  border-radius: 15px;
  background-color: #fff;
  padding: 50px 60px;
  font-size: 15px;
  line-height: 180%;
}
.csr_box h5 {
  margin-bottom: 10px;
  font-size: 19px;
}
.csr_box p {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .csr_box {
    padding: 30px 20px;
  }
  .csr_box img {
    width: 70%;
  }
}
.csr_section-sdgs .csr_title {
  margin-bottom: 20px;
}
.csr_section-sdgs .csr_text {
  margin-bottom: 30px;
}
.csr_section-sdgs .csr_text p {
  margin-bottom: 30px;
}
.csr_section-sdgs .csr_text p + ul {
  margin-top: -30px;
}
.csr_section-sdgs .csr_text ul {
  margin-bottom: 100px;
}

.inside {
  --background-position-left: -320px;
  --background-position-bottom: -595px;
  padding-bottom: 190px;
  font-weight: 700;
}
.inside_block01 {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 280px;
}
.inside_block01_box {
  display: flex;
  justify-content: space-between;
  padding: 100px 5px 0;
}
.inside_block01_box ._item {
  position: relative;
  width: 50%;
}
.inside_block01_box ._item:first-child ._note:first-child {
  right: 41px;
  bottom: -15px;
  padding-top: 20px;
  padding-bottom: 15px;
  width: 233px;
}
.inside_block01_box ._item:first-child ._note:first-child:before {
  top: 0;
  left: -36px;
  width: 271px;
  height: 123px;
  background-image: url("../../../../uploads/inside-img29.png");
}
.inside_block01_box ._item:first-child ._note:nth-child(2) {
  right: 341px;
  bottom: -105px;
}
.inside_block01_box ._item:first-child ._note:nth-child(2):before {
  top: -27px;
  left: 0;
  width: 221px;
  height: 118px;
  background-image: url("../../../../uploads/inside-img30.png");
}
.inside_block01_box ._item:first-child ._note:nth-child(3) {
  top: -16px;
  right: -58px;
  width: 338px;
}
.inside_block01_box ._item:first-child ._note:nth-child(3):before {
  top: 0;
  left: 0;
  width: 338px;
  height: 142px;
  background-image: url("../../../../uploads/inside-img31.png");
}
.inside_block01_box ._item:first-child ._note:last-child {
  right: 91px;
  bottom: -190px;
  padding-top: 20px;
  padding-bottom: 13px;
}
.inside_block01_box ._item:first-child ._note:last-child:before {
  top: -16px;
  left: 0;
  width: 223px;
  height: 137px;
  background-image: url("../../../../uploads/inside-img32.png");
}
.inside_block01_box ._item:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.inside_block01_box ._item:last-child ._info {
  top: 110px;
}
.inside_block01_box ._item:last-child ._note:first-child {
  top: 128px;
  left: -210px;
  width: 386px;
}
.inside_block01_box ._item:last-child ._note:first-child:before {
  top: 0;
  left: 0;
  width: 420px;
  height: 113px;
  background-image: url("../../../../uploads/inside-img33.png");
}
.inside_block01_box ._item:last-child ._note:nth-child(2) {
  top: -4px;
  left: 109px;
  padding-top: 20px;
  padding-bottom: 15px;
  width: 282px;
}
.inside_block01_box ._item:last-child ._note:nth-child(2):before {
  top: 0;
  left: 0;
  width: 282px;
  height: 154px;
  background-image: url("../../../../uploads/inside-img34.png");
}
.inside_block01_box ._item:last-child ._note:nth-child(3) {
  bottom: -37px;
  left: -15px;
  padding-top: 20px;
  padding-bottom: 15px;
  width: 257px;
}
.inside_block01_box ._item:last-child ._note:nth-child(3):before {
  top: 0;
  left: 0;
  width: 289px;
  height: 131px;
  background-image: url("../../../../uploads/inside-img35.png");
}
.inside_block01_box ._item:last-child ._note:last-child {
  bottom: -153px;
  left: -60px;
  padding-top: 27px;
  padding-bottom: 13px;
  width: 309px;
}
.inside_block01_box ._item:last-child ._note:last-child:before {
  top: -4px;
  left: 0;
  width: 326px;
  height: 109px;
  background-image: url("../../../../uploads/inside-img36.png");
}
.inside_block01_box ._info {
  position: relative;
  width: 370px;
}
.inside_block01_box ._info p {
  display: flex;
  position: absolute;
  bottom: 32px;
  row-gap: 3px;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 2;
}
.inside_block01_box ._img {
  position: relative;
  width: 372px;
  height: 370px;
}
.inside_block01_box ._img:before {
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("../../../../uploads/inside-img08.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.inside_block01_box img {
  position: relative;
  top: -27px;
  right: -25px;
  z-index: 1;
  width: 250px;
  height: 376px;
}
.inside_block01_box span {
  display: inline-block;
  background: #fff;
  padding: 6px 21px 5px 14px;
  min-width: 160px;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: -2.5px;
}
.inside_block01_box span:first-child {
  color: #0a4bb7;
}
.inside_block01_box span:nth-child(2) {
  padding: 5px 30px 4px 20px;
}
.inside_block01_box span:last-child {
  background: #0a4bb7;
  padding-top: 9px;
  padding-bottom: 7px;
  color: #fff;
}
.inside_block01 ._note {
  position: absolute;
  border-radius: 7px;
  padding: 19px 5px 11px 20px;
  min-width: 220px;
  color: #fff;
  font-size: 21px;
  line-height: 137%;
  letter-spacing: -2px;
}
.inside_block01 ._note:before {
  position: absolute;
  z-index: -1;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.inside_block02 {
  --cus-container-default: 1340px;
  margin-bottom: 180px;
  padding-top: 105px;
}
.inside_block03 {
  --cus-container-default: 1270px;
  margin-bottom: 117px;
  background: #fff;
  padding: 138px 90px 70px;
}
.inside_block03_title {
  position: absolute;
  top: -20px;
  left: 219px;
}
.inside_block03 ._arrow {
  position: relative;
  z-index: 1;
  color: #0a4bb7;
  font-size: 23px;
  letter-spacing: -1px;
}
.inside_block03 ._arrow span {
  display: inline-block;
  transform: rotate(-7deg);
}
.inside_block03 ._arrow:before {
  width: 314px;
  height: 170px;
  content: "";
  background-image: url("../../../../uploads/inside-img10.png");
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: -54px;
  left: -27px;
  z-index: -1;
}
.inside_block03 ._line {
  position: absolute;
  top: -19px;
  left: 205px;
  padding: 12px 0;
  width: 595px;
  color: #fff;
  font-size: 36px;
  letter-spacing: -2px;
  text-align: center;
}
.inside_block03 ._line:before {
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("../../../../uploads/inside-img11.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: -2px;
  left: 0;
  z-index: -1;
}
.inside_block03 ._line:after {
  width: 84px;
  height: 105px;
  content: "";
  background-image: url("../../../../uploads/inside-img12.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 21px;
  right: -45px;
}
.inside_block03_list li {
  position: relative;
  margin-bottom: 21px;
  border-bottom: 1px dotted #2c5fde;
  padding-bottom: 15px;
  padding-left: 66px;
  color: #2c5fde;
  font-size: 25px;
}
.inside_block03_list li:last-child {
  border-bottom: unset;
}
.inside_block03_list li:before {
  position: absolute;
  top: 0px;
  left: 15px;
  border: 1px solid #2c5fde;
  border-radius: 7px;
  width: 34px;
  height: 34px;
  content: "";
}
.inside_block04 {
  --cus-container-default: 1165px;
  margin-bottom: 120px;
}
.inside_block04_title {
  margin-bottom: 62px;
  color: #2c5fde;
  font-size: 49px;
  text-align: center;
}
.inside_block04_title span {
  position: relative;
  padding-right: 50px;
  padding-left: 70px;
}
.inside_block04_title span:before, .inside_block04_title span:after {
  position: absolute;
  width: 35px;
  height: 50px;
  content: "";
  background-image: url("../../../../uploads/inside-img28.png");
  background-repeat: no-repeat;
  top: -2px;
}
.inside_block04_title span:before {
  left: 0;
  background-position: left 0 top 0;
}
.inside_block04_title span:after {
  right: 0;
  background-position: right 0 top 0;
}
.inside_block04_box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}
.inside_block04_box ._item {
  position: relative;
  border: 3px solid #2c5fde;
  border-radius: 17px;
  background: #fff;
  padding: 80px 22px 20px;
  width: 375px;
  overflow: hidden;
}
.inside_block04_box ._item img {
  width: 100%;
  height: auto;
}
.inside_block04_box ._item ._img01 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
}
.inside_block04_box ._item:first-child ._img01 {
  border-radius: 50%;
  width: 147px;
  height: 147px;
}
.inside_block04_box ._item:first-child ._img01 img {
  height: 100%;
}
.inside_block04_box ._item:nth-child(2) ._img01 {
  border-radius: 5px;
  width: 100%;
  height: 137px;
}
.inside_block04_box ._item:nth-child(3) ._img01 {
  width: 250px;
  height: 142px;
}
.inside_block04_box ._item:nth-child(4) ._img01 {
  width: 270px;
  height: 120px;
}
.inside_block04_box ._item:nth-child(5) ._img01 {
  width: 220px;
  height: 165px;
}
.inside_block04_box ._item:last-child ._img01 {
  width: 250px;
  height: 180px;
}
.inside_block04_box ._title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translatex(-50%);
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background: #2c5fde;
  padding-top: 14px;
  padding-bottom: 3px;
  width: 225px;
  color: #fff;
  font-size: 21px;
  text-align: center;
}
.inside_block04_box ._year {
  margin-bottom: 5px;
  text-align: center;
}
.inside_block04_box ._span01 {
  color: #2c5fde;
  font-size: 85px;
  line-height: 80%;
  letter-spacing: 3px;
}
.inside_block04_box ._span02 {
  position: relative;
  bottom: 1px;
  padding: 0 3px;
  color: #2c5fde;
  font-size: 24px;
}
.inside_block04_box ._span03 {
  display: block;
  width: 100%;
  color: #939392;
  font-size: 12px;
  letter-spacing: 1px;
}

/*
 * only SMP 
 */
@media only screen and (max-width: 768px) {
  .inside {
    padding-bottom: 0;
  }
  .inside_block01 {
    position: relative;
    margin-top: 170px;
    padding-top: 30px;
    padding-bottom: 80px;
  }
  .inside_block01 .careers_block01 {
    position: absolute;
    top: -170px;
    margin-bottom: 0;
    width: 100%;
  }
  .inside_block01 ._note {
    position: relative;
    min-width: auto;
    font-size: 100%;
    letter-spacing: -1px;
  }
  .inside_block01_box {
    flex-wrap: wrap;
    padding: 40px 0 0;
  }
  .inside_block01_box ._item {
    width: 100%;
  }
  .inside_block01_box ._item:first-child {
    margin-bottom: 105px;
  }
  .inside_block01_box ._item:first-child ._note:first-child {
    top: 0;
    right: 0;
    bottom: auto;
    margin-bottom: 20px;
    margin-left: auto;
    padding: 17px 0 34px 33px;
    width: 59%;
    max-width: 220px;
  }
  .inside_block01_box ._item:first-child ._note:first-child:before {
    top: -22px;
    left: 0;
    background-image: url("../../../../uploads/inside-img29smp.png");
  }
  .inside_block01_box ._item:first-child ._note:nth-child(2) {
    position: absolute;
    top: 20px;
    right: auto;
    bottom: auto;
    padding: 44px 0 33px 15px;
    width: 49%;
    max-width: 185px;
    font-size: 90%;
  }
  .inside_block01_box ._item:first-child ._note:nth-child(2):before {
    top: -10px;
    left: 0;
    background-image: url("../../../../uploads/inside-img30smp.png");
  }
  .inside_block01_box ._item:first-child ._note:nth-child(3) {
    top: -19px;
    right: 0;
    margin-bottom: 0;
    margin-left: auto;
    padding-top: 37px;
    padding-bottom: 28px;
    width: 80%;
  }
  .inside_block01_box ._item:first-child ._note:nth-child(3):before {
    top: -10px;
    left: 0;
    background-image: url("../../../../uploads/inside-img31smp.png");
  }
  .inside_block01_box ._item:first-child ._note:last-child {
    position: absolute;
    right: auto;
    bottom: -74px;
    padding-top: 42px;
    padding-bottom: 25px;
    width: 78%;
  }
  .inside_block01_box ._item:first-child ._note:last-child:before {
    top: -10px;
    left: 0;
    background-image: url("../../../../uploads/inside-img32smp.png");
  }
  .inside_block01_box ._item:last-child {
    display: block;
    justify-content: flex-start;
  }
  .inside_block01_box ._item:last-child ._img {
    margin-left: auto;
  }
  .inside_block01_box ._item:last-child ._info {
    top: 0;
  }
  .inside_block01_box ._item:last-child ._info p {
    right: 0;
  }
  .inside_block01_box ._item:last-child ._note:first-child {
    top: -6px;
    left: 0;
    padding-top: 38px;
    padding-bottom: 37px;
    width: 95%;
  }
  .inside_block01_box ._item:last-child ._note:first-child:before {
    top: -20px;
    left: 0;
    background-image: url("../../../../uploads/inside-img33smp.png");
  }
  .inside_block01_box ._item:last-child ._note:nth-child(2) {
    position: absolute;
    top: 102px;
    right: 0;
    bottom: auto;
    left: auto;
    padding: 44px 0 33px 20px;
    width: 70%;
  }
  .inside_block01_box ._item:last-child ._note:nth-child(2):before {
    top: -7px;
    left: 0;
    background-image: url("../../../../uploads/inside-img34smp.png");
  }
  .inside_block01_box ._item:last-child ._note:nth-child(3) {
    top: 73px;
    right: 0;
    bottom: auto;
    left: auto;
    padding: 44px 0 33px 20px;
    width: 67%;
  }
  .inside_block01_box ._item:last-child ._note:nth-child(3):before {
    top: -10px;
    left: 0;
    background-image: url("../../../../uploads/inside-img35smp.png");
  }
  .inside_block01_box ._item:last-child ._note:last-child {
    bottom: -35px;
    left: auto;
    margin-left: auto;
    padding-top: 41px;
    padding-bottom: 32px;
    width: 77%;
  }
  .inside_block01_box ._item:last-child ._note:last-child:before {
    top: -10px;
    left: 0;
    background-image: url("../../../../uploads/inside-img36smp.png");
  }
  .inside_block01_box ._note:before {
    background-size: 100% 100%;
    width: 100% !important;
    height: 100% !important;
  }
  .inside_block01_box ._content {
    position: relative;
  }
  .inside_block01_box ._img {
    margin-bottom: 10px;
    width: 340px;
    height: 338px;
  }
  .inside_block01_box span {
    padding: 10px 20px 9px 15px;
    font-size: 114%;
    letter-spacing: -1px;
  }
  .inside_block01_box span:nth-child(2) {
    padding: 8px 35px 6px 20px;
  }
  .inside_block01_box ._info {
    width: auto;
  }
  .inside_block01_box ._info p {
    bottom: 27px;
    max-width: 325px;
  }
  .inside_block01_box img {
    top: -21px;
    right: -26px;
    width: 220px;
    height: 326px;
  }
  .inside_block02 {
    --cus-container-default-smp: 99%;
    margin-bottom: 80px;
    padding-top: 60px;
  }
  .inside_block03 {
    margin-bottom: 70px;
    padding: 10px 3% 40px;
  }
  .inside_block03_title {
    position: relative;
    top: 23px;
    left: 0;
    margin-bottom: 100px;
    width: 100%;
  }
  .inside_block03 ._arrow {
    top: -5px;
    font-size: 100%;
  }
  .inside_block03 ._arrow:before {
    top: -45px;
    left: -18px;
    background-size: 100% 100%;
    width: 231px;
    height: 136px;
  }
  .inside_block03 ._line {
    position: relative;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    padding: 22px 0;
    width: 90%;
    font-size: 110%;
    letter-spacing: 0;
  }
  .inside_block03 ._line:before {
    background-image: url("../../../../uploads/inside-img11smp.png");
    background-size: 100% 100%;
  }
  .inside_block03 ._line:after {
    top: 39px;
    right: -5%;
    width: 64px;
    height: 85px;
  }
  .inside_block03 .inside_block03_list li {
    margin-bottom: 20px;
    padding-bottom: 25px;
    padding-left: 60px;
    font-size: 105%;
  }
  .inside_block03 .inside_block03_list li:before {
    top: 2px;
    left: 15px;
    width: 28px;
    height: 28px;
  }
  .inside_block04 {
    margin-bottom: 75px;
  }
  .inside_block04_title {
    margin-bottom: 40px;
    font-size: 175%;
  }
  .inside_block04 span {
    padding-right: 45px;
    padding-left: 55px;
  }
  .inside_block04 span:before, .inside_block04 span:after {
    background-size: cover;
    width: 29px;
    height: 37px;
  }
  .inside_block04_box ._title {
    width: 220px;
    font-size: 123%;
  }
  .inside_block04_box ._span01 {
    font-size: 355%;
    letter-spacing: 5px;
  }
  .inside_block04_box span {
    padding-right: 0;
    padding-left: 0;
  }
  .inside_block04_box ._span02 {
    font-size: 150%;
    bottom: 3px;
  }
  .inside_block04_box ._year {
    margin-bottom: 10px;
  }
  .inside_block04_box ._span03 {
    font-size: 13px;
  }
  .inside_block04_box ._item {
    margin: 0 auto;
    width: 90%;
  }
  .inside_block04_box ._item:nth-child(2) ._img01 {
    height: auto;
  }
  .inside_block04_box ._item:last-child ._span02 {
    padding: 0 20px;
  }
  .inside .careers_title {
    margin-bottom: 30px;
  }
}
/* helpers */
.application_infor {
  padding-bottom: 130px;
  --cus-font-weight-base: 700;
}
.application_infor_tab {
  display: flex;
  column-gap: 20px;
  justify-content: center;
  margin-bottom: 65px;
  margin-left: 70px;
}
.application_infor_tab button {
  border: none;
  border-radius: 26px;
  background: #EBEBEB;
  padding: 16px 0 14px;
  width: 325px;
  color: #0A4BB7;
  font-weight: 700;
  font-size: 18px;
}
.application_infor_tab button:hover, .application_infor_tab button.is-active {
  background: #0A4BB7;
  color: #fff;
}
.application_infor_panel {
  display: none;
  margin-left: 100px;
  border-radius: 67px;
  background: #FFFFFF;
  padding: 53px 45px 20px;
  max-width: 1120px;
  color: #0A4BB7;
}
.application_infor_panel.is-active {
  display: block;
}
.application_infor_title {
  margin-bottom: 42px;
  font-size: 35px;
  text-align: center;
}
.application_infor_text01 {
  margin-bottom: 16px;
  border-bottom: 1px solid #0A4BB7;
  padding-bottom: 3px;
  font-size: 25px;
  line-height: 100%;
}
.application_infor_table {
  margin-bottom: 25px;
  font-size: 18px;
}
.application_infor_table th,
.application_infor_table td {
  padding-bottom: 10px;
}
.application_infor_table th {
  width: 180px;
}
.application_infor_table td {
  vertical-align: middle;
  padding-left: 70px;
}
.application_infor_table ._text {
  display: block;
  border-radius: 30px;
  background: #EBEBEB;
  padding: 5px 0 3px;
  width: 100%;
  letter-spacing: -0.6px;
}
.application_infor ._list li {
  position: relative;
}
.application_infor ._list li:before {
  position: absolute;
  top: 11px;
  left: -9px;
  border-radius: 50%;
  background: #0A4BB7;
  width: 4px;
  height: 4px;
  content: "";
}

@media only screen and (max-width: 768px) {
  .application_infor {
    padding-bottom: 90px;
  }
  .application_infor .main_title02 {
    margin-bottom: 0;
  }
  .application_infor_tab {
    column-gap: 4%;
    row-gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 45px;
    margin-left: 0;
  }
  .application_infor_tab button {
    padding: 15px 0 13px;
    width: 48%;
    font-size: 105%;
  }
  .application_infor_panel {
    margin-left: 0;
    border-radius: 50px;
    padding: 45px 5% 10px;
  }
  .application_infor_title {
    margin-bottom: 30px;
    font-size: 160%;
  }
  .application_infor_text01 {
    margin-bottom: 22px;
    font-size: 115%;
  }
  .application_infor_table {
    font-size: 100%;
  }
  .application_infor_table th,
  .application_infor_table td {
    display: block;
    width: 100%;
  }
  .application_infor_table ._text {
    padding: 7px 2% 5px;
    width: 55%;
    max-width: 170px;
  }
  .application_infor_table td {
    padding-bottom: 25px;
    padding-left: 0;
  }
  .application_infor_table._inline th,
  .application_infor_table._inline td {
    display: table-cell;
  }
  .application_infor_table._inline th {
    width: 40%;
  }
  .application_infor_table._inline ._text {
    width: 100%;
  }
  .application_infor_table._inline td {
    padding-bottom: 10px;
    padding-left: 5%;
    width: 60%;
  }
  .application_infor ._list li {
    padding-left: 10px;
  }
  .application_infor ._list li:before {
    left: 0;
  }
}
/* helpers */
/* 
 * Both PC & SMP 
 */
.learning-growth .main_text {
  margin: 150px 0 40px 265px;
  letter-spacing: -7px;
}
.learning-growth .title {
  margin-bottom: 67px;
  margin-left: 70px;
  line-height: 150%;
}
.learning-growth .main_title02 {
  margin-bottom: 85px;
  margin-left: 70px;
}
.learning-growth_section ._intro {
  margin-bottom: 260px;
  margin-left: 70px;
  color: #0a4bb7;
  text-align: center;
}
.learning-growth_section ._intro_title {
  margin-bottom: 22px;
  font-size: 33px;
}
.learning-growth_section ._intro_content {
  font-weight: bold;
  font-size: 17px;
  line-height: 170%;
}
.learning-growth_section ._card {
  position: relative;
  border-radius: 67px;
  background-color: #fff;
  padding: 113px 59px 66px 78px;
}
.learning-growth_section ._card_img {
  position: absolute;
  top: -218px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 12px;
  width: 960px;
  height: 282px;
  overflow: hidden;
}
.learning-growth_section ._card_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}
.learning-growth_section ._card_title {
  margin-bottom: 8px;
  color: #0a4bb7;
  font-size: 25px;
  text-align: center;
}
.learning-growth_section ._card_tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-bottom: 38px;
}
.learning-growth_section ._card_tag li {
  border-radius: 7px;
  background-color: #eaf0f8;
  padding: 6px 20px;
  color: #0a4bb7;
  font-weight: 600;
  font-size: 15px;
}
.learning-growth_section ._card_list {
  display: grid;
  grid-template-columns: 325px 1fr;
  column-gap: 35px;
  row-gap: 20px;
  color: #0a4bb7;
  font-weight: bold;
  font-size: 17px;
}
.learning-growth_section ._card_list dt,
.learning-growth_section ._card_list dd {
  position: relative;
  margin-bottom: 16px;
}
.learning-growth_section ._card_list dt {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 26px;
  background-color: #ebebeb;
  padding: 13px 46px;
  height: fit-content;
  min-height: 51px;
}
.learning-growth_section ._card_list dd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 150%;
}
.learning-growth_section ._card_list dd:not(dd:last-child)::after {
  position: absolute;
  bottom: -16px;
  left: -360px;
  border-bottom: 1px solid #0a4bb7;
  width: calc(100% + 325px + 35px);
  content: "";
}
.learning-growth_section ._card_list dd._multi {
  display: block;
}
.learning-growth_section ._card_list dd._multi p:not(p:last-child) {
  margin-bottom: 21px;
}
.learning-growth_section ._card_list dd p {
  position: relative;
  padding-left: 17px;
  width: 100%;
}
.learning-growth_section ._card_list dd p::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}
.learning-growth_section01 {
  margin-bottom: 106px;
}
.learning-growth_section02 {
  margin-bottom: 168px;
}
.learning-growth_section03 {
  margin-bottom: 136px;
}
.learning-growth_section03 ._intro {
  margin-bottom: 52px;
}
.learning-growth_section03 ._img {
  margin: 0 auto 32px auto;
  border-radius: 12px;
  width: 960px;
  height: 282px;
  overflow: hidden;
}
.learning-growth_section03 ._img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 76%;
}
.learning-growth_section03 ._box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 36px;
  margin-bottom: 47px;
}
.learning-growth_section03 ._box_item {
  display: flex;
  flex-direction: column;
  border-radius: 47px;
  background-color: #fff;
  padding: 88px 44px 63px 44px;
  width: 480px;
  min-height: 427px;
  color: #0a4bb7;
}
.learning-growth_section03 ._box_item ._title {
  margin-bottom: 26px;
  background-color: #0b4bb7;
  padding: 5px 0 5px 0;
  color: white;
  font-size: 28px;
  font-size: 135%;
  text-align: center;
}
.learning-growth_section03 ._box_item ._subtitle {
  margin-bottom: 19px;
  font-size: 22px;
  letter-spacing: -2px;
}
.learning-growth_section03 ._box_item ._desc {
  font-weight: bold;
}
.learning-growth_section03 ._card {
  background-color: transparent;
  padding: 0 59px 0 70px;
}
.learning-growth_section03 ._card_list {
  grid-template-columns: 335px 1fr;
}
.learning-growth_section03 ._card_list dt {
  margin-left: 10px;
}
.learning-growth_section03 ._card_list dd:not(dd:last-child)::after {
  left: -365px;
}

/*
 * only SMP 
 */
@media only screen and (max-width: 768px) {
  .learning-growth ._wrap_text {
    display: block;
  }
  .learning-growth .main_text {
    margin: 130px 0 20px;
    letter-spacing: -2px;
  }
  .learning-growth .title {
    margin-bottom: 43px;
    margin-left: 0;
    padding-top: 0;
    line-height: 250%;
  }
  .learning-growth .title ._ja {
    display: flex;
    width: 236px;
    font-size: 32px;
  }
  .learning-growth .main_title02 {
    margin-bottom: 42px;
    margin-left: 0;
  }
  .learning-growth .main_title02 h2 {
    font-size: 36px !important;
    line-height: 130%;
    white-space: pre-line;
  }
  .learning-growth_section ._intro {
    margin-bottom: 132px;
    margin-left: 0;
  }
  .learning-growth_section ._intro_title {
    font-size: 150%;
    letter-spacing: -2px;
  }
  .learning-growth_section ._card {
    padding: 121px 30px 51px 30px;
  }
  .learning-growth_section ._card_img {
    top: -62px;
    width: 314px;
    height: 155px;
  }
  .learning-growth_section ._card_img img {
    object-position: 50% 70%;
  }
  .learning-growth_section ._card_title {
    margin-bottom: 19px;
    font-size: 135%;
  }
  .learning-growth_section ._card_tag {
    flex-wrap: wrap;
    justify-content: start;
    gap: 7px;
    margin-bottom: 23px;
  }
  .learning-growth_section ._card_tag li {
    padding: 6px 14px;
    letter-spacing: -2px;
  }
  .learning-growth_section ._card_list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .learning-growth_section ._card_list dt {
    margin-bottom: 10px;
  }
  .learning-growth_section ._card_list dd:not(dd:last-child) {
    margin-bottom: 35px;
  }
  .learning-growth_section ._card_list dd:not(dd:last-child)::after {
    bottom: -19px;
    left: 0;
    width: 100%;
  }
  .learning-growth_section01 {
    margin-bottom: 51px;
  }
  .learning-growth_section02 {
    margin-bottom: 100px;
  }
  .learning-growth_section03 {
    margin-bottom: 51px;
  }
  .learning-growth_section03 ._intro {
    margin-bottom: 60px;
  }
  .learning-growth_section03 ._img {
    width: 314px;
    height: 155px;
  }
  .learning-growth_section03 ._img img {
    object-position: 50% 70%;
  }
  .learning-growth_section03 ._box {
    flex-direction: column;
  }
  .learning-growth_section03 ._box_item {
    padding: 42px 23px 28px 27px;
    width: 100%;
    min-height: 0;
  }
  .learning-growth_section03 ._box_item ._title {
    margin-bottom: 26px;
    font-size: 135%;
  }
  .learning-growth_section03 ._box_item ._subtitle {
    margin-bottom: 26px;
    font-size: 125%;
    letter-spacing: 0;
    text-align: center;
  }
  .learning-growth_section03 ._card {
    background-color: transparent;
    padding: 0 30px;
  }
}
/* wordpress */
/*! ready !*/
.block_ready {
  clear: both;
  margin: -50px 0 200px;
  text-align: center;
}
.block_ready h3 {
  margin-bottom: 30px;
  color: #F15A29;
  font-weight: 700;
  font-size: 48px;
  line-height: 140%;
  letter-spacing: 1.5px;
}
.block_ready p {
  color: #3E2311;
  font-weight: normal;
  line-height: 180%;
}

/* thanks */
.thanks_page {
  text-align: center;
}
.thanks_wrapper {
  margin: 150px auto;
  border: 2px solid #ccc;
  padding: 50px 20px;
  width: 700px;
}
.thanks_title {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 30px;
}
.thanks_content {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 170%;
}
.thanks_link {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  /*! ready !*/
  .block_ready {
    margin-top: 0;
    padding: 10px 5% 0;
  }
  .block_ready h3 {
    margin-bottom: 25px;
    font-size: 230%;
    line-height: 125%;
  }
  /* thanks */
  .thanks_wrapper {
    padding: 35px 3%;
    width: 100%;
  }
  .thanks_title {
    margin-bottom: 15px;
    font-size: 145%;
    line-height: 160%;
  }
  .thanks_content {
    font-size: 100%;
  }
}
/*# sourceMappingURL=wordpress-styles.min.css.map */
