@charset "UTF-8";
/************************************COMMON************************************/
html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 110px;
}
@media (max-width: 767px) {
  :target {
    scroll-margin-top: 84px;
  }
}

* {
  scroll-margin-top: 110px;
}
@media (max-width: 767px) {
  * {
    scroll-margin-top: 84px;
  }
}

body {
  color: #0077C0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
body img {
  max-width: 100%;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.container {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 1240px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

a img {
  transition: 0.2s;
}
a:hover img {
  opacity: 0.8;
}

.row {
  margin: 0;
}
@media (min-width: 768px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 4%;
  }
  .row .col_2 {
    margin: 0;
    width: 48%;
  }
  .row .col_3 {
    margin: 0;
    width: 30.6666666667%;
  }
}
.row:after {
  content: none;
}

@media (min-width: 768px) {
  .text-center {
    text-align: center;
  }
}

.h2_styled {
  text-align: center;
  position: relative;
  z-index: 1;
  font-weight: bold;
  margin: 0 0 60px;
}
@media (max-width: 767px) {
  .h2_styled {
    margin: 0 0 30px;
  }
}
.h2_styled .sub_en {
  position: absolute;
  z-index: -1;
  top: -0.2em;
  bottom: auto;
  right: 0;
  left: 0;
  margin: auto;
  font-size: 90px;
  line-height: 0.9;
  color: rgba(0, 119, 192, 0.1);
  font-family: "Ysabeau Office", sans-serif;
}
@media (max-width: 767px) {
  .h2_styled .sub_en {
    line-height: 1.2;
    font-size: 40px;
  }
}
.h2_styled .main_jp {
  font-size: 44px;
  color: #0077C0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .h2_styled .main_jp {
    font-size: 28px;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp,
.fadeInDown {
  opacity: 0;
}

.wow.fadeInUp.animated {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-delay: 0.4s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.wow.fadeInDown.animated {
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-delay: 0.4s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

/************************************FORM調整************************************/
[data-formrun-back-button]:not(.formrun-system-show),
[data-formrun-show-if-error]:not(.formrun-system-show),
[data-formrun-show-if-success]:not(.formrun-system-show) {
  display: none;
}

.list-item[data-v-74c6fcfc] {
  display: grid !important;
  grid-template-columns: 28px 1fr fit-content(100%);
  align-items: center;
  width: 100%;
}

.multi-column[data-v-74c6fcfc] {
  grid-template-columns: 1fr 1fr;
}

.grid[data-v-74c6fcfc] {
  display: grid;
  grid-gap: 8px;
}

/************************************HEADER************************************/
.header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.2s;
}
.header.scrolled {
  background: rgba(0, 119, 192, 0.6);
}
.header .header_top {
  padding: 20px 0;
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1500px) {
  .header .header_top {
    padding: 20px;
    max-width: 1200px;
  }
}
@media (max-width: 767px) {
  .header .header_top {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .header .header_top .header_logo a img {
    max-width: 90%;
  }
}
.header .header_top .hdr_btn {
  margin: 0 0 0 auto;
}
@media (max-width: 767px) {
  .header .header_top .hdr_btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
  }
  .header .header_top .hdr_btn.is-show {
    opacity: 1;
    visibility: visible;
  }
}
.header .header_top .hdr_btn .list_btn {
  margin: 0;
  list-style-type: none;
  display: grid;
  justify-content: center;
  gap: 0 20px;
  grid-template-columns: repeat(2, auto);
}
@media (max-width: 767px) {
  .header .header_top .hdr_btn .list_btn {
    gap: 0 10px;
  }
}
.header .header_top .menu-trigger {
  flex-shrink: 0;
  margin: 0 0 0 50px;
  width: 40px;
  height: 30px;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .header .header_top .menu-trigger {
    margin: 0 0 0 auto;
  }
}
.header .header_top .menu-trigger span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #fff;
  transition: all 0.4s;
}
.header .header_top.is-active .menu-trigger span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.header .header_top.is-active .menu-trigger span:nth-child(2) {
  opacity: 0;
}
.header .header_top.is-active .menu-trigger span:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}
.header .g-nav {
  position: fixed;
  top: 0;
  right: -650px;
  width: 650px;
  height: 100vh;
  background: #0077C0;
  transition: 0.4s ease;
  z-index: 99;
  padding: 100px 40px;
  border-radius: 0 0 0 30px;
}
@media (max-width: 767px) {
  .header .g-nav {
    right: -100%;
    width: 100%;
  }
}
.header .g-nav.is-active {
  transform: translateX(-100%);
}
@media (max-width: 767px) {
  .header .g-nav.is-active {
    transform: translateX(-100%);
  }
}
.header .g-nav ul li:not(:first-child) {
  margin-top: 20px;
}
.header .g-nav ul li a {
  color: #fff;
}
.header .g-nav .list_btn {
  margin: 30px 0 0;
}
/************************************MAIN************************************/
.main_visual_wrap {
  position: relative;
}
@media (max-width: 767px) {
  .main_visual_wrap {
    padding-bottom: 20%;
  }
}
.main_visual_wrap .main_image {
  overflow: hidden;
}
.main_visual_wrap .main_image img {
  filter: blur(10px);
  transition: 1.2s ease-out;
  transform: scale(1.05);
}
.main_visual_wrap .main_image.is-active img {
  filter: blur(0);
  transform: scale(1);
}
.main_visual_wrap .main_catch {
  display: flex;
  position: absolute;
  top: 0;
  bottom: 4%;
  right: 2%;
  left: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
}
@media (max-width: 767px) {
  .main_visual_wrap .main_catch {
    bottom: auto;
    top: 20%;
  }
}
.main_visual_wrap .main_catch .txt {
  margin: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 0 15px;
  height: auto;
}
.main_visual_wrap .main_catch .txt .line {
  display: block;
  color: #fff;
  background: #0077C0;
  font-weight: 500;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.2em;
  padding: 1em 3px 0.6em 1px;
  font-size: clamp(18px, 2.4vw, 48px);
}
@media (max-width: 767px) {
  .main_visual_wrap .main_catch .txt .line {
    font-size: clamp(18px, 6.6vw, 48px);
  }
}
.main_visual_wrap .main_catch .txt .line {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.4s cubic-bezier(0.37, 0, 0.63, 1), background-size 0.8s ease-out;
  background: #0077C0;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0% 40%;
}
.main_visual_wrap .main_catch.is-active .line {
  clip-path: inset(0);
  background-size: 100% 40%;
}
.main_visual_wrap .main_catch.is-active .line:nth-child(2) {
  transition-delay: 0.6s;
}
.main_visual_wrap .main_copy {
  display: table;
  position: absolute;
  top: auto;
  bottom: 4%;
  right: 0;
  left: 0;
  margin: auto;
  max-width: 32%;
}
@media (max-width: 767px) {
  .main_visual_wrap .main_copy {
    bottom: 4%;
    max-width: 92%;
  }
}
.main_visual_wrap .copy_right {
  position: absolute;
  bottom: 2px;
  left: 2px;
  color: #fff;
  font-size: 9px; 
  margin: 0;
}
@media ( max-width : 767px ) {
  .main_visual_wrap .copy_right {
    display: none;
  }
}
.main_copy .list_circle {
  display: flex;
  gap: 0 3%;
  justify-content: center;
  list-style-type: none;
  margin: 0;
}
.main_copy .list_circle li {
  color: #0077C0;
  background: #F9FF81;
  border-radius: 100vh;
  font-weight: bold;
  text-align: center;
  width: 10.6vw;
  height: 10vw;
  max-width: 220px;
  max-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 5px 5px 0 rgba(0, 119, 192, 0.2);
}
@media (max-width: 767px) {
  .main_copy .list_circle li {
    width: 30vw;
    height: 28vw;
  }
}
.main_copy .list_circle li span {
  white-space: nowrap;
}
.main_copy .list_circle li .fs12 {
  display: block;
  font-size: 12px;
  font-size: clamp(10px, 1.1vw, 22px);
}
@media (max-width: 767px) {
  .main_copy .list_circle li .fs12 {
    font-size: clamp(10px, 3.6vw, 40px);
  }
}
.main_copy .list_circle li .fs13 {
  display: block;
  font-size: 13px;
  font-size: clamp(10px, 1.2vw, 24px);
}
@media (max-width: 767px) {
  .main_copy .list_circle li .fs13 {
    font-size: clamp(10px, 3.8vw, 44px);
  }
}
.main_copy .list_circle li .fs16 {
  display: block;
  font-size: 16px;
  font-size: clamp(10px, 1.4vw, 26px);
}
@media (max-width: 767px) {
  .main_copy .list_circle li .fs16 {
    font-size: clamp(10px, 4vw, 48px);
  }
}
.main_copy .list_circle li .fs20 {
  font-size: 20px;
  font-size: clamp(14px, 1.6vw, 34px);
}
@media (max-width: 767px) {
  .main_copy .list_circle li .fs20 {
    font-size: clamp(12px, 4.8vw, 56px);
  }
}
.main_copy .list_circle li .fs22 {
  font-size: 22px;
  font-size: clamp(16px, 1.8vw, 38px);
}
@media (max-width: 767px) {
  .main_copy .list_circle li .fs22 {
    font-size: clamp(14px, 5.2vw, 60px);
  }
}
.main_copy .list_circle li .fs40 {
  font-size: 40px;
  line-height: 0.8;
  font-size: clamp(24px, 3vw, 80px);
}
@media (max-width: 767px) {
  .main_copy .list_circle li .fs40 {
    font-size: clamp(24px, 10vw, 120px);
  }
}

.sec_thought {
  padding: 100px 0 150px;
  background: url(../images/bg_img001.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .sec_thought {
    padding: 50px 0 80px;
    background: url(../images/sp_bg_img001.jpg) no-repeat center center/cover;
  }
}
@media (max-width: 767px) {
  .sec_thought .container {
    padding: 0 10px;
  }
}
.sec_thought .h2_thought {
  text-align: center;
  font-size: 26px;
  color: #0077C0;
  font-weight: bold;
  margin: 0 0 50px;
}
@media (max-width: 767px) {
  .sec_thought .h2_thought {
    font-size: 18px;
    margin: 0 0 30px;
  }
}
.sec_thought .h2_thought .adjust_left {
  display: inline-block;
  transform: translateY(-8px);
}
.sec_thought .h2_thought .adjust_right {
  display: inline-block;
  transform: translateY(3px);
}
.sec_thought .h2_thought .line {
  font-size: 33px;
}
@media (max-width: 767px) {
  .sec_thought .h2_thought .line {
    font-size: 24px;
  }
}
.sec_thought .desc {
  color: #0077C0;
  text-align: center;
  line-height: 2.7;
  font-weight: 500;
}
.sec_thought .h2_thought .line, .sec_thought .desc .line {
  font-weight: bold;
  background: linear-gradient(transparent 80%, #F9FF81 80%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 100%;
  display: inline;
  letter-spacing: 0;
}
.sec_thought .h2_thought.animated .line, .sec_thought .desc.animated .line {
  animation-name: lineDraw;
  animation-duration: 1.6s;
  animation-delay: 2.4s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@keyframes lineDraw {
  0% {
    background-size: 0% 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}

.sec_fundraiser {
  margin-top: -50px;
  border-radius: 50px 50px 0 0;
  padding: 160px 0 0;
  background: url(../images/bg_img002.png) no-repeat center center/cover;
  position: relative;
}
@media (max-width: 767px) {
  .sec_fundraiser {
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
    padding: 110px 0 40px;
    background: url(../images/sp_bg_img002.png) no-repeat center center/cover;
  }
}
.sec_fundraiser:before {
  content: "";
  position: absolute;
  top: -25px;
  bottom: auto;
  right: 0;
  left: 0;
  margin: auto;
  width: 10px;
  height: 90px;
  background: url(../images/dot_img.png) no-repeat center center/cover;
}
.sec_fundraiser .container {
  width: 1200px;
}
@media (max-width: 767px) {
  .sec_fundraiser .bnr {
    margin-left: -15px;
    margin-right: -15px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .sec_fundraiser .bnr img {
    max-width: none;
    position: relative;
    right: calc(754px - 100%);
  }
}
.sec_fundraiser .h2_fundraiser {
  color: #fff;
  font-weight: bold;
  font-size: 28px;
  margin: 0 0 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .sec_fundraiser .h2_fundraiser {
    font-size: 20px;
    margin: 0 0 -60px;
    text-align: center;
  }
}
.sec_fundraiser .h2_fundraiser .large {
  display: block;
  color: #F9FF81;
  font-size: 44px;
  margin: 30px 0;
}
@media (max-width: 767px) {
  .sec_fundraiser .h2_fundraiser .large {
    font-size: 32px;
    margin: 15px 0;
  }
}
.sec_fundraiser .txt_box {
  display: flex;
  gap: 0 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 10px 10px 0 #0077C0;
  border-radius: 10px;
  padding: 25px 20px;
  margin: 0 0 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .sec_fundraiser .txt_box {
    display: block;
    padding: 20px 4%;
    margin: -100px 0 30px;
  }
}
@media (max-width: 400px) {
  .sec_fundraiser .txt_box {
    margin: -40% 0 30px;
  }
}
.sec_fundraiser .txt_box .title {
  margin: 0;
  font-weight: bold;
  color: #0077C0;
  letter-spacing: 0;
  padding: 0 15px 3px;
  border-bottom: 1px solid #0077C0;
}
@media (max-width: 767px) {
  .sec_fundraiser .txt_box .title {
    margin: 0 auto 5px;
    display: table;
  }
}
.sec_fundraiser .txt_box .desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0;
  color: #0077C0;
}
@media (max-width: 767px) {
  .sec_fundraiser .txt_box .desc {
    text-align: center;
  }
}
.sec_fundraiser .txt_box + .desc {
  color: #fff;
  line-height: 2.5;
}
@media (max-width: 767px) {
  .sec_fundraiser .txt_box + .desc {
    line-height: 1.8;
  }
}
.sec_fundraiser .txt_box + .desc .color_yellow {
  color: #F9FF81;
  font-size: 18px;
}
/*
.sec_fundraiser .line {
  font-weight: bold;
  background: linear-gradient(transparent 80%, #F9FF81 80%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 100%;
  display: inline;
  letter-spacing: 0;
}
*/
.sec_fundraiser .line {
  font-weight: bold;
  background: linear-gradient(transparent 90%, #F9FF81 95%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 100%;
  letter-spacing: 0;
}
@keyframes lineDraw {
  0% {
    background-size: 0% 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}
/*
.sec_fundraiser .desc.animated .line {
  will-change: background-size;
  animation-name: lineDraw;
  animation-duration: 1.6s;
  animation-delay: 1.4s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
*/
.sec_fundraiser .desc.animated .line {
  will-change: background-size;
  animation-name: lineDraw;
  animation-duration: 1.6s;
  animation-delay: 0.2s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.sec_reason {
  margin-top: -50px;
  border-radius: 50px 50px 0 0;
  padding: 100px 0 150px;
  background: linear-gradient(to bottom, #DBF1FF 0, #DBF1FF 80px, rgba(219, 241, 255, 0.1) 100%);
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .sec_reason {
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
    padding: 50px 0 80px;
  }
}
.sec_reason .container {
  width: 1120px;
}
@media (max-width: 767px) {
  .sec_reason .container {
    padding: 0 40px;
  }
}
.sec_reason .h2_reason {
  color: #0077C0;
  position: relative;
  z-index: 1;
  font-weight: bold;
  text-align: center;
  font-size: 44px;
}
@media (max-width: 767px) {
  .sec_reason .h2_reason {
    font-size: 28px;
  }
}
.sec_reason .h2_reason .sub {
  display: table;
  margin: 0 auto;
  position: relative;
  font-size: 28px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .sec_reason .h2_reason .sub {
    font-size: 18px;
  }
}
.sec_reason .h2_reason .sub:before, .sec_reason .h2_reason .sub:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 0.8em;
  background: #0077C0;
  transform: rotate(-40deg);
}
.sec_reason .h2_reason .sub:after {
  left: auto;
  right: 0;
  transform: rotate(40deg);
}
.sec_reason .h2_reason .en {
  color: #fff;
  font-family: "Ysabeau Office", sans-serif;
  font-size: 90px;
  letter-spacing: 0.15em;
  position: absolute;
  z-index: -1;
  top: 0.3em;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .sec_reason .h2_reason .en {
    font-size: 48px;
  }
}
.sec_reason .h2_reason .main {
  text-shadow: 8px 0 0 #fff;
  letter-spacing: 0.15em;
}
.sec_reason .h2_reason .main .num {
  font-family: "Ysabeau Office", sans-serif;
  font-size: 100px;
  display: inline-block;
  transform: translateY(0.15em);
}
@media (max-width: 767px) {
  .sec_reason .h2_reason .main .num {
    font-size: 60px;
  }
}
.sec_reason .reason_box {
  background: #fff;
  padding: 40px;
  border-radius: 0 50px 0 50px;
  margin: 50px 0 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .sec_reason .reason_box {
    padding: 50px 20px 20px;
    border-radius: 0 30px 30px 0;
    margin: 30px 0 0;
    margin-left: -40px;
  }
}
@media (max-width: 767px) {
  .sec_reason .reason_box.box02 {
    margin-left: 0;
    margin-right: -40px;
    border-radius: 30px 0 0 30px;
  }
  .sec_reason .reason_box.box02 .num {
    left: auto;
    right: 4%;
  }
}
.sec_reason .reason_box .num {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 4%;
  color: rgba(219, 241, 255, 0.4);
  font-size: 150px;
  font-weight: bold;
  line-height: 0.5;
  letter-spacing: 0;
  font-family: "Ysabeau Office", sans-serif;
}
@media (max-width: 767px) {
  .sec_reason .reason_box .num {
    font-size: 100px;
  }
}
.sec_reason .reason_box .contents {
  display: flex;
  gap: 0 20px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .sec_reason .reason_box .contents {
    display: block;
  }
}
.sec_reason .reason_box .contents.align-start {
  align-items: flex-start;
}
.sec_reason .reason_box .contents .heading {
  min-width: 320px;
}
.sec_reason .reason_box .contents .heading .h3_reason {
  color: #0077C0;
  font-weight: bold;
  text-align: center;
  font-size: 34px;
}
@media (max-width: 767px) {
  .sec_reason .reason_box .contents .heading .h3_reason {
    font-size: 28px;
    margin: 0 0 25px;
  }
}
@media (min-width: 768px) {
  .sec_reason .reason_box .contents .heading .h3_reason.mt_custom {
    margin-top: 50px;
  }
}
.sec_reason .reason_box .contents .heading .h3_reason .line {
  background: linear-gradient(transparent 80%, #F9FF81 80%);
}
.sec_reason .reason_box .contents .heading .desc {
  color: #0077C0;
  font-size: 14px;
  margin: 40px 0 0;
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .sec_reason .reason_box .contents .heading .desc {
    margin: 20px 0 0;
  }
}
.sec_reason .reason_box .contents .heading .result_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0077C0;
  margin: 30px 0 0;
}
@media (max-width: 767px) {
  .sec_reason .reason_box .contents .heading .result_wrap {
    margin: 25px 0 8px;
  }
}
.sec_reason .reason_box .contents .heading .result_wrap p {
  margin: 0;
}
.sec_reason .reason_box .contents .heading .result_wrap .small {
  text-align: center;
  display: block;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .sec_reason .reason_box .contents .heading .result_wrap .small {
    font-size: 12px;
  }
}
.sec_reason .reason_box .contents .heading .result_wrap .middle {
  display: block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .sec_reason .reason_box .contents .heading .result_wrap .middle {
    font-size: 20px;
  }
}
.sec_reason .reason_box .contents .heading .result_wrap .large {
  display: block;
  font-size: 70px;
  font-weight: bold;
  font-family: "Ysabeau Office", sans-serif;
  letter-spacing: -1px;
  text-shadow: 0 5px 0 #E8F6FF;
  display: inline-block;
  line-height: 0.8;
  transform: translateY(-10px);
}
@media (max-width: 767px) {
  .sec_reason .reason_box .contents .heading .result_wrap .large {
    font-size: 60px;
  }
}
.sec_reason .reason_box .contents .heading .result_wrap .normal {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .sec_reason .reason_box .contents .heading .result_wrap .normal {
    font-size: 16px;
    margin: 0 0 0 5px;
  }
}
.sec_reason .reason_box .contents .item {
  display: flex;
  gap: 0 20px;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 320px - 20px);
}
@media (max-width: 1000px) {
  .sec_reason .reason_box .contents .item {
    display: block;
    width: 100%;
  }
}
.sec_reason .reason_box .contents .item.block {
  display: block;
}
.sec_reason .reason_box .contents .item.justify-end {
  justify-content: flex-end;
}
@media (max-width: 1000px) {
  .sec_reason .reason_box .contents .item.justify-end .bnr {
    margin: 30px 0 0;
  }
}
.sec_reason .reason_box .contents .item .desc {
  color: #0077C0;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0;
}
.sec_reason .reason_box .contents .item .bnr {
  flex-shrink: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .sec_reason .reason_box .contents .item .bnr img {
    max-width: calc(100% + 50px);
  }
}
.sec_reason .reason_box .contents .item .flex_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 20px;
}
@media (max-width: 1000px) {
  .sec_reason .reason_box .contents .item .flex_block {
    justify-content: center;
    margin: 30px 0 0;
  }
}
@media (max-width: 767px) {
  .sec_reason .reason_box .contents .item .flex_block {
    display: block;
  }
}
.sec_reason .reason_box .contents .item .flex_block:last-child {
  margin: 30px 0 0;
}
.sec_reason .reason_box .contents .item .flex_block .title {
  color: #0077C0;
  background: #DBF1FF;
  padding: 5px 20px;
  text-align: center;
  border-radius: 10px;
  font-size: 24px;
  font-weight: bold;
  display: table;
  margin: 0 auto 10px;
}
@media (max-width: 767px) {
  .sec_reason .reason_box .contents .item .flex_block .title {
    font-size: 18px;
  }
}
.sec_reason .reason_box .contents .item .flex_block .desc {
  text-align: center;
}
.sec_reason .reason_box .contents .item .flex_block .bnr {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .sec_reason .reason_box .contents .item .flex_block .bnr img {
    position: relative;
    right: calc(330px - 100%);
  }
}
.sec_reason .remarks {
  text-align: right;
  color: #238CCB;
  margin: 15px 0 0;
  font-size: 10px;
}
@media (max-width: 767px) {
  .sec_reason .remarks {
    margin: 10px 0 0;
  }
}

.sec_voice {
  margin-top: -50px;
  border-radius: 50px 50px 0 0;
  padding: 100px 0 150px;
  background: #238CCB;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .sec_voice {
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
    padding: 50px 0 80px;
  }
}
.sec_voice .container {
  width: 1200px;
}
.sec_voice .h2_voice .sub_en {
  top: -0.1em;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.1);
}
.sec_voice .h2_voice .main_jp {
  color: #fff;
}
.sec_voice .voice_block {
  background: #fff;
  border-radius: 10px;
  padding: 130px 25px 80px;
  position: relative;
  background: url(../images/voice_bnr001.png) no-repeat top left/auto, #fff;
}
@media (max-width: 767px) {
  .sec_voice .voice_block {
    padding: 130px 15px 80px;
    margin: 40px 0 0;
  }
}
.sec_voice .voice_block.block02 {
  background: url(../images/voice_bnr003.png) no-repeat top left/auto, #fff;
}
.sec_voice .voice_block.block03 {
  background: url(../images/voice_bnr005.png) no-repeat top left/auto, #fff;
}
.sec_voice .voice_block .heading {
  display: table;
  margin: 0 -15px 10px auto;
}
@media (min-width: 768px) {
  .sec_voice .voice_block .heading {
    margin-right: -25px;
  }
}
.sec_voice .voice_block .heading .h3_voice .line {
  font-size: 22px;
  color: #0077C0;
  font-weight: bold;
  display: table;
  padding: 5px 10px;
  background: #fff;
  margin: 10px 0 0 0;
  box-shadow: 0 4px 10px rgba(0, 119, 192, 0.2);
}
@media (max-width: 767px) {
  .sec_voice .voice_block .heading .h3_voice .line {
    font-size: 20px;
  }
}
.sec_voice .voice_block .heading .job {
  color: #0077C0;
  font-size: 10px;
  margin: 20px 0 5px;
}
.sec_voice .voice_block .heading .profile {
  font-size: 16px;
  color: #0077C0;
  font-weight: bold;
}
@media (max-width: 767px) {
  .sec_voice .voice_block .heading .profile {
    font-size: 14px;
  }
}
/*
.sec_voice .voice_block .desc {
  color: #0077C0;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0;
}
*/

.sec_voice .voice_block .desc {
  color: #0077C0;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.sec_voice .voice_block .desc .line {
  font-weight: bold;
  background: linear-gradient(transparent 80%, #F9FF81 80%);
}
.sec_voice .voice_block .btn_detail {
  cursor: pointer;
  color: #fff;
  background: #0077C0;
  border-radius: 100vh;
  text-align: center;
  font-size: 18px;
  padding: 15px 0;
  font-weight: bold;
  position: absolute;
  top: auto;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 50px);
}
.sec_voice .voice_block .btn_detail:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  left: auto;
  margin: auto;
  width: 30px;
  height: 30px;
  border-radius: 100vh;
  background: #fff;
}
.sec_voice .voice_block .btn_detail span {
  display: block;
  position: relative;
}
.sec_voice .voice_block .btn_detail span:before, .sec_voice .voice_block .btn_detail span:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  right: 29px;
  left: auto;
  margin: auto;
  width: 12px;
  height: 2px;
  background: #0077C0;
  transition: 0.2s;
}
.sec_voice .voice_block .btn_detail span:after {
  transform: rotate(90deg);
}
.sec_voice .voice_block .btn_detail .colsed {
  display: none;
}
.sec_voice .voice_block .btn_detail.active .open {
  display: none;
}
.sec_voice .voice_block .btn_detail.active .colsed {
  display: block;
}
.sec_voice .voice_block .btn_detail.active .colsed:after {
  transform: rotate(0);
}
.sec_voice .voice_block .hide_contents {
  display: none;
}
/*
.sec_voice .voice_block .hide_contents .title {
  color: #0077C0;
  font-size: 17px;
  font-weight: bold;
  margin: 0 0 10px;
}
*/
.sec_voice .voice_block .hide_contents .title {
  color: #0077C0;
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px;
}

.sec_daily_flow {
  margin-top: -50px;
  border-radius: 50px 50px 0 0;
  padding: 100px 0 150px;
  background: #DBF1FF;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .sec_daily_flow {
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
    padding: 50px 0 80px;
  }
}
.sec_daily_flow .contents {
  position: relative;
  display: flex;
  gap: 0 4%;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .sec_daily_flow .contents {
    display: block;
  }
}
.sec_daily_flow .contents .heading {
  position: sticky;
  top: 20%;
  width: 50%;
  margin-top: 16%;
}
@media (max-width: 767px) {
  .sec_daily_flow .contents .heading {
    position: relative;
    top: 0;
    width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .sec_daily_flow .contents .heading .h2_daily_flow {
    margin: 0 0 50px;
  }
}
.sec_daily_flow .contents .heading .h2_daily_flow .sub_en {
  top: -0.5em;
  white-space: nowrap;
}
@media (min-width: 1140px) {
  .sec_daily_flow .contents .heading .h2_daily_flow .sub_en {
    margin-left: -1em;
  }
}
@media (min-width: 768px) {
  .sec_daily_flow .contents .heading .h2_daily_flow .sub_en {
    font-size: clamp(40px, 6vw, 80px);
  }
}
.sec_daily_flow .contents .heading .h2_daily_flow .main_jp {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1140px) {
  .sec_daily_flow .contents .heading .h2_daily_flow .main_jp {
    margin-left: -2em;
  }
}
@media (min-width: 768px) {
  .sec_daily_flow .contents .heading .h2_daily_flow .main_jp {
    font-size: clamp(24px, 3vw, 44px);
  }
}
.sec_daily_flow .contents .heading .h2_daily_flow .main_jp .badge {
  color: #fff;
  background: #0077C0;
  padding: 0 15px 2px 15px;
  margin: 0 0 0 8px;
  font-size: clamp(14px, 1.6vw, 18px);
}
.sec_daily_flow .contents .heading .desc {
  color: #0077C0;
  font-weight: 500;
  text-align: center;
  line-height: 2;
  letter-spacing: 0;
}
@media (min-width: 1140px) {
  .sec_daily_flow .contents .heading .desc {
    margin-left: -6em;
  }
}
.sec_daily_flow .contents .flow_wrap {
  width: 46%;
  position: relative;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .sec_daily_flow .contents .flow_wrap {
    width: 100%;
    margin: 30px 0 0;
  }
}
.sec_daily_flow .contents .flow_wrap:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: auto;
  right: 25px;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-radius: 100vh;
  background: #fff;
}
@media (max-width: 767px) {
  .sec_daily_flow .contents .flow_wrap:before {
    right: 5px;
  }
}
.sec_daily_flow .contents .flow_wrap:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  left: 0;
  margin: auto;
  width: 5px;
  height: 100%;
  background: #fff;
}
@media (max-width: 767px) {
  .sec_daily_flow .contents .flow_wrap:after {
    right: 5px;
    width: 3px;
  }
}
.sec_daily_flow .contents .flow_wrap .flow_block {
  display: grid;
  gap: 6%;
  grid-template-columns: repeat(2, 47%);
  align-items: center;
}
.sec_daily_flow .contents .flow_wrap .flow_block:not(:first-child) {
  margin: 40px 0 0;
}
@media (max-width: 767px) {
  .sec_daily_flow .contents .flow_wrap .flow_block:not(:first-child) {
    margin: 30px 0 0;
  }
}
.sec_daily_flow .contents .flow_wrap .flow_block:last-child {
  position: relative;
}
.sec_daily_flow .contents .flow_wrap .flow_block:last-child:after {
  content: "";
  position: absolute;
  top: auto;
  bottom: -40px;
  right: 25px;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-radius: 100vh;
  background: #fff;
}
@media (max-width: 767px) {
  .sec_daily_flow .contents .flow_wrap .flow_block:last-child:after {
    right: 5px;
  }
}
.sec_daily_flow .contents .flow_wrap .flow_block.reverse .bnr {
  order: 2;
}
.sec_daily_flow .contents .flow_wrap .flow_block .bnr {
  margin: 0;
}
.sec_daily_flow .contents .flow_wrap .txt_wrap {
  color: #0077C0;
  font-weight: bold;
}
.sec_daily_flow .contents .flow_wrap .txt_wrap .time {
  margin: 0 0 10px;
  font-size: 26px;
}
@media (max-width: 767px) {
  .sec_daily_flow .contents .flow_wrap .txt_wrap .time {
    font-size: 18px;
  }
}
.sec_daily_flow .contents .flow_wrap .txt_wrap .detail {
  margin: 0;
  line-height: 1.6;
}

.sec_environment {
  margin-top: -50px;
  border-radius: 50px 50px 0 0;
  padding: 100px 0 150px;
  background: #fff;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .sec_environment {
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
    padding: 50px 0 80px;
  }
}
@media (max-width: 767px) {
  .sec_environment .row .col_2:last-child {
    margin: 20px 0 0;
  }
}
.sec_environment .environment_wrap .environment_block {
  border: 2px solid #0077C0;
  box-shadow: 4px 7px 0 #DBF1FF;
  border-radius: 20px;
  margin: 30px 0 0;
}
@media (max-width: 767px) {
  .sec_environment .environment_wrap .environment_block {
    margin: 20px 0 0;
  }
}
.sec_environment .environment_wrap .environment_block .h3_environment {
  padding: 15px 80px 15px 8%;
  cursor: pointer;
  display: grid;
  gap: 0 4%;
  align-items: center;
  grid-template-columns: auto 1fr;
  margin: 0;
  position: relative;
}
@media (max-width: 767px) {
  .sec_environment .environment_wrap .environment_block .h3_environment {
    padding: 10px 4%;
    grid-template-columns: 15% 1fr;
    font-size: 16px;
    padding-right: 30px;
  }
}
.sec_environment .environment_wrap .environment_block .h3_environment:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 50px;
  height: 50px;
  background: #DBF1FF;
  border-radius: 100vh;
}
@media (max-width: 767px) {
  .sec_environment .environment_wrap .environment_block .h3_environment:before {
    right: 10px;
    width: 30px;
    height: 30px;
  }
}
.sec_environment .environment_wrap .environment_block .h3_environment .txt {
  display: block;
  color: #0077C0;
  font-weight: bold;
  font-size: 26px;
}
@media (max-width: 767px) {
  .sec_environment .environment_wrap .environment_block .h3_environment .txt {
    font-size: 16px;
  }
}
.sec_environment .environment_wrap .environment_block .h3_environment .txt:before, .sec_environment .environment_wrap .environment_block .h3_environment .txt:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 45px;
  width: 20px;
  height: 3px;
  background: #0077C0;
  transform: translateY(-50%);
  transition: transform 0.2s;
}
@media (max-width: 767px) {
  .sec_environment .environment_wrap .environment_block .h3_environment .txt:before, .sec_environment .environment_wrap .environment_block .h3_environment .txt:after {
    right: 18px;
    width: 15px;
  }
}

