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

html {
  font-size: min(0.6944444444vw, 10px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

@media screen and (max-width: 767px) {
  body.show_menu {
    overflow: hidden;
  }
}

img {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.evt {
  visibility: hidden;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 3rem, 0);
  }
  30% {
    opacity: 0.5;
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-duration: 0.8s;
  animation-name: fadeInUp;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-3rem, 0, 0);
  }
  30% {
    opacity: 0.5;
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-duration: 0.8s;
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(3rem, 0, 0);
  }
  30% {
    opacity: 0.5;
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-duration: 0.8s;
  animation-name: fadeInRight;
}

#header {
  background: #fff;
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  z-index: 2;
}
#header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(100% - 4rem, 160rem);
  margin: 0 auto;
  height: 10rem;
}
@media screen and (max-width: 767px) {
  #header .inner {
    height: 6rem;
  }
}
#header .logo {
  width: 10rem;
}
@media screen and (max-width: 767px) {
  #header .logo {
    width: 6rem;
  }
}
#header .nav {
  display: flex;
  align-items: center;
  gap: 4rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #header .nav {
    flex-direction: column;
    padding: 4rem 0;
  }
}
#header .nav ul {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  #header .nav ul {
    flex-direction: column;
    align-items: center;
  }
}
#header .nav .contact a {
  background: linear-gradient(to right, #f26b2f, #ff8f34);
  color: #fff;
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 4rem;
  transition: 0.2s;
}
#header .nav .contact a:hover {
  opacity: 0.5;
}
#header .nav .contact a::before {
  content: "\f0e0";
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
  margin-right: 1rem;
}
#header .menu_btn {
  display: none;
}
@media screen and (max-width: 767px) {
  #header .menu_btn {
    display: block;
    position: relative;
    width: 2.6rem;
    height: 1rem;
  }
  #header .menu_btn::before, #header .menu_btn::after {
    content: "";
    background: #000;
    position: absolute;
    width: 100%;
    height: 2px;
    transition: 0.2s;
  }
  #header .menu_btn::before {
    inset: 0 auto auto 0;
  }
  #header .menu_btn::after {
    inset: auto auto 0 0;
  }
}
@media screen and (max-width: 767px) {
  #header .toggle_menu {
    background: #fff;
    position: fixed;
    inset: 6rem auto auto 0;
    width: 100vw;
    height: calc(100vh - 6rem);
    translate: 100% 0;
    transition: 0.2s;
  }
}
#header.show_menu .menu_btn::before, #header.show_menu .menu_btn::after {
  inset: 50% auto auto 0;
  translate: 0 -50%;
}
#header.show_menu .menu_btn::before {
  rotate: 35deg;
}
#header.show_menu .menu_btn::after {
  rotate: -35deg;
}
#header.show_menu .toggle_menu {
  translate: 0 0;
}

#footer .contact_content {
  background: url(../img/f_contact_bg.jpg) no-repeat center/cover;
  padding: 7rem 0;
}
#footer .contact_content .box {
  width: min(100% - 4rem, 120rem);
  margin: 0 auto;
  padding: 5rem 2rem;
  border: 1px solid #fff;
}
#footer .contact_content .h1 {
  color: #fff;
  margin-bottom: 3rem;
}
#footer .contact_content p {
  color: #fff;
  margin-bottom: 3rem;
  font-size: 1.4rem;
  text-align: center;
}
#footer .contact_content .contact {
  text-align: center;
}
#footer .contact_content .contact a {
  background: linear-gradient(to right, #f26b2f, #ff8f34);
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  padding: 1rem 3rem;
  border-radius: 4rem;
  transition: 0.2s;
}
#footer .contact_content .contact a:hover {
  opacity: 0.5;
}
#footer .contact_content .contact a::before {
  content: "\f0e0";
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  #footer .contact_content .contact a {
    font-size: 1.4rem;
  }
}
#footer .other_content {
  background: #faf4e1;
  padding: 5rem 2rem 3rem;
}
#footer .other_content .logo {
  width: 10rem;
  margin: 0 auto 3rem;
}
#footer .other_content .address {
  margin: 0 auto 3rem;
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
}
#footer .other_content .links {
  display: flex;
  justify-content: center;
  margin: 0 auto 3rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  #footer .other_content .links {
    display: none;
  }
}
#footer .other_content .links li + li {
  position: relative;
  margin-left: 2rem;
  padding-left: 2rem;
}
#footer .other_content .links li + li::before {
  content: "";
  background: #000;
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px;
  height: 100%;
}
#footer .other_content .bnr {
  width: min(100%, 37rem);
  margin: 0 auto 3rem;
}
#footer .other_content .copy {
  font-size: 1.2rem;
  text-align: center;
}

