/*-----------------------
import.scss
-----------------------*/
.red {
  color: #ff0000;
}

/*-----------------------
mixin
-----------------------*/
/*mediaquery*/
/*-----------------------
01.reset
-----------------------*/
/*reset --Don't use global reset!--*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-weight: normal;
}
table caption,
table th,
table td {
  text-align: left;
  vertical-align: middle;
}
table caption,
table th {
  font-weight: 300;
}
table td {
  font-weight: 200;
}

q::before,
q::after,
blockquote::before,
blockquote::after {
  content: "";
  content: none;
}

a {
  display: inline-block;
  color: #000;
  text-decoration: none;
}
a:link {
  color: #000;
}
a:active {
  color: #000;
}
a:visited {
  color: #000;
}
a:hover {
  cursor: pointer;
}

a img {
  border: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

ul {
  list-style: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

input,
button,
textarea,
select {
  margin: 0;
  border: none;
  outline: none;
  font-size: 3.4rem;
  letter-spacing: 0.1em;
}

img.cover,
video.cover {
  object-fit: cover;
}

h1 {
  font-weight: normal;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

p {
  margin: 0;
}
@media (max-width: 750px) {
  p {
    font-size: 14px;
  }
}

:placeholder-shown {
  color: #8a8a8a;
}

::-webkit-input-placeholder {
  color: #8a8a8a;
}

:-moz-placeholder {
  color: #8a8a8a;
  opacity: 1;
}

::-moz-placeholder {
  color: #8a8a8a;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #8a8a8a;
}

*:focus {
  outline: none;
}

.pc {
  display: block;
}
@media (max-width: 750px) {
  .pc {
    display: none;
  }
}
@media (min-width: 751px) and (max-width: 1024px) {
  .pc {
    display: block;
  }
}

.tab {
  display: none;
}
@media (max-width: 750px) {
  .tab {
    display: none;
  }
}
@media (min-width: 751px) and (max-width: 1024px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none;
}
@media (max-width: 750px) {
  .sp {
    display: block;
  }
}
@media (min-width: 751px) and (max-width: 1024px) {
  .sp {
    display: none;
  }
}

.fL {
  float: left;
}

.fR {
  float: right;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.mT10 {
  margin-top: 1rem;
}

.mT20 {
  margin-top: 2rem;
}

.mT40 {
  margin-top: 4rem;
}

.mT60 {
  margin-top: 6rem;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  counter-reset: number 0;
}

section {
  padding: 100px 0;
}
@media (min-width: 751px) and (max-width: 1024px) {
  section {
    padding: 75px 0;
  }
}
@media (max-width: 750px) {
  section {
    padding: 50px 0;
  }
}

.sub-inner {
  max-width: 1000px;
  margin: auto;
}
@media (min-width: 751px) and (max-width: 1024px) {
  .sub-inner {
    width: 92%;
  }
}
@media (max-width: 750px) {
  .sub-inner {
    width: 92%;
    margin: auto;
  }
}

.navy {
  color: #263f5c;
}

.yellow {
  color: #ffeb67;
}

.bold {
  font-weight: bold;
}

.border-navy {
  border: solid #263f5c 3px;
}

.border-yellow {
  border: solid #ffeb67 3px;
}

.marker-yellow {
  position: relative;
  z-index: 1;
}
.marker-yellow:after {
  content: "";
  position: absolute;
  background: #ffeb67;
  height: 30px;
  width: 100%;
  margin: auto;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 750px) {
  .marker-yellow:after {
    height: 10px;
    bottom: 0px;
  }
}
.marker-sky {
  position: relative;
}
.marker-sky:after {
  content: "";
  position: absolute;
  background: #50a0e8;
  height: 100%;
  width: 100%;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 751px) and (max-width: 1024px) {
  .inner {
    width: 92%;
  }
}
@media (max-width: 750px) {
  .inner {
    width: 92%;
    padding: 0;
  }
}

#mainview {
  padding: 0;
}

.mainv {
  background: url(../img/mainv.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 222px;
  padding-bottom: 135px;
}
@media (max-width: 750px) {
  .mainv {
    background: url(../img/mainv-sp.png);
    background-size: cover;
    padding-top: 85px;
    padding-bottom: 85px;
  }
}

h1 {
  color: #ffde00;
  font-size: 78px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 3.95px;
}
@media (max-width: 750px) {
  h1 {
    margin-left: 4%;
    font-size: 46px;
    letter-spacing: 1.48px;
    text-align: left;
  }
}
h1 span.white {
  color: #fff;
}
h1 span.small {
  font-size: 64px;
}
@media (max-width: 750px) {
  h1 span.small {
    font-size: 41px;
  }
}
h1 span.bottom {
  text-shadow: 3px 3px 3px #194102;
}
@media (max-width: 750px) {
  h1 span.bottom {
    line-height: 1.6;
  }
}
h1 span.bg {
  font-size: 42px;
  background-color: #fff;
  display: block;
  margin: auto;
  width: fit-content;
  margin-bottom: 30px;
  padding: 25px 60px 23px;
}
@media (min-width: 751px) and (max-width: 1024px) {
  h1 span.bg {
    line-height: 1.2;
  }
}
@media (max-width: 750px) {
  h1 span.bg {
    font-size: 21px;
    padding: 0px 25px;
    margin: auto 0;
    margin-bottom: 20px;
  }
}
h1 span.clip {
  display: inline-block;
  background: linear-gradient(0deg, #6eb944 0%, #194102 100%);
  background: -webkit-linear-gradient(0deg, #6eb944 0%, #194102 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 750px) {
  h1 span.clip {
    padding: 6px;
  }
}

h2 {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  color: #0d3660;
}
@media (max-width: 750px) {
  h2 {
    font-size: 24px;
  }
}
h2 .purple {
  color: #6147b6;
}
h2 .orange {
  color: #cf8a05;
}
h2 .marker-yellow {
  font-size: 48px;
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  h2 .marker-yellow {
    font-size: 24px;
  }
}
h2 .small {
  font-size: 40px;
}
@media (max-width: 750px) {
  h2 .small {
    font-size: 20px;
  }
}
h2.clip {
  display: inline-block;
  background: linear-gradient(94deg, #6147b6 0%, #0d3660 100%);
  background: -webkit-linear-gradient(94deg, #6147b6 0%, #0d3660 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 .dot {
  z-index: 2;
  position: relative;
}
h2 .dot:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  top: -70px;
  border-radius: 100%;
  background: #0d3660;
}
@media (max-width: 750px) {
  h2 .dot:before {
    width: 6px;
    height: 6px;
    top: -40px;
  }
}

.contact {
  background-color: #fff2d8;
  padding: 35px 0;
}
.contact p {
  text-align: center;
  color: #000000;
  font-size: 20px;
  margin-bottom: 40px;
  position: relative;
}
.contact p span {
  position: relative;
}
.contact p span:before {
  position: relative;
  display: inline-block;
  content: "";
  background: #000;
  width: 2px;
  height: 2em;
  margin: 0 1em;
  margin-top: -0.2em;
  vertical-align: middle;
  transform: rotate(-35deg);
}
@media (max-width: 750px) {
  .contact p span:before {
    position: absolute;
    left: -50px;
    bottom: 0;
  }
}
.contact p span:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #000;
  width: 2px;
  height: 2em;
  margin: 0 1em;
  margin-top: -0.2em;
  vertical-align: middle;
  transform: rotate(35deg);
}
@media (max-width: 750px) {
  .contact p span:after {
    position: absolute;
    right: -30px;
    bottom: 0;
  }
}
.contact .flex {
  gap: 80px;
  justify-content: center;
}
@media (min-width: 751px) and (max-width: 1024px) {
  .contact .flex {
    gap: 50;
  }
}
@media (max-width: 750px) {
  .contact .flex {
    flex-direction: column;
    gap: 25px;
  }
}

.btn {
  max-width: 420px;
  text-align: center;
  width: 100%;
}
@media (min-width: 751px) and (max-width: 1024px) {
  .btn {
    max-width: 340px;
  }
}
@media (max-width: 750px) {
  .btn {
    max-width: 275px;
    margin: auto;
  }
}
.btn a {
  color: #0d3660;
  font-weight: 500;
  position: relative;
  line-height: 1;
  font-size: 22px;
  background: #ffde00;
  padding: 30px 0px 30px 0px;
  width: 100%;
  transition: 0.3s;
  opacity: 1;
}
.btn a:hover {
  opacity: 0.6;
}
@media (min-width: 751px) and (max-width: 1024px) {
  .btn a {
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .btn a {
    font-size: 14px;
    padding: 18px 0px;
  }
}
.btn a p {
  padding-left: 20px;
  color: #fff;
  margin-bottom: 0;
}
@media (min-width: 751px) and (max-width: 1024px) {
  .btn a p {
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .btn a p {
    font-size: 14px;
  }
}
.btn a.mail {
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 2px solid #f57c01;
}
.btn a.mail p {
  color: #f57c01;
}
.btn a.mail:before {
  content: "";
  position: absolute;
  background: url(../img/icon-7.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 37px;
  height: 25px;
  left: 60px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (min-width: 751px) and (max-width: 1024px) {
  .btn a.mail:before {
    left: 30px;
  }
}
@media (max-width: 750px) {
  .btn a.mail:before {
    left: 40px;
    width: 18px;
    height: 12px;
  }
}
.btn a.file {
  background: transparent linear-gradient(180deg, #f5b301 0%, #f57c01 100%) 0% 0% no-repeat padding-box;
  color: #fff;
}
.btn a.file:before {
  content: "";
  position: absolute;
  background: url(../img/icon-8.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 37px;
  height: 27px;
  left: 90px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 750px) {
  .btn a.file:before {
    width: 18px;
    height: 13px;
    left: 60px;
  }
}
.btn a.paper {
  background: transparent linear-gradient(180deg, #f5b301 0%, #f57c01 100%) 0% 0% no-repeat padding-box;
  color: #fff;
}
.btn a.paper:before {
  content: "";
  position: absolute;
  background: url(../img/icon-6.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 37px;
  height: 37px;
  left: 80px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (min-width: 751px) and (max-width: 1024px) {
  .btn a.paper:before {
    left: 40px;
  }
}
@media (max-width: 750px) {
  .btn a.paper:before {
    left: 50px;
    width: 18px;
    height: 18px;
  }
}

.box {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1607843137);
  padding: 55px 0;
}
@media (max-width: 750px) {
  .box {
    padding: 25px 0;
  }
}
.box .flex {
  justify-content: center;
  gap: 15px;
}
@media (max-width: 750px) {
  .box .flex {
    flex-direction: column;
  }
  .box .flex .flex {
    flex-direction: row;
    width: 92%;
  }
}
.box .inside {
  align-items: center;
  margin: auto;
  gap: 6px;
}
@media (max-width: 750px) {
  .box .inside {
    justify-content: flex-start;
  }
}
.box .inside .small {
  font-size: 16px;
}

.large-text {
  font-size: 80px;
  font-weight: bold;
  color: #fff;
  background-color: #cf8a05;
  line-height: 1;
}
@media (max-width: 750px) {
  .large-text {
    width: 70px;
    text-align: center;
  }
}

.small-text {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
}

.border-box {
  background-color: #ffffff;
  border: 1px solid #0d3660;
  color: #0d3660;
  font-size: 20px;
}
.border-box img {
  width: 100%;
}
@media (max-width: 750px) {
  .border-box img {
    margin-bottom: 40px;
  }
}
.border-box .small {
  margin-top: 36px;
  font-size: 16px;
}
@media (max-width: 750px) {
  .border-box .small {
    font-size: 11px;
  }
}
.border-header {
  background: #0d3660;
  color: #fff;
  padding: 25px 0;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2.8px;
}
.border-header p {
  text-align: center;
  font-size: 28px;
}
@media (max-width: 750px) {
  .border-header {
    font-size: 16px;
  }
}
.border-inner {
  background-color: #fff;
  padding: 40px 0;
  max-width: 850px;
  width: 100%;
  margin: auto;
  text-align: center;
}
@media (min-width: 751px) and (max-width: 1024px) {
  .border-inner {
    width: 92%;
  }
}
@media (max-width: 750px) {
  .border-inner {
    width: 92%;
  }
}
.border-inner p {
  color: #000000;
  font-size: 16px;
  text-align: left;
}
.border-inner h3 {
  letter-spacing: 1.9px;
  text-align: left;
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 34px;
}
@media (min-width: 751px) and (max-width: 1024px) {
  .border-inner h3 {
    font-size: 32px;
  }
}
@media (max-width: 750px) {
  .border-inner h3 {
    font-size: 24px;
  }
}
.border-inner img {
  margin-bottom: 50px;
  max-width: 500px;
  margin: auto;
  margin-bottom: 53px;
}
@media (max-width: 750px) {
  .border-inner img {
    width: 90%;
    margin-bottom: 25px;
  }
}
.border-list {
  text-align: left;
  align-items: center;
  gap: 50px;
}
@media (max-width: 750px) {
  .border-list {
    margin-top: 25px;
    flex-direction: column;
    gap: 20px;
  }
}
.border-list p {
  font-size: 34px;
  color: #4a80c0;
  font-weight: bold;
}
@media (max-width: 750px) {
  .border-list p {
    font-size: 20px;
  }
}
.border-list ul {
  font-size: 16px;
}
.border-list ul li {
  position: relative;
  padding-left: 20px;
  line-height: 30px;
}
@media (max-width: 750px) {
  .border-list ul li {
    font-size: 11px;
    line-height: 16px;
    margin-bottom: 10px;
  }
}
.border-list ul li:before {
  content: "";
  position: absolute;
  background: url(../img/icon-9.svg);
  margin: auto;
  width: 24.2px;
  height: 20px;
  top: 3px;
  left: 0;
}
@media (max-width: 750px) {
  .border-list ul li:before {
    width: 9px;
    height: 9px;
    background-size: cover;
  }
}

.flex-item {
  gap: 20px;
  display: flex;
  align-items: center;
}

#merit {
  padding-bottom: 100px;
  position: relative;
  background: url(../img/kagoya-img-bg-2.png);
}
#merit:before {
  content: "";
  top: 0%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 73px 0 73px;
  border-color: #f8f8f8 transparent transparent transparent;
}
@media (max-width: 750px) {
  #merit:before {
    border-width: 25px 36px 0 36px;
  }
}
#merit h2 {
  color: #ffde00;
  font-size: 80px;
  letter-spacing: 2px;
  line-height: 1.3;
}
@media (min-width: 751px) and (max-width: 1024px) {
  #merit h2 {
    font-size: 48px;
  }
}
@media (max-width: 750px) {
  #merit h2 {
    font-size: 32px;
  }
}
#merit h2 .small {
  font-size: 38px;
  color: #fff;
}
@media (min-width: 751px) and (max-width: 1024px) {
  #merit h2 .small {
    font-size: 32px;
  }
}
@media (max-width: 750px) {
  #merit h2 .small {
    font-size: 24px;
  }
}
#merit h2 .white {
  color: #fff;
}
#merit h2 .fs58 {
  font-size: 58px;
}
@media (min-width: 751px) and (max-width: 1024px) {
  #merit h2 .fs58 {
    font-size: 40px;
  }
}
@media (max-width: 750px) {
  #merit h2 .fs58 {
    font-size: 29px;
  }
}
#merit h2 .fs48 {
  font-size: 48px;
}
@media (min-width: 751px) and (max-width: 1024px) {
  #merit h2 .fs48 {
    font-size: 32px;
  }
}
@media (max-width: 750px) {
  #merit h2 .fs48 {
    font-size: 24px;
  }
}
#merit .flex {
  margin-top: 80px;
  gap: 50px;
  height: 100%;
}
@media (max-width: 750px) {
  #merit .flex {
    max-height: inherit;
    margin-top: 25px;
    flex-direction: column;
    gap: 25px;
  }
}
#merit .flex.counter {
  margin-bottom: 100px;
}
@media (max-width: 750px) {
  #merit .flex.counter {
    margin-bottom: 50px;
  }
}
#merit .flex.counter li {
  width: 100%;
  align-self: flex-start;
  color: #000;
  text-align: left;
  position: relative;
}
#merit .flex.counter li:before {
  position: absolute;
  counter-increment: number 1;
  content: "0" counter(number);
  left: 0;
  top: 30px;
  color: #ffde00;
  font-size: 68px;
  font-weight: bold;
}
@media (max-width: 750px) {
  #merit .flex.counter li:before {
    font-size: 46px;
    left: 10px;
    top: -16px;
  }
}
@media (max-width: 750px) {
  #merit .flex.counter li {
    padding: 25px 0;
    height: auto;
  }
}
#merit .flex.counter li .list-box {
  text-align: center;
  margin-top: 50px;
  color: #fff;
}
@media (max-width: 750px) {
  #merit .flex.counter li .list-box {
    margin-top: 0px;
    align-items: center;
    display: flex;
    width: 92%;
    margin: auto;
    gap: 20px;
  }
  #merit .flex.counter li .list-box img {
    justify-content: center;
    height: auto;
    width: 50px;
  }
}
@media (max-width: 750px) and (max-width: 750px) {
  #merit .flex.counter li .list-box img {
    width: 120px;
  }
}
#merit .flex.counter li p {
  max-width: 260px;
  margin: auto;
  letter-spacing: 1.6px;
  margin-top: 30px;
  text-align: justify;
  font-weight: 300;
  font-size: 20px;
}
@media (min-width: 751px) and (max-width: 1024px) {
  #merit .flex.counter li p {
    margin: 10px;
  }
}
@media (max-width: 750px) {
  #merit .flex.counter li p {
    margin-top: 0px;
    font-size: 16px;
    margin: auto;
  }
}
#merit .flex.counter li p .bold {
  font-weight: 500;
}
#merit .flex.counter li img {
  height: 185px;
}
#merit .service {
  text-align: center;
  color: #ffde00;
  font-weight: bold;
  font-size: 48px;
  margin-bottom: 21px;
}
@media (max-width: 750px) {
  #merit .service {
    font-size: 24px;
  }
}
#merit .service .small {
  font-size: 42px;
}
@media (max-width: 750px) {
  #merit .service .small {
    font-size: 21px;
  }
}
#merit .image {
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 750px) {
  #merit .image {
    margin-bottom: 50px;
  }
}
#merit .image img {
  margin-bottom: 20px;
}
#merit .border-header {
  background-color: #4a80c0;
}
#merit .border-list {
  margin-top: 0px;
  justify-content: center;
}
#merit .border-list ul li {
  padding-left: 30px;
}
@media (max-width: 750px) {
  #merit .border-list ul li {
    padding-left: 15px;
  }
}

#sec1 {
  background: #ffffff;
  position: relative;
}
#sec1 .flex {
  gap: 92px;
  font-size: 48px;
}
@media (min-width: 751px) and (max-width: 1024px) {
  #sec1 .flex {
    gap: 0px;
    font-size: 32px;
    justify-content: center;
    flex-direction: column;
  }
}
@media (max-width: 750px) {
  #sec1 .flex {
    font-size: 24px;
    justify-content: center;
    flex-direction: column;
    gap: 0px;
  }
}
#sec1 .flex .orange {
  color: #cf8a05;
}
#sec1 .flex .large {
  font-size: 90px;
}
@media (min-width: 751px) and (max-width: 1024px) {
  #sec1 .flex .large {
    font-size: 64px;
  }
}
@media (max-width: 750px) {
  #sec1 .flex .large {
    font-size: 42px;
  }
}
#sec1 .used {
  font-size: 38px;
  color: #0d3660;
  display: inline-block;
  margin-bottom: 86px;
}
@media (min-width: 751px) and (max-width: 1024px) {
  #sec1 .used {
    font-size: 32px;
  }
}
@media (max-width: 750px) {
  #sec1 .used {
    font-size: 16px;
  }
}

#sec2 {
  background: #f8f8f8;
}
#sec2 .border-box {
  margin-top: 100px;
  background-color: #fff;
}
@media (max-width: 750px) {
  #sec2 .border-box {
    margin-top: 50px;
  }
}
#sec2 .flex {
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin: 80px 0;
}
@media (max-width: 750px) {
  #sec2 .flex {
    flex-direction: column;
  }
}
#sec2 .flex p {
  font-size: 20px;
  max-width: 554px;
  letter-spacing: 2px;
}
@media (max-width: 750px) {
  #sec2 .flex p {
    font-size: 14px;
  }
}

#feature {
  background: #fff;
}
#feature .flex {
  margin-top: 80px;
  gap: 80px;
}
@media (min-width: 751px) and (max-width: 1024px) {
  #feature .flex {
    flex-wrap: wrap;
    margin-top: 25px;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}
@media (max-width: 750px) {
  #feature .flex {
    flex-wrap: wrap;
    margin-top: 25px;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}
#feature .flex li {
  text-align: center;
  width: 100%;
  max-width: 348px;
}
@media (min-width: 751px) and (max-width: 1024px) {
  #feature .flex li {
    flex-wrap: wrap;
    display: flex;
    gap: 10px;
    margin: auto;
    max-width: inherit;
  }
}
@media (max-width: 750px) {
  #feature .flex li {
    flex-wrap: wrap;
    display: flex;
    gap: 10px;
    margin: auto;
    max-width: inherit;
  }
  #feature .flex li img {
    width: 20%;
  }
}
#feature .flex li p {
  text-align: left;
  letter-spacing: 2px;
  font-size: 16px;
  margin: auto;
  margin-top: 20px;
}
#feature .flex li p.ttl {
  letter-spacing: 10px;
  font-size: 20px;
  text-align: center;
  background: #4a80c0;
  color: #fff;
}
@media (min-width: 751px) and (max-width: 1024px) {
  #feature .flex li p.ttl {
    width: 100%;
  }
}
@media (max-width: 750px) {
  #feature .flex li p.ttl {
    width: 100%;
  }
}
@media (max-width: 750px) {
  #feature .flex li p {
    font-size: 14px;
    width: 90%;
    margin-top: auto;
    margin: auto;
  }
}
#feature .flex li .feature-box {
  height: 208px;
  border: solid 1px #0d3660;
  margin-bottom: 28px;
}
@media (min-width: 751px) and (max-width: 1024px) {
  #feature .flex li .feature-box {
    width: calc(50% - 10px);
    height: auto;
  }
}
@media (max-width: 750px) {
  #feature .flex li .feature-box {
    width: 100%;
    height: auto;
  }
}
#feature .flex li .feature-box p {
  margin: 0;
  letter-spacing: 1.6px;
}
#feature .flex li .feature-box p.ttl {
  letter-spacing: 10px;
}
#feature .flex li .feature-box p.text {
  margin: 20px;
}
#feature .flex li .result {
  height: 236px;
  border: solid 1px #cf8a05;
}
@media (min-width: 751px) and (max-width: 1024px) {
  #feature .flex li .result {
    height: auto;
  }
}
@media (max-width: 750px) {
  #feature .flex li .result {
    height: auto;
  }
}
#feature .flex li .result p.ttl {
  letter-spacing: 2px;
  background: #f57c01;
}
#feature .flex li .result p.ttl span {
  position: relative;
}
#feature .flex li .result p.ttl span::before {
  position: absolute;
  content: "";
  right: -20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 2px;
  background: #fff;
  transform: rotate(90deg);
}
#feature .flex li .result p.ttl span::after {
  position: absolute;
  content: "";
  right: -19px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
#feature .flex li .feature-heading {
  margin-bottom: 28px;
}
@media (min-width: 751px) and (max-width: 1024px) {
  #feature .flex li .feature-heading {
    width: 100%;
  }
}
@media (max-width: 750px) {
  #feature .flex li .feature-heading {
    width: 100%;
  }
}
#feature .flex li .feature-heading p {
  color: #0d3660;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
#feature .flex li .feature-heading img {
  height: 100px;
  width: auto;
}
#feature .feature-box p {
  font-size: 16px;
}

#popular .balloon {
  margin-top: 88px;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 750px) {
  #popular .balloon {
    margin-top: 44px;
  }
}
#popular .mail-plan {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 750px) {
  #popular .mail-plan {
    margin-top: 25px;
    font-size: 24px;
  }
}
#popular .mail-plan span {
  font-size: 20px;
  color: #0d3660;
  position: relative;
  background: inherit;
  font-weight: bold;
}
#popular .mail-plan span.gradation {
  font-size: 48px;
  font-weight: bold;
  background: linear-gradient(180deg, #6eb944 0%, #194102 100%);
  background: -webkit-linear-gradient(180deg, #6eb944 0%, #194102 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 751px) and (max-width: 1024px) {
  #popular .mail-plan span.gradation {
    font-size: 40px;
  }
}
@media (max-width: 750px) {
  #popular .mail-plan span.gradation {
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  #popular .mail-plan span {
    font-size: 12px;
  }
}
#popular .mail-plan span.border:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background: #0d3660;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
}
#popular .border-box {
  margin-bottom: 22px;
  background-color: #ffffff;
}
#popular .caution {
  color: #0d3660;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 2.8px;
}
@media (max-width: 750px) {
  #popular .caution {
    width: 92%;
    margin: auto;
    font-size: 16px;
  }
}
#popular .caution .marker-yellow:after {
  height: 20px;
}
#popular .caution span {
  font-size: 28px;
}
@media (max-width: 750px) {
  #popular .caution span {
    font-size: 16px;
  }
}

#security .border-box {
  margin-top: 40px;
  background-color: #ffffff;
}
#security .border-box ul li {
  margin-bottom: 24px;
}
#security .border-box ul li:nth-last-child(1) {
  margin-bottom: 0px;
}
@media (max-width: 750px) {
  #security .border-box ul li {
    margin-bottom: 0px;
  }
}

table {
  table-layout: fixed;
  width: 100%;
  text-align: center;
}
table td {
  color: #000000;
  font-weight: 500;
  width: 35%;
  text-align: center;
  border-bottom: solid 1px #0d3660;
  border-right: solid 1px #0d3660;
  height: 80px;
  background: #f2f2f2;
  font-size: 16px;
}
@media (max-width: 750px) {
  table td {
    font-size: 14px;
  }
}
table td:nth-child(2) {
  width: 65%;
  font-weight: bold;
  font-size: 20px;
  border-right: none;
  background: #fff;
}
@media (max-width: 750px) {
  table td:nth-child(2) {
    font-size: 14px;
  }
}
table td .orange {
  color: #cf8a05;
}
table td .robot {
  font-family: "Roboto", sans-serif;
}
table td span {
  font-size: 38px;
}
@media (min-width: 751px) and (max-width: 1024px) {
  table td span {
    font-size: 32px;
  }
}
@media (max-width: 750px) {
  table td span {
    font-size: 24px;
  }
}
table td ul {
  list-style: disc;
  margin: 33px 0;
}
table td ul li {
  text-align: left;
  font-size: 18px;
  font-weight: 300;
  margin-left: 80px;
  position: relative;
  text-indent: 0px;
}
table td ul li::marker {
  font-size: 28px;
}
@media (max-width: 750px) {
  table td ul li {
    margin-left: 40px;
    font-size: 14px;
  }
}
table tr:nth-last-child(1) td {
  border-bottom: none;
}

#download {
  background: url(../img/kagoya-img-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 0;
}
#download .ttl {
  font-size: 22px;
  margin-bottom: 33px;
}
#download .flex {
  gap: 133px;
  justify-content: space-between;
}
@media (min-width: 751px) and (max-width: 1024px) {
  #download .flex {
    align-items: center;
    gap: 80px;
    flex-direction: column;
  }
}
@media (max-width: 750px) {
  #download .flex {
    justify-content: flex-start;
    flex-direction: column;
    gap: 25px;
  }
}
#download .content .flex {
  gap: 18px;
  align-items: center;
  margin-bottom: 40px;
}
@media (min-width: 751px) and (max-width: 1024px) {
  #download .content .flex {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}
@media (max-width: 750px) {
  #download .content .flex {
    flex-direction: row;
    align-items: center;
  }
}
#download .content .flex p {
  font-size: 38px;
  font-weight: bold;
}
@media (min-width: 751px) and (max-width: 1024px) {
  #download .content .flex p {
    font-size: 32px;
  }
}
@media (max-width: 750px) {
  #download .content .flex p {
    align-items: flex-start;
    font-size: 24px;
  }
}
#download .content p {
  font-size: 18px;
}
#download .content p.ttl {
  font-size: 22px;
}
@media (max-width: 750px) {
  #download .content p {
    font-size: 14px;
  }
}
#download .btn {
  align-self: flex-end;
}
@media (min-width: 751px) and (max-width: 1024px) {
  #download .btn {
    align-self: center;
    max-width: 360px;
  }
}
@media (max-width: 750px) {
  #download .btn {
    max-width: 275px;
  }
}

header {
  background: #fff;
  padding: 12px 0;
}
header .flex {
  align-items: center;
  gap: 30px;
}
@media (max-width: 750px) {
  header .flex {
    gap: 25px;
  }
}
header .flex p {
  color: #00418f;
  font-size: 26px;
}
@media (max-width: 750px) {
  header .flex p {
    font-size: 12px;
  }
}
@media (max-width: 750px) {
  header .flex img {
    max-width: 58px;
  }
}
header .head-inner {
  width: 92%;
  margin: auto;
}

footer {
  padding: 50px 0 30px;
  background-color: #e2e2e2;
}
footer .flex {
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (min-width: 751px) and (max-width: 1024px) {
  footer .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .flex a {
    width: 33%;
    text-align: center;
  }
}
@media (max-width: 750px) {
  footer .flex {
    flex-direction: column;
  }
}
footer p {
  text-align: center;
}

.heading {
  text-align: center;
}
@media (max-width: 750px) {
  .heading {
    width: 92%;
    margin: auto;
  }
}/*# sourceMappingURL=style.min.css.map */