.sec_environment .environment_wrap .environment_block .h3_environment .txt:after {
  transform: translateY(-50%) rotate(90deg);
}
.sec_environment .environment_wrap .environment_block .h3_environment.active .txt:after {
  transform: translateY(-50%) rotate(0);
}
.sec_environment .environment_wrap .environment_block .contents {
  display: none;
  padding: 30px 0 40px;
  margin: 0 auto;
  border-top: 2px solid #0077C0;
  width: calc(100% - 80px);
}
@media (max-width: 767px) {
  .sec_environment .environment_wrap .environment_block .contents {
    padding: 15px 0 20px;
    width: calc(100% - 30px);
  }
}
.sec_environment .environment_wrap .environment_block .contents .row + .h4_environment {
  margin: 30px 0 0;
}
@media (max-width: 767px) {
  .sec_environment .environment_wrap .environment_block .contents .row + .h4_environment {
    margin: 20px 0 0;
  }
}
.sec_environment .environment_wrap .environment_block .contents .row.mt_custom {
  margin: 30px 0 0;
}
@media (max-width: 767px) {
  .sec_environment .environment_wrap .environment_block .contents .row.mt_custom {
    margin: 0;
  }
}
.sec_environment .environment_wrap .environment_block .contents .row .bnr {
  text-align: center;
}
.sec_environment .environment_wrap .environment_block .contents .h4_environment {
  color: #0077C0;
  background: #DBF1FF;
  text-align: center;
  font-size: 14px;
  padding: 15px 0;
  font-weight: bold;
}
@media (max-width: 767px) {
  .sec_environment .environment_wrap .environment_block .contents .h4_environment {
    padding: 10px 0;
  }
}
.sec_environment .environment_wrap .environment_block .contents .h4_environment + .desc {
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .sec_environment .environment_wrap .environment_block .contents .h4_environment + .desc {
    margin: 10px 0 0;
  }
}
.sec_environment .environment_wrap .environment_block .contents .desc {
  font-size: 14px;
  line-height: 1.8;
}
.sec_environment .environment_wrap .environment_block .contents .desc.strong {
  font-weight: bold;
}
.sec_environment .environment_wrap .environment_block .contents .desc + .h4_environment {
  margin: 30px 0 0;
}
@media (max-width: 767px) {
  .sec_environment .environment_wrap .environment_block .contents .desc + .h4_environment {
    margin: 20px 0 0;
  }
}
.sec_environment .environment_wrap .environment_block .contents .title {
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  margin: 15px 0 0;
}
/*
.sec_environment .environment_wrap .environment_block .contents .case {
  color: #fff;
  background: #0077C0;
  text-align: center;
  margin: 15px 0 5px;
  font-size: 12px;
  padding: 5px 0;
}
*/
.sec_environment .environment_wrap .environment_block .contents .case {
  color: #fff;
  background: #0077C0;
  text-align: center;
  margin: 15px 0 5px;
  font-size: 15px;
  padding: 8px 0;
}