main {
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 6rem;
  }
}

.h1 {
  font-size: 3.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .h1 {
    font-size: 2.4rem;
  }
}
.h1 .en {
  color: #f26b2f;
  display: block;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .h1 .en {
    font-size: 1.4rem;
  }
}

.h2 {
  position: relative;
  margin: 12rem 0 4rem;
  padding-left: 4.5rem;
  font-size: 2.4rem;
}
.h2::before {
  content: "";
  background: #00a6b5;
  position: absolute;
  inset: auto auto 0 0;
  width: 2rem;
  height: 2rem;
}
.h2::after {
  content: "";
  background: #febb23;
  position: absolute;
  inset: auto auto 1rem 1rem;
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 767px) {
  .h2 {
    margin: 8rem 0 2rem;
    font-size: 2rem;
  }
  .h2::before {
    width: 1.5rem;
    height: 1.5rem;
  }
  .h2::after {
    inset: auto auto 0.8rem 0.8rem;
    width: 2.2rem;
    height: 2.2rem;
  }
}

.contact_box {
  margin-top: 3rem;
  padding: 4rem 2rem;
  border: 1px solid #f26b2f;
}
@media screen and (max-width: 767px) {
  .contact_box {
    padding: 2rem;
  }
}
.contact_box .ttl {
  color: #f26b2f;
  margin-bottom: 2rem;
  font-size: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact_box .ttl {
    font-size: 2rem;
  }
}
.contact_box .tel_fax {
  display: flex;
  justify-content: center;
  gap: 0 1em;
  margin-bottom: 1rem;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .contact_box .tel_fax {
    flex-direction: column;
    align-items: center;
    font-size: 2rem;
  }
}
.contact_box .business_hours {
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact_box .business_hours {
    font-size: 1.4rem;
  }
}

.table table {
  font-size: 1.6rem;
  line-height: 2;
  border-bottom: 1px solid #d4ccb1;
}
@media screen and (max-width: 767px) {
  .table table {
    font-size: 1.4rem;
  }
}
.table th, .table td {
  padding: 2rem 3rem;
  border-top: 1px solid #d4ccb1;
}
@media screen and (max-width: 767px) {
  .table th, .table td {
    display: block;
    padding: 1rem 2rem;
  }
}
.table th {
  background: #faf4e1;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .table th {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .table td {
    border-top: none;
  }
}

.top_sec .inner {
  width: min(100% - 4rem, 120rem);
  margin: 0 auto;
}
.top_sec .h1 {
  margin-bottom: 4rem;
}

.fixed_bnr {
  position: fixed;
  inset: auto 2rem 2rem auto;
  width: 20rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .fixed_bnr {
    display: none;
  }
}
.fixed_bnr .close {
  background: #fff;
  position: absolute;
  inset: -1rem -1rem auto auto;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  box-shadow: 0 0 3px #ccc;
  cursor: pointer;
}
.fixed_bnr .close::before, .fixed_bnr .close::after {
  content: "";
  background: #baa377;
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 50%;
  height: 1px;
}
.fixed_bnr .close::before {
  rotate: 45deg;
}
.fixed_bnr .close::after {
  rotate: -45deg;
}

