/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
  list-style: none;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  transition: 0.5s;
}
a:hover {
  opacity: 0.7;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

button,
input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}

input {
  box-sizing: border-box;
}
input[type=text] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
}
input[type=radio] {
  display: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  box-sizing: border-box;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
select::-ms-expand {
  display: none;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

html {
  font-size: 0.6666666667vw;
}

@media screen and (max-width: 750px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 1500px) {
  html {
    font-size: 10px;
  }
}
html {
  overflow-x: hidden;
  overflow-y: auto;
  font-variant-ligatures: none;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  font-family: YakuHanJP, "Noto Sans Japanese", sans-serif;
  font-variant-ligatures: none;
  color: #333;
  padding-top: 10rem;
}
@media screen and (max-width: 750px) {
  body {
    padding-top: 12rem;
  }
}

p {
  letter-spacing: 1px;
}

.ast {
  font-size: 1.5rem;
  vertical-align: super;
}
@media screen and (max-width: 750px) {
  .ast {
    font-size: 3rem;
  }
}

@media screen and (min-width: 751px) {
  .pcn {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .spn {
    display: none !important;
  }
}
.btn {
  border-radius: 4rem;
  z-index: 999;
  background-image: linear-gradient(25deg, #123086, #396ed8);
  transition: 0.2s background-image;
  position: relative;
}
.btn:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #fff;
  opacity: 0;
  transition: 0.5s;
  border-radius: 4rem;
}
.btn:hover::after {
  opacity: 1;
}
.btn:hover {
  background: #fff;
  border: 2px solid #123086;
}
.btn .mail {
  margin-top: 0.1rem;
  width: 1.6rem;
  height: 1.2rem;
}
.btn .txt {
  color: #fff;
  margin-left: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.btn a:hover {
  opacity: 1;
}
.btn .center {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.loadanime {
  opacity: 0;
}

.scrollanime {
  opacity: 0;
}

.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.updown {
  transform: translateY(-100px);
}

.downup {
  transform: translateY(100px);
}

.slide-right {
  transform: translateX(200px);
}

.slide-left {
  transform: translateX(-200px);
}

header {
  top: 0;
  z-index: 9999;
  position: fixed;
  width: 100%;
  height: 10rem;
  background: #fff;
}
@media screen and (max-width: 750px) {
  header {
    height: 12rem;
  }
}
header .header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1300px;
  height: 10rem;
  margin: auto;
}
@media screen and (max-width: 750px) {
  header .header-wrapper {
    top: 2rem;
    left: 3rem;
  }
}
header h1 {
  padding: 1.5rem 0 0 0;
  width: 18.4rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 750px) {
  header h1 {
    width: 25.2rem;
    padding: 0;
    z-index: 0;
  }
}
header h1 .logo {
  width: 18.4rem;
}
@media screen and (max-width: 750px) {
  header h1 .logo {
    width: 25.2rem;
  }
}
header .contact {
  position: absolute;
  top: 3rem;
  right: 0;
  width: 18rem;
  height: 4.4rem;
}
@media screen and (max-width: 750px) {
  header .contact01 {
    width: 24rem;
    position: absolute;
    top: 0.7rem;
    right: 14rem;
  }
}

.youtube {
  position: relative;
  width: 96rem;
  height: 54rem;
  padding-top: 56.25%;
  z-index: 3;
}
@media screen and (max-width: 750px) {
  .youtube {
    width: 100%;
    height: 100%;
  }
}
.youtube iframe,
.youtube video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  left: 0;
}
.modal-bg {
  background-color: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 96rem;
}
.modal-content .modal-close {
  display: block;
  position: relative;
  width: 3.2rem;
  box-sizing: border-box;
  cursor: pointer;
  margin: 0 0 1rem auto;
}
.modal-content_inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.modal-content_inner_movie {
  max-width: 100%;
}

@media screen and (max-width: 750px) {
  .modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
  }
  .modal-bg {
    background-color: rgba(0, 0, 0, 0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
  }
  .modal-content {
    top: 30%;
    transform: translate(-50%, -30%);
    width: 63rem;
  }
  .modal-content .modal-close {
    width: 6.2rem;
    margin: 0 0 1.8rem auto;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .modal-content .modal-close {
    width: 4.9rem;
  }
}
#hamburger .btn-gNav {
  position: fixed;
  top: 3rem;
  right: 3rem;
  width: 6rem;
  height: 24px;
  z-index: 3;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 400ms;
}
#hamburger .btn-gNav img.width {
  width: 4.9rem;
}

#gNav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  font-size: 16px;
  box-sizing: border-box;
  z-index: 2;
  transition: 0.3s;
}
#gNav.open {
  right: 0px;
  background: #fff;
}
#gNav .gNav-menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #gNav .gNav-menu {
    margin-top: -20rem;
    justify-content: center;
  }
}
#gNav .gNav-menu li {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  padding-right: 3.4rem;
}
@media screen and (max-width: 750px) {
  #gNav .gNav-menu li {
    font-size: 3.2rem;
    padding: 6rem 0 0 0;
  }
}
#gNav .gNav-menu li:nth-child(6) {
  padding-right: 0;
}
#gNav .gNav-menu li a {
  color: #333333;
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  #gNav .gNav-menu li a {
    color: #123086;
  }
}
@media screen and (max-width: 750px) {
  #gNav .gNav-menu .contact02 {
    width: 59rem;
    position: absolute;
    top: 56%;
    right: 8rem;
    left: 8rem;
  }
}