.sec_environment .environment_wrap .environment_block .contents .table_salary {
  width: 100%;
}
/*
.sec_environment .environment_wrap .environment_block .contents .table_salary th, .sec_environment .environment_wrap .environment_block .contents .table_salary td {
  padding: 5px;
  border: 1px solid #0077C0;
  font-size: 12px;
}
*/

.sec_environment .environment_wrap .environment_block .contents .table_salary th, .sec_environment .environment_wrap .environment_block .contents .table_salary td {
  padding: 7px;
  border: 1px solid #0077C0;
  font-size: 15px;
}

.sec_environment .environment_wrap .environment_block .contents .table_salary th {
  color: #fff;
  background: #0077C0;
  text-align: center;
  font-weight: normal;
}
.sec_environment .environment_wrap .environment_block .contents .table_salary + .desc {
  margin: 5px 0 0;
}
.sec_environment .environment_wrap .environment_block .contents .table_salary tr:first-child th {
  border-bottom: 1px solid #fff;
}
.sec_environment .environment_wrap .environment_block .contents .contents_center {
  max-width: 380px;
  margin: 0 auto;
}
.sec_environment .environment_wrap .environment_block .contents .flex_box {
  display: flex;
  align-items: center;
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .sec_environment .environment_wrap .environment_block .contents .flex_box {
    margin: 10px 0 0;
  }
}
.sec_environment .environment_wrap .environment_block .contents .flex_box .desc {
  letter-spacing: 0;
  line-height: 1.8;
}
.sec_environment .environment_wrap .environment_block .contents .box_border {
  padding: 20px 60px;
  border: 2px solid #DBF1FF;
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .sec_environment .environment_wrap .environment_block .contents .box_border {
    padding: 0 10px 10px;
  }
}
@media (max-width: 767px) {
  .sec_environment .environment_wrap .environment_block .contents .box_border .col_2 {
    margin: 10px 0 0;
  }
}
.sec_environment .environment_wrap .environment_block .contents .ex_box {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
@media (max-width: 767px) {
  .sec_environment .environment_wrap .environment_block .contents .ex_box {
    gap: 0 10px;
  }
}
.sec_environment .environment_wrap .environment_block .contents .ex_box .bnr {
  flex-shrink: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .sec_environment .environment_wrap .environment_block .contents .ex_box .bnr {
    max-width: 20%;
  }
}
.sec_environment .environment_wrap .environment_block .contents .ex_box .desc {
  margin: 0;
}
@media (max-width: 767px) {
  .sec_environment .environment_wrap .environment_block .contents .ex_box .desc {
    font-size: 12px;
  }
}
.sec_environment .environment_wrap .environment_block .contents .remarks {
  font-size: 12px;
}
@media (min-width: 768px) {
  .sec_environment .environment_wrap .environment_block .contents .remarks {
    text-align: right;
  }
}
.sec_environment .environment_wrap .environment_block .contents .remarks + .desc {
  margin: 0;
}

.sec_faq {
  margin-top: -50px;
  border-radius: 50px 50px 0 0;
  padding: 100px 0 150px;
  background: #F4F4F4;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .sec_faq {
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
    padding: 50px 0 80px;
  }
}
.sec_faq .h2_faq .sub_en {
  color: #fff;
}
.sec_faq .faq_block {
  background: #fff;
  border: 1px solid #DFDFDF;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .sec_faq .faq_block {
    margin: 15px 0 0;
  }
}
.sec_faq .faq_block .question {
  margin: 0;
  cursor: pointer;
  color: #0077C0;
  font-weight: bold;
  position: relative;
  padding-left: 35px;
  padding-right: 35px;
}
.sec_faq .faq_block .question:after {
  content: "Q.";
  position: absolute;
  top: -10px;
  left: 0;
  color: #0077C0;
  font-size: 24px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
.sec_faq .faq_block .question:before {
  content: "";
  position: absolute;
  top: 0;
  right: 10px;
  width: 16px;
  height: 16px;
  border-bottom: 3px solid #aaa;
  border-right: 3px solid #aaa;
  transform: rotate(45deg);
  transition: 0.2s;
}
.sec_faq .faq_block .question.open:before {
  transform: translateY(8px) rotate(225deg);
}
.sec_faq .faq_block .answer {
  margin: 20px 0 0;
  padding: 20px 0 0;
  display: none;
  border-top: 1px solid #DFDFDF;
  color: #0077C0;
  position: relative;
  padding-left: 35px;
}
.sec_faq .faq_block .answer:after {
  content: "A.";
  position: absolute;
  top: 13px;
  left: 0;
  color: #DA4C67;
  font-size: 24px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}

.sec_consultation {
  margin-top: -50px;
  border-radius: 50px 50px 0 0;
  padding: 120px 0 150px;
  background: url(../images/bg_img003.png) no-repeat center center/cover;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .sec_consultation {
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
    padding: 100px 0 80px;
    background: url(../images/sp_bg_img003.png) no-repeat center center/cover;
  }
}
.sec_consultation:before {
  content: "";
  position: absolute;
  top: -25px;
  bottom: auto;
  right: 0;
  left: 0;
  margin: auto;
  width: 10px;
  height: 90px;
  background: url(../images/dot_img.png) no-repeat center center/cover;
}
.sec_consultation .h2_consultation .main_jp {
  color: #fff;
}
.sec_consultation .desc {
  color: #fff;
  line-height: 2;
}
@media (min-width: 768px) {
  .sec_consultation .desc {
    text-align: center;
  }
}
.sec_consultation .more {
  margin: 50px 0 0;
}
@media (max-width: 767px) {
  .sec_consultation .more {
    margin: 25px 0 0;
  }
}
.sec_consultation .more a {
  display: block;
  text-decoration: none;
  width: 620px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 100vh;
  color: #FF5500;
  border: 2px solid #FF5500;
  background: #fff;
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 26px;
  padding: 28px 0;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .sec_consultation .more a {
    padding: 18px 0;
    font-size: 18px;
  }
}
.sec_consultation .more a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8%;
  left: auto;
  margin: auto;
  width: 40px;
  height: 40px;
  background: url(../images/arrow.png) no-repeat center center/cover;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .sec_consultation .more a:after {
    right: 6%;
    width: 28px;
    height: 28px;
  }
}
.sec_consultation .more a:hover {
  opacity: 0.8;
}