.top_mv {
  position: relative;
  margin-bottom: 15rem;
  overflow: hidden;
}
.top_mv::before {
  content: "";
  background: url(../img/top_mv02.png) no-repeat center/cover;
  position: absolute;
  inset: 50% auto auto calc(50% - 95rem);
  translate: 0 -50%;
  width: 28rem;
  height: 43rem;
}
.top_mv::after {
  content: "";
  background: url(../img/top_mv03.png) no-repeat center/cover;
  position: absolute;
  inset: 0 auto auto calc(50% + 67rem);
  width: 22rem;
  height: 22rem;
}
.top_mv .row {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top_mv .row {
    flex-direction: column-reverse;
  }
}
.top_mv .txt_content {
  flex: 1;
}
.top_mv .txt_content .catch {
  margin-bottom: 4rem;
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  .top_mv .txt_content .catch {
    margin-bottom: 2rem;
    font-size: 3.2rem;
  }
}
.top_mv .txt_content .txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top_mv .txt_content .txt {
    font-size: 1.4rem;
  }
}
.top_mv .illust {
  flex: 1.4;
}

.top_greeting {
  margin-bottom: 15rem;
}
.top_greeting .h1 {
  margin-bottom: 1rem;
}
.top_greeting .cap {
  margin-bottom: 6rem;
  font-size: 1.4rem;
  text-align: center;
}
.top_greeting .row {
  display: flex;
  gap: 4rem 6rem;
}
@media screen and (max-width: 767px) {
  .top_greeting .row {
    flex-direction: column;
  }
}
.top_greeting .row .img {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .top_greeting .row .img {
    width: 75%;
    margin: 0 auto;
  }
}
.top_greeting .row .txt_content {
  flex: 1.4;
}
.top_greeting .row .txt_content .ttl {
  color: #f26b2f;
  margin-bottom: 3rem;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .top_greeting .row .txt_content .ttl {
    font-size: 1.8rem;
  }
}
.top_greeting .row .txt_content .txt {
  margin-bottom: 3rem;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top_greeting .row .txt_content .txt {
    font-size: 1.4rem;
  }
}
.top_greeting .row .txt_content .btns li + li {
  margin-top: 2rem;
}
.top_greeting .row .txt_content .btns a {
  background: linear-gradient(to right, #f26b2f, #ff8f34);
  color: #fff;
  position: relative;
  display: block;
  width: min(100%, 35rem);
  margin: 0 auto;
  padding: 2rem 0;
  font-size: 1.6rem;
  text-align: center;
  border-radius: 4rem;
  transition: 0.2s;
}
.top_greeting .row .txt_content .btns a:hover {
  opacity: 0.5;
}
.top_greeting .row .txt_content .btns a::after {
  content: "\f054";
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
  position: absolute;
  inset: 50% 3rem auto auto;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .top_greeting .row .txt_content .btns a {
    padding: 1rem 0;
    font-size: 1.4rem;
  }
}

.top_reason {
  position: relative;
  padding: 12rem 0 24rem;
  margin-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .top_reason {
    padding: 8rem 0 16rem;
  }
}
.top_reason::before {
  content: "";
  background: #faf4e1;
  position: absolute;
  inset: 0 auto auto 0;
  width: min(100% - 6rem, 175rem);
  height: calc(100% - 12rem);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top_reason::before {
    width: calc(100% - 2rem);
    height: calc(100% - 8rem);
  }
}
.top_reason::after {
  content: "";
  background: linear-gradient(to right, #f26b2f, #ff8f34);
  position: absolute;
  inset: auto 0 0 auto;
  width: min(100% - 6rem, 150rem);
  height: calc(100% - 20rem);
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .top_reason .inner {
    width: min(100% - 6rem, 120rem);
    margin: 0 auto auto 2rem;
  }
}
.top_reason .reason {
  display: flex;
  justify-content: space-between;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .top_reason .reason {
    flex-direction: column;
    gap: 4rem;
  }
}
.top_reason .reason li {
  width: 32rem;
}
@media screen and (max-width: 767px) {
  .top_reason .reason li {
    width: 100%;
  }
}
.top_reason .reason .img {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .top_reason .reason .img {
    width: 20rem;
    margin: 0 auto;
  }
}
.top_reason .reason .ttl {
  color: #f26b2f;
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_reason .reason .ttl {
    font-size: 1.8rem;
  }
}
.top_reason .reason .txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top_reason .reason .txt {
    font-size: 1.4rem;
  }
}

.top_voice {
  margin-bottom: 15rem;
}
.top_voice .row {
  display: flex;
  gap: 2rem 3.5rem;
  width: min(100% - 4rem, 160rem);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top_voice .row {
    flex-direction: column;
  }
}
.top_voice .row .box {
  flex: 1;
  padding: 2rem;
  border: 1px solid #f26b2f;
}
.top_voice .row .img {
  margin-bottom: 2rem;
}
.top_voice .row .name {
  color: #f26b2f;
  margin-bottom: 1rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .top_voice .row .name {
    font-size: 1.8rem;
  }
}
.top_voice .row .txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top_voice .row .txt {
    font-size: 1.4rem;
  }
}