@media screen and (min-width: 751px) {
  .btn-gNav {
    display: none;
  }
  #gNav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 10rem;
  }
  #gNav .gNav-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    max-width: 900px;
    width: 90rem;
    height: 10rem;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    padding-right: 3.6rem;
  }
  #gNav .gNav-menu li {
    padding-top: 5px;
  }
  #gNav .gNav-menu li a:hover {
    opacity: 0.6;
  }
}
#main-visual {
  height: 210rem;
  position: relative;
  padding-top: 12rem;
  background: url(../img/bg_kv.jpg) no-repeat 50% 0;
  background-size: 100% auto;
}
@media screen and (max-width: 750px) {
  #main-visual {
    height: 203.6rem;
    padding-top: 13rem;
    background: url(../img/bg_kv_sp.jpg) no-repeat 50% 0;
    background-size: 100% auto;
  }
}
#main-visual .main-visual_inr {
  width: 118rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #main-visual .main-visual_inr {
    width: 100%;
    padding-left: 6rem;
  }
}
#main-visual .txt {
  font-weight: 900;
}
#main-visual .txt_lead {
  width: 76.2rem;
  margin-left: -4rem;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.7em;
}
@media screen and (max-width: 750px) {
  #main-visual .txt_lead {
    width: 100%;
    margin-left: 0;
    font-size: 3.6rem;
    line-height: 1.695em;
    text-align: left;
    text-shadow: 0px 0px 1.5rem rgba(255, 255, 255, 0.8);
  }
}
#main-visual .txt_lead .small {
  display: block;
  text-align: right;
  margin-top: -1.5rem;
  font-weight: 400;
  font-size: 1.3rem;
}
@media screen and (max-width: 750px) {
  #main-visual .txt_lead .small {
    text-align: left;
    margin-top: 1rem;
    padding-left: 1em;
    text-indent: -1em;
    font-size: 2.6rem;
    line-height: 1.6923076923em;
  }
}
#main-visual .txt_ttl {
  margin-top: 3rem;
  padding-left: 4rem;
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  #main-visual .txt_ttl {
    margin-top: 8rem;
    padding-left: 6rem;
    font-size: 5.6rem;
    text-shadow: 0px 0px 3.2rem rgb(255, 255, 255);
  }
}
#main-visual .txt_ttl .model {
  position: relative;
  top: -0.15em;
  display: inline-block;
  color: #fff;
  margin-right: 1rem;
  padding: 0.5rem 1.5rem;
  font-size: 3.2rem;
  border-radius: 0.1rem;
}
@media screen and (max-width: 750px) {
  #main-visual .txt_ttl .model {
    padding: 0.5rem 1.6rem;
    font-size: 3.9rem;
    border-radius: 0.14rem;
    text-shadow: none;
    box-shadow: 0px 0px 1.8rem 0.1rem rgba(255, 255, 255, 0.6);
  }
}
#main-visual .txt_ttl .model.middle {
  background: linear-gradient(to bottom, rgb(18, 48, 134) 0%, rgb(51, 110, 197) 100%);
}
#main-visual .txt_ttl .model.small {
  margin-right: 1.8rem;
  background: linear-gradient(to bottom, rgb(0, 159, 166) 0%, rgb(92, 185, 169) 100%);
}
#main-visual .txt_ttl .large {
  position: relative;
  display: inline-block;
  left: -0.3em;
  margin-top: 3.5rem;
  font-size: 13rem;
  color: #123086;
}
@media screen and (max-width: 750px) {
  #main-visual .txt_ttl .large {
    display: inline-block;
    margin-top: 3rem;
    left: -0.6em;
    font-size: 15.4rem;
    letter-spacing: 0.11em;
  }
}
#main-visual .txt .contact {
  width: 40rem;
  height: 7rem;
  margin-top: 5.6rem;
  margin-left: 9rem;
  z-index: 0;
}
#main-visual .txt .contact .mail {
  width: 2rem;
  height: 1.5rem;
}
#main-visual .txt .contact .txt {
  position: static;
  font-size: 1.8rem;
  color: #fff;
}
#main-visual .txt .center {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #main-visual .txt .contact02 {
    width: 59rem;
    position: static;
    margin: 11.7rem auto 0;
  }
}

.sec_ttl {
  font-size: 4.6rem;
  font-weight: 900;
  text-align: center;
  color: #123086;
}
@media screen and (max-width: 750px) {
  .sec_ttl {
    font-size: 6.4rem;
    line-height: 1.704em;
  }
}

#about {
  position: relative;
  width: 118rem;
  margin: -133rem auto 0;
  padding: 8rem 0;
  background-color: #fff;
  box-shadow: 0px 0px 20px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}
@media screen and (max-width: 750px) {
  #about {
    width: 67rem;
    margin-top: -83.6rem;
    padding: 8rem 4rem;
    box-shadow: 0px 0px 4rem 0.8rem rgba(0, 0, 0, 0.1);
  }
}
#about .about_lead {
  margin-top: 5.8rem;
  font-size: 2.8rem;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  #about .about_lead {
    margin-top: 6.6rem;
    font-size: 4.4rem;
    line-height: 1.705em;
  }
}
#about .about_txt {
  margin-top: 5rem;
  font-size: 1.6rem;
  line-height: 2.125em;
}
@media screen and (max-width: 750px) {
  #about .about_txt {
    margin-top: 5rem;
    font-size: 3.6rem;
    line-height: 2em;
  }
}
#about .about_box {
  width: 90rem;
  margin: 5.5rem auto 0;
  padding: 2.6rem 0;
  font-size: 1.6rem;
  line-height: 2.125em;
  color: #123086;
  border: solid 2px #123086;
}
@media screen and (max-width: 750px) {
  #about .about_box {
    width: 59rem;
    margin-top: 6.8rem;
    padding: 6.5rem 0;
    font-size: 3.2rem;
    line-height: 2em;
  }
}
#about .about_sum {
  margin-top: 5rem;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  #about .about_sum {
    margin-top: 9rem;
    font-size: 4.4rem;
    line-height: 1.705em;
  }
}
#about .about_sdgs {
  width: 19rem;
  margin: 4rem auto 0;
}
@media screen and (max-width: 750px) {
  #about .about_sdgs {
    width: 27.4rem;
    margin-top: 4rem;
  }
}
#about .page_nav_wrap {
  display: flex;
  justify-content: center;
  gap: 7rem;
}
@media screen and (max-width: 750px) {
  #about .page_nav_wrap {
    flex-direction: column;
    gap: 6rem;
  }
}
#about .page_nav {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 41.5rem;
  height: 9rem;
  font-size: 3.8rem;
  font-weight: 700;
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  #about .page_nav {
    justify-content: flex-start;
    width: 100%;
    height: 9rem;
    padding-left: 8rem;
    font-size: 3.8rem;
  }
}
#about .page_nav::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(0, -50%);
  width: 3.6rem;
  height: 3.6rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}
#about .page_nav.mid {
  background: linear-gradient(to bottom, rgb(25, 62, 148) 0%, rgb(51, 110, 197) 80%);
}
#about .page_nav.mid::after {
  background-image: url(../img/icon_pagenav_bl.png);
}
#about .page_nav.small {
  background: linear-gradient(to bottom, rgb(12, 162, 166) 0%, rgb(92, 185, 169) 80%);
}
#about .page_nav.small::after {
  background-image: url(../img/icon_pagenav_gr.png);
}