.sec_escription {
  margin-top: -50px;
  border-radius: 50px 50px 0 0;
  padding: 100px 0 150px;
  background: #DBF1FF;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .sec_escription {
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
    padding: 50px 0 80px;
  }
}
.sec_escription .h2_escription {
  margin: 0 0 100px;
}
@media (max-width: 767px) {
  .sec_escription .h2_escription {
    margin: 0 0 50px;
  }
}
.sec_escription .h2_escription .sub_en {
  top: -0.5em;
}
.sec_escription .desc {
  color: #0077C0;
  text-align: center;
  line-height: 1.6;
  margin: 0 0 50px;
}
@media (max-width: 767px) {
  .sec_escription .desc {
    margin: 0 0 20px;
  }
}
.sec_escription .table_escription {
  width: 100%;
}
.sec_escription .table_escription tr:first-child th {
  border-radius: 10px 10px 0 0;
}
.sec_escription .table_escription tr:last-child td {
  border-radius: 0 0 10px 10px;
}
.sec_escription .table_escription th, .sec_escription .table_escription td {
  display: block;
  padding: 20px 30px;
  color: #0077C0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .sec_escription .table_escription th, .sec_escription .table_escription td {
    padding: 15px 20px;
    font-size: 14px;
  }
}
.sec_escription .table_escription th {
  background: #C4E5FF;
  font-weight: bold;
  font-size: 18px;
}
.sec_escription .table_escription td {
  background: #fff;
}
.sec_escription .table_escription td strong {
  line-height: 1.8;
  font-weight: bold;
}
@media (min-width: 768px) {
  .sec_escription .table_escription td.flex_box {
    display: grid;
    gap: 0 6%;
    grid-template-columns: auto 1fr;
  }
}
.sec_escription .table_escription td.flex_box .table_area {
  width: 100%;
}
.sec_escription .table_escription td.flex_box .table_area:not(:last-child) {
  margin: 0 0 15px;
}
.sec_escription .table_escription td.flex_box .table_area th, .sec_escription .table_escription td.flex_box .table_area td {
  border-radius: 0;
  display: table-cell;
  border: 1px solid #0077C0;
  vertical-align: middle;
  padding: 10px 15px;
  font-size: 16px;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .sec_escription .table_escription td.flex_box .table_area th, .sec_escription .table_escription td.flex_box .table_area td {
    display: block;
    border: 0;
  }
}
.sec_escription .table_escription td.flex_box .table_area thead th {
  color: #fff;
  background: #0077C0;
  text-align: center;
  width: 20%;
  position: relative;
}
@media (max-width: 767px) {
  .sec_escription .table_escription td.flex_box .table_area thead th {
    text-align: left;
    width: 100%;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
  }
  .sec_escription .table_escription td.flex_box .table_area thead th:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    left: auto;
    margin: auto;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 30px;
  }
  .sec_escription .table_escription td.flex_box .table_area thead th .sp_toggle {
    display: block;
    position: relative;
  }
  .sec_escription .table_escription td.flex_box .table_area thead th .sp_toggle:after, .sec_escription .table_escription td.flex_box .table_area thead th .sp_toggle:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 2px;
    left: auto;
    margin: auto;
    width: 15px;
    height: 3px;
    background: #0077C0;
    transition: 0.2s;
  }
  .sec_escription .table_escription td.flex_box .table_area thead th .sp_toggle:after {
    transform: rotate(90deg);
  }
  .sec_escription .table_escription td.flex_box .table_area thead th .sp_toggle.open:after {
    transform: rotate(0);
  }
}
.sec_escription .table_escription td.flex_box .table_area thead td {
  background: #ECF8FF;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .sec_escription .table_escription td.flex_box .table_area thead td {
    text-align: left;
    display: none;
  }
}
.sec_escription .table_escription td.flex_box .table_area tbody th {
  background: #C4E5FF;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 767px) {
  .sec_escription .table_escription td.flex_box .table_area tbody th {
    text-align: left;
    display: none;
  }
}
.sec_escription .table_escription td.flex_box .table_area tbody td {
  font-size: 14px;
  padding: 20px 35px;
}
@media (max-width: 767px) {
  .sec_escription .table_escription td.flex_box .table_area tbody td {
    padding: 10px 15px;
    border-radius: 0 0 5px 5px;
    background: #ECF8FF;
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sec_escription .table_escription td.flex_box .table_area, .sec_escription .table_escription td.flex_box .table_area thead, .sec_escription .table_escription td.flex_box .table_area tbody,
  .sec_escription .table_escription td.flex_box .table_area tr, .sec_escription .table_escription td.flex_box .table_area th, .sec_escription .table_escription td.flex_box .table_area td {
    display: block;
    width: 100%;
  }
  .sec_escription .table_escription td.flex_box .table_area thead tr td,
  .sec_escription .table_escription td.flex_box .table_area tbody {
    display: none;
  }
  .sec_escription .table_escription td.flex_box .table_area tbody th,
  .sec_escription .table_escription td.flex_box .table_area tbody td {
    display: block !important;
  }
}

.sec_recruit_flow {
  margin-top: -50px;
  border-radius: 50px 50px 0 0;
  padding: 150px 0;
  background: #C4E5FF;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .sec_recruit_flow {
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
    padding: 50px 0 80px;
  }
}
.sec_recruit_flow .h2_recruit_flow {
  margin: 0 0 100px;
}
@media (max-width: 767px) {
  .sec_recruit_flow .h2_recruit_flow {
    margin: 0 0 60px;
  }
}
.sec_recruit_flow .h2_recruit_flow .sub_en {
  top: -0.55em;
  color: rgba(0, 119, 192, 0.05);
}
.sec_recruit_flow .h2_recruit_flow .main_jp {
  color: #fff;
}
.sec_recruit_flow .flow_wrap {
  display: grid;
  gap: 0 5%;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .sec_recruit_flow .flow_wrap {
    display: block;
  }
}
.sec_recruit_flow .flow_wrap .flow_block {
  position: relative;
}
@media (max-width: 767px) {
  .sec_recruit_flow .flow_wrap .flow_block {
    margin: 60px 0 0;
  }
}
.sec_recruit_flow .flow_wrap .flow_block:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 25px;
  bottom: auto;
  right: -50px;
  left: auto;
  margin: auto;
  width: 100px;
  height: 5px;
  background: #0077C0;
}
@media (max-width: 767px) {
  .sec_recruit_flow .flow_wrap .flow_block:after {
    top: auto;
    bottom: -50px;
    right: 0;
    left: 0;
    width: 5px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .sec_recruit_flow .flow_wrap .flow_block.last {
    margin: 90px 0 0;
  }
}
.sec_recruit_flow .flow_wrap .flow_block.last:after {
  content: none;
}
.sec_recruit_flow .flow_wrap .flow_block.last:before {
  content: "";
  position: absolute;
  top: -30px;
  bottom: auto;
  right: 0;
  left: 0;
  margin: auto;
  width: 40px;
  height: 20px;
  background: url(../images/flow_icon.png) no-repeat center center/cover;
}
.sec_recruit_flow .flow_wrap .flow_block .heading {
  color: #fff;
  background: #0077C0;
  text-align: center;
  border-radius: 10px 10px 0 0;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  padding: 10px 0;
}
.sec_recruit_flow .flow_wrap .flow_block .contents {
  color: #0077C0;
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding: 20px 10px;
}
@media (max-width: 767px) {
  .sec_recruit_flow .flow_wrap .flow_block .contents {
    padding: 10px;
  }
}
.sec_recruit_flow .flow_wrap .flow_block .contents .title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.sec_recruit_flow .flow_wrap .flow_block .contents .desc {
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: center;
}

.sec_form {
  margin-top: -50px;
  border-radius: 50px 50px 0 0;
  padding: 150px 0;
  background: #0077C0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .sec_form {
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
    padding: 50px 0 80px;
  }
}
.sec_form .h2_styled {
  margin: 0 0 100px;
}
@media (max-width: 767px) {
  .sec_form .h2_styled {
    margin: 0 0 60px;
  }
}
.sec_form .h2_styled .sub_en {
  color: rgba(255, 255, 255, 0.1);
  top: -0.5em;
}
.sec_form .h2_styled .main_jp {
  color: #fff;
}