.top_movie {
  margin-bottom: 12rem;
}
.top_movie .row {
  display: flex;
  gap: 4rem 7rem;
}
@media screen and (max-width: 767px) {
  .top_movie .row {
    flex-direction: column;
  }
}
.top_movie .row .item {
  flex: 1;
}
.top_movie .row .movie {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  margin-bottom: 2rem;
}
.top_movie .row .movie iframe {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  border: none;
}
.top_movie .row .txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top_movie .row .txt {
    font-size: 1.4rem;
  }
}

.top_seminar {
  margin-bottom: 15rem;
}
.top_seminar .bnr {
  margin-bottom: 3rem;
}
.top_seminar .txt {
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}
.top_seminar .txt span {
  color: #f26b2f;
}
@media screen and (max-width: 767px) {
  .top_seminar .txt {
    font-size: 1.4rem;
  }
}

.low .h1 {
  background-color: #faf4e1;
  background-image: radial-gradient(#f4dc71 1px, transparent 1px), radial-gradient(#f4dc71 1px, transparent 1px);
  background-size: 10px 10px;
  background-position: 0 0, 5px 5px;
  padding: 8rem 2rem;
}
@media screen and (max-width: 767px) {
  .low .h1 {
    padding: 6rem 2rem;
  }
}
.low .low_inner {
  width: min(100% - 4rem, 120rem);
  margin: 2rem auto 15rem;
}
@media screen and (max-width: 767px) {
  .low .low_inner {
    margin: 1rem auto 12rem;
  }
}
.low .breadcrumbs {
  margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .low .breadcrumbs {
    margin-bottom: 8rem;
  }
}
.low .breadcrumbs ul {
  display: flex;
  justify-content: flex-end;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .low .breadcrumbs ul {
    font-size: 1.2rem;
  }
}
.low .breadcrumbs ul li + li::before {
  content: "\f054";
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
  margin: 0 1rem;
}
.low .breadcrumbs ul a {
  text-decoration: underline;
}

.sec_company .address {
  margin-bottom: 3rem;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec_company .address {
    font-size: 1.4rem;
  }
}
.sec_company .map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.sec_company .map iframe {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  border: none;
}

.sec_message .row {
  display: flex;
  gap: 6rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .sec_message .row {
    flex-direction: column;
    margin-bottom: 8rem;
  }
}
.sec_message .row .prof {
  flex: 1;
}
.sec_message .row .prof .photo {
  margin-bottom: 2rem;
}
.sec_message .row .prof .name {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .sec_message .row .prof .name {
    font-size: 1.4rem;
  }
}
.sec_message .row .prof .name span {
  display: block;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .sec_message .row .prof .name span {
    font-size: 1.2rem;
  }
}
.sec_message .row .message {
  flex: 1.5;
}
.sec_message .row .message .ttl {
  color: #f26b2f;
  margin-bottom: 2rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .sec_message .row .message .ttl {
    font-size: 1.8rem;
    text-align: center;
  }
}
.sec_message .row .message .txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec_message .row .message .txt {
    font-size: 1.4rem;
  }
}
.sec_message .bnr {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.sec_service .steps {
  margin-bottom: 8rem;
}
.sec_service .steps li {
  display: flex;
  gap: 4rem 6rem;
}
.sec_service .steps li + li {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .sec_service .steps li {
    flex-direction: column;
  }
}
.sec_service .steps .img {
  position: relative;
  width: 40rem;
  padding: 0 3rem 3rem 0;
}
@media screen and (max-width: 767px) {
  .sec_service .steps .img {
    width: 100%;
  }
}
.sec_service .steps .img::before {
  content: "";
  background: #faf4e1;
  position: absolute;
  inset: auto 0 0 auto;
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
  z-index: -1;
}
.sec_service .steps .txt_content {
  flex: 1;
}
.sec_service .steps .txt_content .ttl {
  color: #f26b2f;
  margin-bottom: 2rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .sec_service .steps .txt_content .ttl {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.8rem;
  }
}
.sec_service .steps .txt_content .ttl span {
  background: #f26b2f;
  color: #fff;
  display: inline-block;
  margin-right: 2rem;
  padding: 0 3rem;
}
.sec_service .steps .txt_content .txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec_service .steps .txt_content .txt {
    font-size: 1.4rem;
  }
}
.sec_service .box {
  padding: 4rem;
  border: 1px solid #f26b2f;
}
.sec_service .box + .box {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .sec_service .box {
    padding: 2rem;
  }
  .sec_service .box + .box {
    margin-top: 2rem;
  }
}
.sec_service .box .ttl {
  color: #f26b2f;
  margin-bottom: 2rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .sec_service .box .ttl {
    font-size: 1.8rem;
  }
}
.sec_service .box .txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec_service .box .txt {
    font-size: 1.4rem;
  }
}