#feature {
  padding-top: 16rem;
  padding-bottom: 13rem;
}
@media screen and (max-width: 750px) {
  #feature {
    padding-top: 11.2rem;
    padding-bottom: 12rem;
  }
}
#feature .feature_inr {
  width: 110rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #feature .feature_inr {
    width: 67rem;
  }
}
#feature .feature_list {
  margin-top: 8rem;
}
@media screen and (max-width: 750px) {
  #feature .feature_list {
    margin-top: 5.3rem;
  }
}
#feature .feature_list > li {
  position: relative;
  padding-bottom: 3rem;
  background-color: rgba(242, 242, 242, 0.5);
}
@media screen and (max-width: 750px) {
  #feature .feature_list > li {
    padding-top: 36rem;
    padding-bottom: 5.4rem;
  }
}
#feature .feature_list > li::before {
  content: "";
  width: 100%;
  height: 1.8rem;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  #feature .feature_list > li::before {
    content: none;
  }
}
#feature .feature_list > li::after {
  content: "";
  position: absolute;
  width: 20.2rem;
  height: 20.2rem;
}
@media screen and (max-width: 750px) {
  #feature .feature_list > li::after {
    width: 20.2rem;
    height: 20.2rem;
  }
}
#feature .feature_list > li:not(:last-child) {
  margin-bottom: 7rem;
}
@media screen and (max-width: 750px) {
  #feature .feature_list > li:not(:last-child) {
    margin-bottom: 9rem;
  }
}
#feature .feature_list > li:nth-of-type(even) {
  margin-left: 5rem;
  border-bottom-right-radius: 3rem;
}
@media screen and (max-width: 750px) {
  #feature .feature_list > li:nth-of-type(even) {
    margin-left: 0;
    border-bottom-right-radius: 5rem;
  }
}
#feature .feature_list > li:nth-of-type(even)::after {
  top: 0;
  left: 0;
}
@media screen and (max-width: 750px) {
  #feature .feature_list > li:nth-of-type(even)::after {
    top: 8.2rem;
    right: 0;
    margin: auto;
  }
}
#feature .feature_list > li:nth-of-type(even) .feature_list_head {
  padding-left: 27rem;
}
@media screen and (max-width: 750px) {
  #feature .feature_list > li:nth-of-type(even) .feature_list_head {
    padding-left: 0;
  }
}
#feature .feature_list > li:nth-of-type(even) .feature_list_head::before {
  left: 4rem;
}
@media screen and (max-width: 750px) {
  #feature .feature_list > li:nth-of-type(even) .feature_list_head::before {
    left: 0;
  }
}
#feature .feature_list > li:nth-of-type(even) .feature_list_txt {
  padding-left: 27rem;
  padding-right: 5rem;
}
@media screen and (max-width: 750px) {
  #feature .feature_list > li:nth-of-type(even) .feature_list_txt {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
#feature .feature_list > li:nth-of-type(even) .feature_list_txt.short {
  padding-right: 48rem;
}
@media screen and (max-width: 750px) {
  #feature .feature_list > li:nth-of-type(even) .feature_list_txt.short {
    padding-right: 4rem;
  }
}
#feature .feature_list > li:nth-of-type(odd) {
  margin-right: 5rem;
  border-bottom-left-radius: 3rem;
}
@media screen and (max-width: 750px) {
  #feature .feature_list > li:nth-of-type(odd) {
    margin-right: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 5rem;
  }
}
#feature .feature_list > li:nth-of-type(odd)::after {
  top: 0;
  right: 0;
}
@media screen and (max-width: 750px) {
  #feature .feature_list > li:nth-of-type(odd)::after {
    top: 8.2rem;
    left: 0;
    margin: auto;
  }
}
#feature .feature_list > li:nth-of-type(odd) .feature_list_head {
  padding-left: 5rem;
}
@media screen and (max-width: 750px) {
  #feature .feature_list > li:nth-of-type(odd) .feature_list_head {
    padding-left: 0;
  }
}
#feature .feature_list > li:nth-of-type(odd) .feature_list_head::before {
  left: 0;
}
#feature .feature_list > li:nth-of-type(odd) .feature_list_txt {
  padding-left: 5rem;
  padding-right: 22rem;
}
@media screen and (max-width: 750px) {
  #feature .feature_list > li:nth-of-type(odd) .feature_list_txt {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
#feature .feature_list > li:nth-of-type(3) .feature_list_txt {
  padding-right: 0;
}
@media screen and (max-width: 750px) {
  #feature .feature_list > li:nth-of-type(3) .feature_list_txt {
    padding-right: 4rem;
  }
}
#feature .feature_list > li:nth-child(1)::after {
  background-image: url(../img/feature_img01.png);
  background-size: 100% auto;
}
#feature .feature_list > li:nth-child(2)::after {
  background-image: url(../img/feature_img02.png);
  background-size: 100% auto;
}
#feature .feature_list > li:nth-child(3)::after {
  background-image: url(../img/feature_img03.png);
  background-size: 100% auto;
}
#feature .feature_list > li:nth-child(4)::after {
  background-image: url(../img/feature_img04.png);
  background-size: 100% auto;
}
#feature .feature_list > li:nth-child(5)::after {
  background-image: url(../img/feature_img05.png);
  background-size: 100% auto;
}
#feature .feature_list > li:nth-child(6)::after {
  background-image: url(../img/feature_img06.png);
  background-size: 100% auto;
}
#feature .feature_list_img {
  position: absolute;
  top: 9rem;
  right: 5rem;
  width: 39.6rem;
}
@media screen and (max-width: 750px) {
  #feature .feature_list_img {
    position: relative;
    top: 0;
    right: 0;
    width: 59rem;
    margin: 6rem auto 0;
  }
}
#feature .feature_list_head {
  position: relative;
  padding-bottom: 1.4rem;
  color: #50c3ea;
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  #feature .feature_list_head {
    padding-bottom: 5rem;
    font-size: 5.2rem;
    line-height: 1.924em;
    text-align: center;
  }
}
#feature .feature_list_head::before {
  content: "";
  width: calc(100% - 4rem);
  height: 0.4rem;
  background-color: #50c3ea;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 750px) {
  #feature .feature_list_head::before {
    width: 100%;
    height: 0.8rem;
  }
}
#feature .feature_list_txt {
  margin-top: 3rem;
  font-size: 2rem;
  line-height: 1.9em;
}
@media screen and (max-width: 750px) {
  #feature .feature_list_txt {
    margin-top: 6.5rem;
    font-size: 4rem;
    line-height: 1.7em;
  }
}
#feature .feature_list_check_wrap {
  display: flex;
  margin-top: 2rem;
  padding-left: 26.8rem;
  font-size: 2rem;
  line-height: 1.9em;
}
@media screen and (max-width: 750px) {
  #feature .feature_list_check_wrap {
    display: block;
    margin-top: 6rem;
    padding-left: 4rem;
    font-size: 4rem;
    line-height: 1.9em;
  }
}
#feature .feature_list_check + .feature_list_check {
  margin-left: 3em;
}
@media screen and (max-width: 750px) {
  #feature .feature_list_check + .feature_list_check {
    margin-left: 0;
  }
}
#feature .feature_list_check > p {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.2em;
}
@media screen and (max-width: 750px) {
  #feature .feature_list_check > p {
    padding-left: 6rem;
  }
}
#feature .feature_list_check > p::before {
  position: absolute;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 1rem;
  border-left: 0.3rem solid #50c3ea;
  border-bottom: 0.3rem solid #50c3ea;
  transform: translateY(-70%) rotate(-45deg);
}
@media screen and (max-width: 750px) {
  #feature .feature_list_check > p::before {
    top: 1.8rem;
    transform: translateY(0) rotate(-45deg);
    width: 3rem;
    height: 2rem;
    border-left-width: 0.8rem;
    border-bottom-width: 0.8rem;
  }
}
#feature .feature_list_check > p + p {
  margin-top: 1.5rem;
}
#feature .feature_list_annotation {
  margin-top: 0.5em;
  padding-left: 5rem;
  font-size: 1.3rem;
  line-height: 1.847em;
}
@media screen and (max-width: 750px) {
  #feature .feature_list_annotation {
    margin-top: 2rem;
    padding-left: 4rem;
    padding-right: 4rem;
    font-size: 2.6rem;
    line-height: 1.731em;
  }
}
#feature .feature_list_annotation span {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}
#feature .feature_list_place {
  display: flex;
  flex-wrap: wrap;
  width: 74rem;
  margin-top: 3rem;
  padding-left: 5rem;
  font-size: 2rem;
  line-height: 1.9em;
}
@media screen and (max-width: 750px) {
  #feature .feature_list_place {
    display: block;
    width: 59rem;
    margin-top: 6.5rem;
    margin-left: 4rem;
    padding-left: 1em;
    text-indent: -1em;
    font-size: 4rem;
    line-height: 1.7em;
  }
}
#feature .feature_list_place > dt {
  width: 100%;
  font-weight: 500;
}
#feature .feature_list_place > dd {
  margin-right: 1em;
}
@media screen and (max-width: 750px) {
  #feature .feature_list_place > dd {
    margin-right: 0;
  }
}