/************************************FOOTER************************************/
.footer {
  border-radius: 50px 50px 0 0;
  background: url(../images/ftr_bg.png) no-repeat center center/cover;
  position: relative;
}
.footer:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0077C0;
}
@media (max-width: 767px) {
  .footer {
    border-radius: 20px 20px 0 0;
  }
}
.footer .ftr_btn {
  margin: 0 0 0 auto;
}
@media (max-width: 767px) {
  .footer .ftr_btn {
    position: fixed;
    z-index: 90;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .footer .ftr_btn.is-show {
    opacity: 1;
    visibility: visible;
  }
}
.footer .ftr_btn .list_btn {
  margin: 0;
  list-style-type: none;
  display: grid;
  justify-content: center;
  gap: 0 20px;
  grid-template-columns: repeat(2, auto);
}
@media (max-width: 767px) {
  .footer .ftr_btn .list_btn {
    gap: 0 10px;
  }
}
.footer .footer_inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 0;
}
@media (max-width: 1240px) {
  .footer .footer_inner {
    padding: 100px 20px;
  }
}
@media (max-width: 767px) {
  .footer .footer_inner {
    padding: 40px 15px 20px;
  }
}
.footer .row .col_3 {
  margin: 0 0 30px;
}
.footer .row .col_3:last-child {
  margin: 0;
}
@media (min-width: 768px) {
  .footer .row .col_3 {
    margin: 0;
    width: 32.5%;
  }
  .footer .row .col_3:last-child {
    width: 27%;
  }
}
@media (max-width: 767px) {
  .footer .logo {
    text-align: center;
  }
  .footer .logo a img {
    max-width: 90%;
  }
}
.footer .ftr_info {
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0;
}
.footer .ftr_info a {
  color: #fff;
}
.footer .list_num {
  padding-left: 1em;
}
.footer .list_num li {
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0;
}
.footer .desc {
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0;
  margin: 0;
}
.footer .bnr {
  text-align: center;
}
.footer .title {
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
}
.footer .copy_right {
  margin: 0;
  text-align: center;
  color: #fff;
  background: #242424;
  font-size: 12px;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .footer .copy_right {
    padding: 10px 0 80px;
  }
}/*# sourceMappingURL=style.css.map */