.sec_security .txt {
  margin-bottom: 8rem;
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec_security .txt {
    margin-bottom: 6rem;
    font-size: 1.4rem;
    text-align: left;
  }
}
.sec_security .mark {
  width: min(100%, 45rem);
  margin: 0 auto;
}

.sec_contact .txt {
  margin-bottom: 3rem;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec_contact .txt {
    font-size: 1.4rem;
  }
}
.sec_contact .form .table {
  margin-bottom: 3rem;
}
.sec_contact .form .table th {
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .sec_contact .form .table th {
    width: 100%;
  }
}
.sec_contact .form .table th span {
  background: #e83826;
  color: #fff;
  display: inline-block;
  margin-left: 1rem;
  padding: 0 1rem;
  font-size: 1.4rem;
  line-height: 1.6;
  border-radius: 4rem;
}
.sec_contact .form .table td label {
  display: flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-wrap: wrap;
}
.sec_contact .form .table td label input[type=radio] {
  margin-right: 1rem;
}
.sec_contact .form .table td input[type=text], .sec_contact .form .table td input[type=tel],.sec_contact .form .table td input[type=email], .sec_contact .form .table td textarea, .sec_contact .form .table td input[type="number"] {
  display: block;
  padding: 1rem;
  border: 1px solid #d4ccb1;
  outline: none;
  max-width: 100%;
  width: 100%;
}
.sec_contact .form .table td input[type=number] {
  width: 6em;
  max-width: 100%;
}
.sec_contact .form .table td input[type=text] {
  width: min(100%, 30rem);
}
.sec_contact .form .table td textarea {
  width: min(100%, 60rem);
  resize: none;
  max-width: 100%;
}
.sec_contact .form .table td select {
  display: block;
  padding: 1rem;
  border: 1px solid #d4ccb1;
  outline: none;
}
.sec_contact .form .table caption {
  text-align: left;
}
.sec_contact .form .col-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .sec_contact .form .col-list {
    flex-direction: column;
  }
}
.sec_contact .form .row-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.sec_contact .form .privacy {
  margin-bottom: 3rem;
  border-top: 1px solid #d4ccb1;
  border-bottom: 1px solid #d4ccb1;
}
.sec_contact .form .privacy .privacy_ttl {
  background: #faf4e1;
  padding: 2rem;
  font-size: 1.6rem;
  text-align: center;
  border-bottom: 1px solid #d4ccb1;
}
@media screen and (max-width: 767px) {
  .sec_contact .form .privacy .privacy_ttl {
    font-size: 1.4rem;
  }
}
.sec_contact .form .privacy .privacy_txt {
  height: 26rem;
  padding: 2rem;
  font-size: 1.6rem;
  line-height: 2;
  overflow: scroll;
}
@media screen and (max-width: 767px) {
  .sec_contact .form .privacy .privacy_txt {
    font-size: 1.4rem;
  }
}
.sec_contact .form .privacy .privacy_txt :is(p, ul) + :is(p, ul) {
  margin-top: 2rem;
}
.sec_contact .form .privacy .privacy_txt span {
  color: #f26b2f;
  display: block;
}
.sec_contact .form .check {
  margin-bottom: 3rem;
}
.sec_contact .form .check label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .sec_contact .form .check label {
    font-size: 1.4rem;
  }
}
.sec_contact .form .check label input {
  margin-right: 1rem;
}
.sec_contact .form .submit {
  text-align: center;
}
.sec_contact .form .submit button[type=submit] {
  background: linear-gradient(to right, #f26b2f, #ff8f34);
  color: #fff;
  display: inline-block;
  width: min(100%, 30rem);
  padding: 2rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 4rem;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
.sec_contact .form .submit button[type=submit]:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .sec_contact .form .submit button[type=submit] {
    font-size: 1.4rem;
  }
}

.sec_contact_thanks .txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec_contact_thanks .txt {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=style.css.map */



.contact a{
      background: #167ac6 !important;
      color: #fff;
      display: inline-block;
      padding: 2rem 4rem !important;
      border-radius: 1rem !important;
      transition: $hover-opacity-time;
            }
      
.h1 .en {
    color: #167ac6;
    display: block;
    font-size: 2rem;
}

.h1 .en {
    color: #167ac6;
    display: block;
    font-size: 2rem
}

.top_reason::after {
    content: "";
    background: #167ac6 !important;
    position: absolute;
    inset: auto 0 0 auto;
    width: min(100% - 6rem, 150rem);
    height: calc(100% - 20rem);
    z-index: -2;
}


#footer .other_content {
    background: rgb(221 240 255 / 80%) !important;
    padding: 5rem 2rem 3rem;
}

.top_reason .reason li {
    width: 24rem
}

.top_reason .reason .ttl {
    color: #167ac6;
    margin-bottom: 1rem;
    font-size: 2rem;
    line-height: 2;
    text-align: center;
}

.top_reason::before {
    content: "";
    background: rgb(251 253 255 / 80%);
    position: absolute;
    inset: 0 auto auto 0;
    width: min(100% - 6rem, 175rem);
    height: calc(100% - 12rem);
    z-index: -1;
}

.top_reason .reason .ttl {
    color: #167ac6;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: center;
}

.top_seminar .txt span {
    color: #167ac6;
    font-size: 21px;
}

#footer .contact_content .box {
    width: min(100% - 4rem, 120rem);
    margin: 0 auto;
    padding: 5rem 2rem;
    border: 1px solid #fff;
    background: #ffffff24;
}