#results {
  padding: 11.4rem 0;
  background: #f7f9f9 url(../img/map_bg.jpg) no-repeat 50% 0;
  background-size: 100% auto;
}
@media screen and (max-width: 750px) {
  #results {
    padding: 12rem 0;
    background: url(../img/map_bg_sp.jpg) no-repeat 50% 0;
    background-size: 100% auto;
  }
}
#results .pattern_txt {
  margin-top: 6.8rem;
  font-size: 1.8rem;
  line-height: 2em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #results .pattern_txt {
    margin-top: 10rem;
    padding: 0 4rem;
    font-size: 3.6rem;
    line-height: 2em;
  }
}
#results .map_wrap {
  width: 99.25rem;
  margin: 4.8rem auto 0;
}
@media screen and (max-width: 750px) {
  #results .map_wrap {
    width: 67rem;
    margin: 10.5rem auto 0;
    padding-bottom: 8rem;
  }
  #results .map_wrap::-webkit-scrollbar {
    height: 1rem;
  }
  #results .map_wrap::-webkit-scrollbar-thumb {
    background: #959595;
    border-radius: 0.5rem;
  }
  #results .map_wrap::-webkit-scrollbar-track-piece {
    background: #fff;
    border-radius: 0.5rem;
  }
}
@media screen and (max-width: 750px) {
  #results .map_img {
    width: 150.1rem;
  }
}
#results .map_txt {
  display: none;
}
@media screen and (max-width: 750px) {
  #results .map_txt {
    display: block;
    width: 56.6rem;
    margin-top: 5rem;
    margin-left: 4rem;
  }
}

#spec {
  padding: 12rem 0 13rem;
}
@media screen and (max-width: 750px) {
  #spec {
    padding: 12rem 0;
  }
}
#spec .spec_cont {
  position: relative;
  width: 100rem;
  margin: 7.5rem auto 0;
  padding: 3rem 4rem;
  background-color: #fff;
  box-shadow: 0px 0px 20px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 750px) {
  #spec .spec_cont {
    width: 67rem;
    margin-top: 7.5rem;
    padding: 4rem;
    box-shadow: 0px 0px 4rem 0.2rem rgba(0, 0, 0, 0.1);
  }
}
#spec .spec_tbl_wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  #spec .spec_tbl_wrap {
    display: block;
  }
}
#spec .spec_tbl {
  width: 43rem;
}
@media screen and (max-width: 750px) {
  #spec .spec_tbl {
    width: 100%;
  }
  #spec .spec_tbl:nth-of-type(1) tr:last-child th {
    border-bottom: solid 1px #fff;
  }
  #spec .spec_tbl:nth-of-type(1) tr:last-child td {
    border-bottom: solid 1px #ccc;
  }
}
#spec .spec_tbl th, #spec .spec_tbl td {
  padding: 1.3rem 1.4rem;
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  #spec .spec_tbl th, #spec .spec_tbl td {
    padding: 2rem 0 2rem 2rem;
    font-size: 2.6rem;
  }
}
#spec .spec_tbl th {
  text-align: left;
  font-weight: 500;
  color: #fff;
  background-color: rgba(119, 197, 56, 0.7);
  border-bottom: solid 1px #fff;
}
@media screen and (max-width: 750px) {
  #spec .spec_tbl th {
    width: 28rem;
  }
}
#spec .spec_tbl td {
  border-bottom: solid 1px #ccc;
}
#spec .spec_tbl tr:last-child th, #spec .spec_tbl tr:last-child td {
  border-bottom: none;
}

#assurance {
  margin-top: 10rem;
  padding: 12.8rem 0;
  background: #004f8b url(../img/guarantee_bg.jpg) no-repeat 50% 100%;
  background-size: 100% auto;
}
@media screen and (max-width: 750px) {
  #assurance {
    padding: 11.8rem 0 34rem;
    background: #004f8b url(../img/guarantee_bg_sp.jpg) no-repeat 50% 100%;
    background-size: 100% auto;
  }
}
#assurance .guarantee_inr {
  width: 100rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #assurance .guarantee_inr {
    width: 67rem;
  }
}
#assurance .sec_ttl {
  color: #fff;
}
#assurance .sec_ttl small {
  margin-left: 2rem;
  font-size: 1.3rem;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  #assurance .sec_ttl small {
    display: block;
    margin-top: -1rem;
    margin-left: 0;
    font-size: 2.4rem;
  }
}
#assurance .guarantee_txt {
  margin-top: 6.5rem;
  font-size: 1.8rem;
  line-height: 2em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #assurance .guarantee_txt {
    margin-top: 7.2rem;
    font-size: 3.6rem;
    line-height: 2em;
  }
}
#assurance .guarantee_cont {
  margin-top: 7.5rem;
}
@media screen and (max-width: 750px) {
  #assurance .guarantee_cont {
    margin-top: 9rem;
  }
}
#assurance .guarantee_cont + .guarantee_cont {
  margin-top: 6.6rem;
}
@media screen and (max-width: 750px) {
  #assurance .guarantee_cont + .guarantee_cont {
    margin-top: 12rem;
  }
}
#assurance .guarantee_cont > dt {
  font-size: 3.2rem;
  font-weight: 900;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 750px) {
  #assurance .guarantee_cont > dt {
    font-size: 4.4rem;
  }
}
#assurance .guarantee_cont > dd {
  margin-top: 2rem;
}
@media screen and (max-width: 750px) {
  #assurance .guarantee_cont > dd {
    margin-top: 4rem;
  }
}

#support {
  padding: 12rem 0 11.8rem;
}
@media screen and (max-width: 750px) {
  #support {
    padding: 11.6rem 0 20rem;
  }
}
#support .support_inr {
  width: 106rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #support .support_inr {
    width: 65.5rem;
  }
}
#support .support_lead {
  margin-top: 6rem;
  line-height: 2em;
  font-size: 18px;
  text-align: center;
}
#support .support_lead > *:not(div) {
  line-height: inherit !important;
  font: inherit !important;
}
#support .support_lead > *:not(div):first-child {
  margin-top: -0.5em;
}
#support .support_lead > *:not(div):last-child {
  margin-bottom: -0.5em;
}
@media screen and (max-width: 750px) {
  #support .support_lead {
    margin-top: 7rem;
    font-size: 3.6rem;
    line-height: 2em;
  }
}
#support .support_cont {
  margin-top: 8rem;
}
@media screen and (max-width: 750px) {
  #support .support_cont {
    display: flex;
    justify-content: space-between;
    margin-top: 9rem;
  }
}
#support .support_cont + .sec_ttl {
  margin-top: 10rem;
}
#support .support_cont_head {
  position: relative;
  width: 100%;
  padding: 1.5rem 2.6rem;
  background-color: #77c538;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  #support .support_cont_head {
    width: 40px;
    padding: 8.4rem 1.7rem;
    font-size: 4.4rem;
    writing-mode: vertical-rl;
    text-orientation: upright;
    background: url(../img/support_cont_head_arrow.png) no-repeat 0 100%;
    background-size: cover;
  }
}
#support .support_cont_head::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 29px 0 29px 46px;
  border-color: #fff #fff #fff #77c538;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  #support .support_cont_head::before {
    content: none;
  }
}
#support .support_cont_head span {
  display: block;
  padding: 2rem;
  border: solid 6px #77c538;
  background-color: #fff;
  color: #333;
  font-size: 2.7rem;
  position: absolute;
  top: 50%;
  right: 4.6rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  #support .support_cont_head span {
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: flex;
    align-items: center;
    width: 10.2rem;
    padding: 3rem;
    border-width: 0.8rem;
    font-size: 3.6rem;
    top: 63.8rem;
    right: -1rem;
    transform: translateY(0);
  }
}
#support .support_cont_list {
  display: flex;
  margin-top: 4.5rem;
  background-color: rgba(119, 197, 56, 0.7);
}
@media screen and (max-width: 750px) {
  #support .support_cont_list {
    display: block;
    width: 53rem;
    margin-top: 0;
  }
}
#support .support_cont_list > li {
  position: relative;
  width: 100%;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 750px) {
  #support .support_cont_list > li {
    padding-bottom: 5.2rem;
  }
}
#support .support_cont_list > li:not(:last-child) {
  border-right: solid 1px #fff;
}
@media screen and (max-width: 750px) {
  #support .support_cont_list > li:not(:last-child) {
    border-width: 0;
    border-bottom: solid 1px #fff;
  }
}
#support .support_cont_list > li:not(:last-child)::before {
  content: "";
  display: block;
  width: 1.9rem;
  height: 3.3rem;
  background: url(../img/support_arrow.png) no-repeat 0 0;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 750px) {
  #support .support_cont_list > li:not(:last-child)::before {
    width: 6.6rem;
    height: 3.7rem;
    background: url(../img/support_arrow_sp.png) no-repeat 0 0;
    background-size: 100% auto;
    top: auto;
    bottom: 0;
    left: 0;
    margin: auto;
    transform: translate(0, 50%);
  }
}
#support .support_cont_list > li > dl {
  color: #fff;
}
#support .support_cont_list > li > dl > dt {
  position: absolute;
  top: 3rem;
  left: 3.5rem;
  font-size: 3.8rem;
  font-weight: 900;
}
@media screen and (max-width: 750px) {
  #support .support_cont_list > li > dl > dt {
    top: 0;
    left: 7rem;
    font-size: 7.6rem;
  }
}
#support .support_cont_list > li > dl .support_cont_img {
  width: 19rem;
  margin: 3rem auto 0;
}
@media screen and (max-width: 750px) {
  #support .support_cont_list > li > dl .support_cont_img {
    width: 35.8rem;
    margin-top: 6rem;
  }
}
#support .support_cont_list > li > dl .support_cont_txt {
  margin-top: -0.2rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #support .support_cont_list > li > dl .support_cont_txt {
    margin-top: 1rem;
    font-size: 4rem;
    line-height: 1.4em;
  }
}
#support .support_img {
  margin-top: 7rem;
}

#contact {
  width: 100%;
  height: 35.8rem;
  background: #123086;
}
@media screen and (max-width: 750px) {
  #contact {
    height: 73.4rem;
  }
}
#contact .wrap {
  max-width: 600px;
  margin: auto;
  position: relative;
}
#contact .wrap .contact-lead {
  font-size: 2.8rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  padding-top: 7.5rem;
}
@media screen and (max-width: 750px) {
  #contact .wrap .contact-lead {
    padding-top: 9rem;
    font-size: 5.2rem;
    line-height: 1.693em;
    font-weight: 600;
  }
}
#contact .wrap .contact-txt {
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 750px) {
  #contact .wrap .contact-txt {
    font-size: 3.2rem;
    line-height: 1.688em;
  }
}
#contact .wrap .contact {
  width: 40rem;
  height: 7rem;
  margin: 5rem auto 0;
  border: 2px solid #fff;
  border-radius: 4rem;
  background: #fff;
  transition: 0.2s;
}
#contact .wrap .contact:hover {
  background: #123086;
}
#contact .wrap .contact .mail {
  width: 2rem;
  height: 1.5rem;
}
#contact .wrap .contact .txt {
  position: static;
  font-size: 1.8rem;
  margin-left: 0.5rem;
  color: #123086;
  font-weight: 600;
}
#contact .wrap .contact a {
  display: flex;
  width: 100%;
  height: 100%;
  opacity: 1;
  justify-content: center;
  align-items: center;
}
#contact .wrap .center {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
#contact .wrap .contact03 {
  width: 59rem;
  margin: 8rem auto 0;
}