#footer .other_content .logo {
    width: 30rem;
    margin: 0 auto 3rem;
}

#header .logo {
    width: 30rem;
}

.h2::after {
    content: "";
    background: #167ac6;
    position: absolute;
    inset: auto auto 1rem 1rem;
    width: 2.5rem;
    height: 2.5rem;
}

.h2::before {
    content: "";
    background: #00a6b5;
    position: absolute;
    inset: auto auto 0 0;
    width: 2.5rem;
    height: 2.5rem;
}

.low .h1 {
    background-color: #00a6b5;
    background-image:none;
    color:#fff;
    background-size: 10px 10px;
    background-position: 0 0, 5px 5px;
    padding: 8rem 2rem;
}


.table th {
    background: #bad8ef;
    text-align: left;
}








.top_reason02 {
    position: relative;
    padding: 12rem 0 24rem;
    margin-bottom: 15rem;
}


.top_reason02::before {
    content: "";
    background: rgb(251 253 255 / 80%);
    position: absolute;
    inset: 0 auto auto 0;
    width: min(100% - 6rem, 175rem);
    height: calc(100% - 12rem);
    z-index: -1;
}


.top_reason .reason02 {
    display: flex
;
    justify-content: space-between;
    margin-top: 6rem;
}

.top_reason02 .reason li {
    width: 32rem;
}

.top_reason02 .reason .img {
    margin-bottom: 2rem;
}


.top_reason02 .reason .ttl {
    color: #167ac6;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: center;
}