footer {
  width: 100%;
}
footer .box {
  max-width: 1000px;
  margin: 3.5rem auto;
  background: #fff;
  display: flex;
}
@media screen and (max-width: 750px) {
  footer .box {
    margin: 8.5rem auto 15rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
footer .box .logo {
  width: 14rem;
  margin-right: 5rem;
}
@media screen and (max-width: 750px) {
  footer .box .logo {
    width: 30rem;
    margin-right: 0;
  }
}
footer .box .company {
  width: 20rem;
  height: 4rem;
  color: #123086;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  position: relative;
  margin-top: 1rem;
  border: 1px solid #123086;
}
footer .box .company a {
  color: #123086;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: 0.2s;
}
footer .box .company a:hover {
  color: #fff;
  background: #123086;
}
@media screen and (max-width: 750px) {
  footer .box .company a:hover {
    color: #123086;
    background: #fff;
  }
}
@media screen and (max-width: 750px) {
  footer .box .company a {
    color: #123086;
  }
}
@media screen and (max-width: 750px) {
  footer .box .company {
    width: 40rem;
    height: 8rem;
    background: #fff;
    color: #123086;
    border: 1px solid #123086;
    font-size: 2.8rem;
    margin-top: 3.5rem;
  }
}
footer .box .company .blank {
  position: absolute;
  right: 2rem;
  width: 1rem;
}
@media screen and (max-width: 750px) {
  footer .box .company .blank {
    right: 5rem;
    width: 2rem;
  }
}
footer .rights {
  width: 100%;
  background: #123086;
}
footer .rights .rights-txt {
  height: 4rem;
  font-size: 1rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 750px) {
  footer .rights .rights-txt {
    height: 9.6rem;
    font-size: 2rem;
    letter-spacing: 0.08rem;
    text-align: center;
  }
}

#page-top {
  position: fixed;
  bottom: 8rem;
  right: 20px;
  font-size: 80%;
  z-index: 900;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  #page-top {
    right: 3.5rem;
    bottom: 12.5rem;
  }
}
#page-top .top {
  width: 4.6rem;
}
@media screen and (max-width: 750px) {
  #page-top .top {
    width: 8rem;
  }
}

#page-top a {
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.cookie_block {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 3rem 7rem;
  z-index: 901;
  visibility: hidden;
}
@media screen and (max-width: 750px) {
  .cookie_block {
    padding: 8rem 5rem 5rem;
  }
}
.cookie_block.is-show {
  visibility: visible;
}
.cookie_block.cookie_block-hide {
  animation: hide 0.7s linear 0s;
  animation-fill-mode: forwards;
}

@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.cookie_inr {
  display: flex;
  align-items: center;
  gap: 11rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .cookie_inr {
    flex-direction: column;
    align-items: center;
    gap: 5rem;
    margin: 0 auto;
  }
}

.cookie_text {
  font-size: 1.4rem;
  line-height: 2em;
}
@media screen and (max-width: 750px) {
  .cookie_text {
    font-size: 2.6rem;
  }
}
.cookie_text a {
  display: inline;
  color: inherit;
  text-decoration: underline;
}

.cookie_agree {
  padding: 1.6rem 2.6rem;
  font-size: 1.5rem;
  border: solid 1px #fff;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .cookie_agree {
    padding: 2.4rem 8rem;
    font-size: 2.6rem;
  }
}

.cookie_close {
  font-size: 2.8rem;
  cursor: pointer;
  font-weight: 100;
}
@media screen and (max-width: 750px) {
  .cookie_close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 6rem;
  }
}

@media all and (-ms-high-contrast: none) {
  .header-wrapper h1 {
    position: relative;
    left: 8rem;
    z-index: 3;
  }
  header .contact {
    position: relative;
    top: -6rem;
    right: -120rem;
  }
  .img-box-itm img {
    min-height: 0%;
  }
  #gNav .gNav-menu li:nth-child(5) {
    padding-right: 3.4rem;
  }
}
@media all and (-ms-high-contrast: none) and (min-width: 1600px) {
  header .contact {
    right: -140rem;
  }
}
@media all and (-ms-high-contrast: none) and (min-width: 1800px) {
  header .contact {
    right: -160rem;
  }
}
.kerning01 {
  margin-left: -0.5em;
}

.kerning02 {
  margin-right: -0.5em;
}

.about_cont_head {
  margin-top: 10rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.696em;
  font-size: 46px;
}
.about_cont_head > *:not(div) {
  line-height: inherit !important;
  font: inherit !important;
}
.about_cont_head > *:not(div):first-child {
  margin-top: -0.347em;
}
.about_cont_head > *:not(div):last-child {
  margin-bottom: -0.347em;
}
@media screen and (max-width: 750px) {
  .about_cont_head {
    margin-top: 9rem;
    line-height: 1.688em;
    font-size: 32px;
  }
  .about_cont_head > *:not(div) {
    line-height: inherit !important;
    font: inherit !important;
  }
  .about_cont_head > *:not(div):first-child {
    margin-top: -0.343em;
  }
  .about_cont_head > *:not(div):last-child {
    margin-bottom: -0.343em;
  }
}
.mid .about_cont_head {
  color: #123086;
}
.small .about_cont_head {
  color: #11a8b3;
}

.about_cont_lead {
  text-align: center;
  margin-top: 2rem;
  font-weight: 700;
  line-height: 1.584em;
  font-size: 24px;
}
.about_cont_lead > *:not(div) {
  line-height: inherit !important;
  font: inherit !important;
}
.about_cont_lead > *:not(div):first-child {
  margin-top: -0.291em;
}
.about_cont_lead > *:not(div):last-child {
  margin-bottom: -0.291em;
}
@media screen and (max-width: 750px) {
  .about_cont_lead {
    margin-top: 8rem;
    line-height: 2em;
    font-size: 18px;
  }
  .about_cont_lead > *:not(div) {
    line-height: inherit !important;
    font: inherit !important;
  }
  .about_cont_lead > *:not(div):first-child {
    margin-top: -0.5em;
  }
  .about_cont_lead > *:not(div):last-child {
    margin-bottom: -0.5em;
  }
}

.about_cont_head03 {
  margin-top: 5.5rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.637em;
  font-size: 22px;
}
.about_cont_head03 > *:not(div) {
  line-height: inherit !important;
  font: inherit !important;
}
.about_cont_head03 > *:not(div):first-child {
  margin-top: -0.318em;
}
.about_cont_head03 > *:not(div):last-child {
  margin-bottom: -0.318em;
}
@media screen and (max-width: 750px) {
  .about_cont_head03 {
    margin-top: 8rem;
    line-height: 1.705em;
    font-size: 22px;
  }
  .about_cont_head03 > *:not(div) {
    line-height: inherit !important;
    font: inherit !important;
  }
  .about_cont_head03 > *:not(div):first-child {
    margin-top: -0.352em;
  }
  .about_cont_head03 > *:not(div):last-child {
    margin-bottom: -0.352em;
  }
}
.mid .about_cont_head03 {
  color: #123086;
}
.small .about_cont_head03 {
  color: #11a8b3;
}
.about_cont_head03 + .about_cont_txt {
  margin-top: 2.5rem;
}