.top_reason02::after {
    content: "";
    /*background: #167ac6 !important;*/
    position: absolute;
    inset: auto 0 0 auto;
    width: min(100% - 6rem, 150rem);
    height: calc(100% - 20rem);
    z-index: -2;
}

.sec_service .steps .img::before{
    content: "";
    background: rgb(221 240 255 / 80%);
    position: absolute;
    inset: auto 0 0 auto;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    z-index: -1;
}



.sec_service .steps .txt_content .ttl span {
    background: #167ac6;
    color: #fff;
    display: inline-block;
    margin-right: 2rem;
    padding: 0 3rem;
}


.sec_service .steps .txt_content .ttl 

.contact_box .ttl {
    color: #167ac6;
    margin-bottom: 2rem;
    font-size: 3rem;
    text-align: center;
}

.contact_box {
    margin-top: 3rem;
    padding: 4rem 2rem;
    border: 3px solid #167ac6;
}

.sec_contact .form .privacy .privacy_txt {
    height: 50rem;
    padding: 2rem;
    font-size: 1.6rem;
    line-height: 2;
    overflow: scroll;
}

.sec_contact .form .submit {
    margin: 20px auto;
}

.sec_contact .form .submit button, .sec_contact .form .submit input {
    background: linear-gradient(to right, #167ac6, #167ac6);
    color: #fff;
    display: inline-block;
    width: min(100%, 30rem);
    padding: 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 4rem;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.sec_contact .form .privacy .privacy_ttl {
    background: #bad8ef;
    padding: 2rem;
    font-size: 1.6rem;
    text-align: center;
    border-bottom: 1px solid #d4ccb1;
}

.contact_box .ttl {
    color: #167ac6;
    margin-bottom: 2rem;
    font-size: 3rem;
    text-align: center;
}

.low .h1 {
    background-color: #00a6b58a;
    background-image: none;
    color: #fff;
    background-size: 10px 10px;
    background-position: 0 0, 5px 5px;
    padding: 8rem 2rem;
}

.fixed_bnr {
    position: fixed;
    inset: auto 2rem 2rem auto;
    width: 20rem;
    z-index: 1;
    displayd: none;
    display: none;
}

@media screen and (max-width: 767px) {
    #header .logo {
        width: 6rem;
        width: 20rem !important;
    }
}

@media screen and (max-width: 767px) {
    .top_reason .reason .ttl {
        font-size: 1.4rem
21.3173px
 !important;
    }
}

.sec_contact .contact_box .btn a {
  display: block;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  margin-top: 45px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  background: #167ac6;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 1em;
  letter-spacing: 0.08em;
  transition: .2s;
}
.sec_contact .contact_box .btn a:hover {
  opacity: .2;
}


.top_topics .article-list {
    border-top: 1px solid #d4ccb1;
    border-bottom: 1px solid #d4ccb1;
    height: 270px;
    margin: 60px 0;
    padding-right: 50px;
    overflow-y: scroll;
}

.top_topics .article-list .article {
    border-bottom: 1px solid #d4ccb1;
    padding: 30px 20px;
    position: relative;
}

.top_topics .article-list .article .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 3em;
    margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  .top_topics .article-list .article .head {
    flex-direction: column;
  }
}

.top_topics .article-list .article .body {
    font-size: 16px;
}

@media screen and (max-width: 767px) {
  .top_topics .article-list .article .body {
    font-size: 1.6em;
  }
}

.top_topics .article-list .article::before {
    content: "";
    background-color: #101010;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    width: 6px;
    height: 6px;
    position: absolute;
    top: 40px;
    left: 6px;
}

.top_topics .article-list .article .time {
    font-size: 1.6em;
}

.top_topics .article-list .article .ttl {
    font-size: 1.6em;
}

.top_topics .article-list .article a {
    text-decoration: underline;
    color: #167ac6;
}

.top_topics .btn {
    text-align: center;
}

.top_topics .btn a {
    background: -webkit-gradient(linear, left top, right top, from(#f26b2f), to(#167ac6));
    background: linear-gradient(to right, #167ac6, #167ac6);
    color: #fff;
    display: inline-block;
    font-size: 1.4rem;
    padding: 1rem 3rem;
    border-radius: 4rem;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.video iframe {
  max-width: 100%;
}