.about_cont_txt {
  text-align: center;
  width: 98rem;
  margin: 0 auto;
  line-height: 2em;
  font-size: 18px;
}
.about_cont_txt > *:not(div) {
  line-height: inherit !important;
  font: inherit !important;
}
.about_cont_txt > *:not(div):first-child {
  margin-top: -0.5em;
}
.about_cont_txt > *:not(div):last-child {
  margin-bottom: -0.5em;
}
@media screen and (max-width: 750px) {
  .about_cont_txt {
    width: 100%;
    padding: 0 6rem;
    line-height: 2em;
    font-size: 16px;
  }
  .about_cont_txt > *:not(div) {
    line-height: inherit !important;
    font: inherit !important;
  }
  .about_cont_txt > *:not(div):first-child {
    margin-top: -0.5em;
  }
  .about_cont_txt > *:not(div):last-child {
    margin-bottom: -0.5em;
  }
}

.about_cont_point {
  display: flex;
  justify-content: center;
  gap: 2.8rem;
  width: 106rem;
  margin: 6rem auto 0;
}
@media screen and (max-width: 750px) {
  .about_cont_point {
    flex-direction: column;
    align-items: center;
    gap: 6rem;
    width: 59rem;
    margin: 7rem auto 0;
  }
}
.about_cont_point + .about_box {
  margin-top: 13.5rem;
}
@media screen and (max-width: 750px) {
  .about_cont_point + .about_box {
    margin-top: 9rem;
  }
}

.about_cont_point_icon {
  flex-shrink: 0;
  width: 7.8rem;
}
@media screen and (max-width: 750px) {
  .about_cont_point_icon {
    width: 11rem;
  }
}

.about_cont_point_txt {
  font-weight: 700;
  line-height: 1.584em;
  font-size: 24px;
}
.about_cont_point_txt > *:not(div) {
  line-height: inherit !important;
  font: inherit !important;
}
.about_cont_point_txt > *:not(div):first-child {
  margin-top: -0.291em;
}
.about_cont_point_txt > *:not(div):last-child {
  margin-bottom: -0.291em;
}
@media screen and (max-width: 750px) {
  .about_cont_point_txt {
    line-height: 1.657em;
    font-size: 16px;
    text-align: justify;
  }
  .about_cont_point_txt > *:not(div) {
    line-height: inherit !important;
    font: inherit !important;
  }
  .about_cont_point_txt > *:not(div):first-child {
    margin-top: -0.328em;
  }
  .about_cont_point_txt > *:not(div):last-child {
    margin-bottom: -0.328em;
  }
}
.mid .about_cont_point_txt {
  color: #123086;
}
.small .about_cont_point_txt {
  color: #11a8b3;
}

.about_box {
  width: 118rem;
  margin: 0 auto;
  padding: 7.5rem 8.8rem;
  border: solid 1px;
  border-top: solid 0.4rem;
}
@media screen and (max-width: 750px) {
  .about_box {
    width: 67rem;
    margin: 0 auto;
    padding: 7rem 3.5rem;
  }
}
.about_box + .about_box {
  margin-top: 10rem;
}
@media screen and (max-width: 750px) {
  .about_box + .about_box {
    margin-top: 9.5rem;
  }
}
.mid .about_box {
  border-color: #123086;
}
.small .about_box {
  border-color: #11a8b3;
}

.about_box_sholder {
  text-align: center;
  font-weight: 700;
  line-height: 1.408em;
  font-size: 27px;
}
.about_box_sholder > *:not(div) {
  line-height: inherit !important;
  font: inherit !important;
}
.about_box_sholder > *:not(div):first-child {
  margin-top: -0.203em;
}
.about_box_sholder > *:not(div):last-child {
  margin-bottom: -0.203em;
}
@media screen and (max-width: 750px) {
  .about_box_sholder {
    line-height: 1.5em;
    font-size: 16px;
  }
  .about_box_sholder > *:not(div) {
    line-height: inherit !important;
    font: inherit !important;
  }
  .about_box_sholder > *:not(div):first-child {
    margin-top: -0.25em;
  }
  .about_box_sholder > *:not(div):last-child {
    margin-bottom: -0.25em;
  }
}

.about_box_head {
  text-align: center;
  font-weight: 900;
  margin-top: 2rem;
  line-height: 1.696em;
  font-size: 46px;
}
.about_box_head > *:not(div) {
  line-height: inherit !important;
  font: inherit !important;
}
.about_box_head > *:not(div):first-child {
  margin-top: -0.347em;
}
.about_box_head > *:not(div):last-child {
  margin-bottom: -0.347em;
}
@media screen and (max-width: 750px) {
  .about_box_head {
    margin-top: 4rem;
    line-height: 1.688em;
    font-size: 32px;
  }
  .about_box_head > *:not(div) {
    line-height: inherit !important;
    font: inherit !important;
  }
  .about_box_head > *:not(div):first-child {
    margin-top: -0.343em;
  }
  .about_box_head > *:not(div):last-child {
    margin-bottom: -0.343em;
  }
}
.mid .about_box_head {
  color: #123086;
}
.small .about_box_head {
  color: #11a8b3;
}

.about_box_feature {
  display: flex;
  gap: 4.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 750px) {
  .about_box_feature {
    flex-direction: column;
    gap: 4rem;
    margin-top: 6rem;
  }
}

.about_box_feature_head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14.3rem;
  line-height: 1.653em;
  font-size: 23px;
  border: solid 1px;
  font-weight: 700;
}
.about_box_feature_head > *:not(div) {
  line-height: inherit !important;
  font: inherit !important;
}
.about_box_feature_head > *:not(div):first-child {
  margin-top: -0.326em;
}
.about_box_feature_head > *:not(div):last-child {
  margin-bottom: -0.326em;
}
@media screen and (max-width: 750px) {
  .about_box_feature_head {
    width: 100%;
    padding: 1rem 0;
    line-height: 1em;
    font-size: 16px;
  }
  .about_box_feature_head > *:not(div) {
    line-height: inherit !important;
    font: inherit !important;
  }
  .about_box_feature_head > *:not(div):first-child {
    margin-top: 0em;
  }
  .about_box_feature_head > *:not(div):last-child {
    margin-bottom: 0em;
  }
}
.mid .about_box_feature_head {
  color: #123086;
  border-color: #123086;
}
.small .about_box_feature_head {
  color: #11a8b3;
  border-color: #11a8b3;
}

.about_box_feature_txt {
  line-height: 2em;
  font-size: 18px;
}
.about_box_feature_txt > *:not(div) {
  line-height: inherit !important;
  font: inherit !important;
}
.about_box_feature_txt > *:not(div):first-child {
  margin-top: -0.5em;
}
.about_box_feature_txt > *:not(div):last-child {
  margin-bottom: -0.5em;
}
@media screen and (max-width: 750px) {
  .about_box_feature_txt {
    line-height: 1.657em;
    font-size: 16px;
  }
  .about_box_feature_txt > *:not(div) {
    line-height: inherit !important;
    font: inherit !important;
  }
  .about_box_feature_txt > *:not(div):first-child {
    margin-top: -0.328em;
  }
  .about_box_feature_txt > *:not(div):last-child {
    margin-bottom: -0.328em;
  }
}

.about_box_feature_table01_wrap {
  display: flex;
  gap: 6rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 750px) {
  .about_box_feature_table01_wrap {
    flex-direction: column;
    gap: 0;
    margin-top: 9rem;
    border-top: solid 1px #c3c3c3;
    border-bottom: solid 1px #c3c3c3;
  }
}
.about_box_feature_table01_wrap > * {
  flex-grow: 1;
}

.about_box_feature_table01 {
  display: flex;
}
.about_box_feature_table01 > dt {
  flex-shrink: 0;
  width: 22.5rem;
  padding: 1.4rem 1rem;
  line-height: 1em;
  font-size: 18px;
  color: #fff;
}
.about_box_feature_table01 > dt > *:not(div) {
  line-height: inherit !important;
  font: inherit !important;
}
.about_box_feature_table01 > dt > *:not(div):first-child {
  margin-top: 0em;
}
.about_box_feature_table01 > dt > *:not(div):last-child {
  margin-bottom: 0em;
}
@media screen and (max-width: 750px) {
  .about_box_feature_table01 > dt {
    width: 29.5rem;
    padding: 1rem 1rem;
    line-height: 1em;
    font-size: 13px;
  }
  .about_box_feature_table01 > dt > *:not(div) {
    line-height: inherit !important;
    font: inherit !important;
  }
  .about_box_feature_table01 > dt > *:not(div):first-child {
    margin-top: 0em;
  }
  .about_box_feature_table01 > dt > *:not(div):last-child {
    margin-bottom: 0em;
  }
}
.mid .about_box_feature_table01 > dt {
  background-color: rgba(98, 181, 209, 0.7);
}
.small .about_box_feature_table01 > dt {
  background-color: rgba(119, 188, 56, 0.7);
}
.about_box_feature_table01 > dd {
  flex-grow: 1;
  padding: 1.4rem 1rem;
  line-height: 1em;
  font-size: 18px;
}
.about_box_feature_table01 > dd > *:not(div) {
  line-height: inherit !important;
  font: inherit !important;
}
.about_box_feature_table01 > dd > *:not(div):first-child {
  margin-top: 0em;
}
.about_box_feature_table01 > dd > *:not(div):last-child {
  margin-bottom: 0em;
}
@media screen and (max-width: 750px) {
  .about_box_feature_table01 > dd {
    padding: 1rem 1rem;
    line-height: 1em;
    font-size: 13px;
  }
  .about_box_feature_table01 > dd > *:not(div) {
    line-height: inherit !important;
    font: inherit !important;
  }
  .about_box_feature_table01 > dd > *:not(div):first-child {
    margin-top: 0em;
  }
  .about_box_feature_table01 > dd > *:not(div):last-child {
    margin-bottom: 0em;
  }
}
.about_box_feature_table01:not(:last-child) > dt {
  border-bottom: solid 1px #fff;
}
.about_box_feature_table01:not(:last-child) > dd {
  border-bottom: solid 1px #c3c3c3;
}

.about_box_feature_table02_wrap {
  display: flex;
  gap: 0.2rem;
  margin-top: 5rem;
}
@media screen and (max-width: 750px) {
  .about_box_feature_table02_wrap {
    flex-direction: column;
    margin-top: 8rem;
  }
}

.about_box_feature_table02 {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
@media screen and (max-width: 750px) {
  .about_box_feature_table02 {
    flex-direction: row;
    width: 100%;
  }
}
.about_box_feature_table02:first-child {
  width: 17.5rem;
}
@media screen and (max-width: 750px) {
  .about_box_feature_table02:first-child {
    width: 100%;
  }
}
.about_box_feature_table02 > dt, .about_box_feature_table02 > dd {
  font-weight: 500;
  text-align: center;
  padding: 2rem 1rem;
  line-height: 0.934em;
  font-size: 15px;
}
.about_box_feature_table02 > dt > *:not(div), .about_box_feature_table02 > dd > *:not(div) {
  line-height: inherit !important;
  font: inherit !important;
}
.about_box_feature_table02 > dt > *:not(div):first-child, .about_box_feature_table02 > dd > *:not(div):first-child {
  margin-top: 0.034em;
}
.about_box_feature_table02 > dt > *:not(div):last-child, .about_box_feature_table02 > dd > *:not(div):last-child {
  margin-bottom: 0.034em;
}
@media screen and (max-width: 750px) {
  .about_box_feature_table02 > dt, .about_box_feature_table02 > dd {
    padding: 2rem;
    line-height: 1em;
    font-size: 13px;
  }
  .about_box_feature_table02 > dt > *:not(div), .about_box_feature_table02 > dd > *:not(div) {
    line-height: inherit !important;
    font: inherit !important;
  }
  .about_box_feature_table02 > dt > *:not(div):first-child, .about_box_feature_table02 > dd > *:not(div):first-child {
    margin-top: 0em;
  }
  .about_box_feature_table02 > dt > *:not(div):last-child, .about_box_feature_table02 > dd > *:not(div):last-child {
    margin-bottom: 0em;
  }
}
.about_box_feature_table02 > dt {
  color: #fff;
  background-color: #009ba2;
}
@media screen and (max-width: 750px) {
  .about_box_feature_table02 > dt {
    width: 29.4rem;
  }
}
.about_box_feature_table02 > dd {
  background-color: #e9e9e9;
}
@media screen and (max-width: 750px) {
  .about_box_feature_table02 > dd {
    flex-grow: 1;
  }
}

.about_box_figure {
  margin-top: 5rem;
}

.shadow_fig {
  width: 118rem;
  margin: 9rem auto 0;
  box-shadow: 0px 0px 20px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 750px) {
  .shadow_fig {
    width: 90%;
    margin-top: 10rem;
    margin-left: 4rem;
  }
  .shadow_fig figure {
    width: 188.8rem;
  }
}