@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
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;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

* {
  box-sizing: border-box;
}

body {
  width: 100%;
  height: auto;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  background: #F4F4F4;
  color: #000;
  -webkit-text-size-adjust: 100%;
  text-align: center;
  position: relative;
}

a:link,
a:visited {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

iframe {
  width: 100%;
}

em {
  font-style: italic;
}

.pc,
.pc2 {
  display: none;
}

.sp {
  display: block;
}

@media screen and (min-width: 767px) {
  .pc {
    display: block;
  }
  .pc2 {
    display: inline-block;
  }
  .sp {
    display: none;
  }
}
/**********

header

**********/
header {
  background: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  display: flex;
  align-items: center;
  height: 75px;
}
header .logo {
  width: 50%;
}
header .logo a {
  max-width: 260px;
  display: flex;
  align-items: center;
  gap: 10px;
}
header.dmm .logo {
  text-align: left;
  font-size: 24px;
  font-weight: bold;
}
header.dmm .logo a {
  max-width: 100%;
  width: 100px;
}
header .right-btns {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .right-btns .lang {
  margin-right: 15px;
  cursor: pointer;
  position: relative;
}
header .right-btns .lang::before, header .right-btns .lang::after {
  content: "";
  display: block;
  position: absolute;
}
header .right-btns .lang span {
  font-size: 14px;
  color: #004EA2;
  font-weight: 500;
  display: inline-block;
  padding-right: 22px;
}
header .right-btns .lang::after {
  background: url("../images/icon-lang.svg") no-repeat 0 0;
  width: 18px;
  height: 18px;
  top: 0;
  right: 0;
}
header .right-btns .lang .lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
header .right-btns .lang .lang-menu li {
  margin: 0;
}
header .right-btns .lang .lang-menu li a {
  display: block;
  padding: 10px 25px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
}
header .right-btns .lang .lang-menu li a:hover {
  background-color: #f0f0f0;
}
@media (min-width: 768px) {
  header .right-btns .lang:hover .lang-menu {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 767px) {
  header .right-btns .lang.active .lang-menu {
    opacity: 1;
    visibility: visible;
  }
}
header .right-btns .cta a {
  background: #E66D1F;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 60px 14px 70px;
  border-radius: 7px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: background 0.3s;
}
header .right-btns .cta a::before, header .right-btns .cta a::after {
  content: "";
  display: block;
  position: absolute;
}
header .right-btns .cta a::before {
  background: url("../images/icon-arrow1.svg") no-repeat 0 0;
  width: 20px;
  height: 20px;
  top: 14px;
  left: 45px;
}
header .right-btns .cta a:hover {
  background: #b74200;
}
@media screen and (max-width: 768px) {
  header {
    padding: 15px 10px;
    justify-content: space-between;
    height: 60px;
  }
  header .logo {
    width: 25%;
  }
  header .logo a {
    max-width: 100%;
  }
  header.dmm .logo a {
    font-size: 16px;
  }
  header .right-btns {
    width: 60%;
  }
  header .right-btns .lang {
    width: 35px;
    height: 20px;
    margin-right: 10px;
  }
  header .right-btns .lang span {
    display: none;
  }
  header .right-btns .lang::after {
    left: 0px;
    cursor: pointer;
  }
  header .right-btns .lang::before {
    top: 6px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #004EA2;
    /* 三角形の色 */
  }
  header .right-btns .lang .lang-menu {
    right: -35px;
  }
  header .right-btns .cta a {
    font-size: 16px;
    font-weight: 700;
    padding: 7px 8px 8px 31px;
  }
  header .right-btns .cta a::before {
    width: 20px;
    height: 20px;
    top: 10px;
    left: 8px;
  }
  header.dmm .right-btns {
    width: 20%;
  }
}

/**********

main-visual

**********/
#main-visual {
  background-color: #004EA2;
  padding-top: 75px;
  position: relative;
}

#main-visual .banner a{
  position: absolute;
  right: 40px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  padding: 40px;
  background: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
  line-height: 1.3;
  color: #004EA2;
}
#main-visual .banner a img {
  width: 180px;
}
#main-visual.dmm {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  #main-visual {
    padding-top: 60px;
    padding-bottom: 0;
  }
  #main-visual.dmm {
    padding-top: 48px;
  }
  #main-visual .banner{
    display: none;
  }
}
#main-visual .wrap {
  background: url("../images/2411/img-mv@2x.jpg") no-repeat right center/70%;
  padding: 80px 0 80px 60px;
}
@media screen and (max-width: 768px) {
  #main-visual .wrap {
    background: url("../images/2411/img-mv@2x.jpg") no-repeat bottom center/100%;
    padding: 15px 15px 200px;
  }
}
#main-visual .wrap .contents {
  width: 540px;
  background: #fff;
  margin: 0;
  border-radius: 15px;
  box-shadow: 7px 7px 0px rgba(0, 0, 0, 0.1);
  padding: 10px 30px 70px;
}

#main-visual .wrap .contents .head-copy-top {
  margin-bottom: 32px;
  margin-top: -45px;
  text-align: center;
  position: relative;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #main-visual .wrap .contents .head-copy-top {
    margin-bottom: 40px;
    margin-top: -8vw;
    text-align: center;
    position: relative;
    color: #fff;
  }
}

#main-visual .wrap .contents .head-copy-top .data{
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #main-visual .wrap .contents .head-copy-top .data{
    font-size: 2.5vw;
  }
}
#main-visual .wrap .contents .head-copy  {
  font-size: 14px;
  display: block;
  font-weight: bold;
  text-align: center;
}
#main-visual .wrap .contents .head-copy  span {
  font-size: 14px;
  display: inline-block;
  font-weight: 600;
}

#main-visual .wrap .contents .head-copy  span.mark {
  font-size: 14px;
  display: inline-block;
  font-weight: 400;
  border: none;
  color: #fff;
  background-color: #004EA2;
  padding: 4px 12px;
  border-radius: 5px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  #main-visual .wrap .contents {
    padding: 0 15px 30px;
    width: 100%;
  }
  #main-visual .wrap .contents .head-copy .first {
    font-size: 12px;
  }
  #main-visual .wrap .contents .head-copy .second {
    font-size: 21px;
  }
  #main-visual .wrap .contents.dmm .head-copy .second {
    font-size: 26px;
  }
}
#main-visual .wrap .contents h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 0.9;
  margin-top: 15px;
  color: #004EA2;
}
#main-visual .wrap .contents h1 span {
  display: block;
}
@media screen and (max-width: 768px) {
  #main-visual .wrap .contents h1 {
    font-size: 8.5vw;
    margin-top: 18px;
  }
}
#main-visual .wrap .contents .features-list {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  margin-top: 40px;
  list-style: none;
}
@media screen and (max-width: 768px) {
  #main-visual .wrap .contents .features-list {
    margin-top: 18px;
  }
}
#main-visual .wrap .contents .features-list li {
  width: 33.33%;
  display: flex;
  align-items: center;
}
#main-visual .wrap .contents .features-list li.left-align {
  justify-content: flex-start;
}
#main-visual .wrap .contents .features-list li.left-align div {
  position: relative;
}
#main-visual .wrap .contents .features-list li.left-align div::before, #main-visual .wrap .contents .features-list li.left-align div::after {
  content: "";
  display: block;
  position: absolute;
}
#main-visual .wrap .contents .features-list li.left-align div::before {
  background: url("../images/icon-mv1.svg") no-repeat 0 0;
  width: 28px;
  height: 30px;
  top: 35px;
}
#main-visual .wrap .contents .features-list li.left-align div p {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #main-visual .wrap .contents .features-list li.left-align div::before {
    width: 22px;
    height: 24px;
    top: 23px;
  }
  #main-visual .wrap .contents .features-list li.left-align div p {
    font-size: 11px;
    margin-top: 35px;
  }
}
#main-visual .wrap .contents .features-list li.center-align {
  justify-content: center;
}
#main-visual .wrap .contents .features-list li.center-align div {
  position: relative;
}
#main-visual .wrap .contents .features-list li.center-align div::before, #main-visual .wrap .contents .features-list li.center-align div::after {
  content: "";
  display: block;
  position: absolute;
}
#main-visual .wrap .contents .features-list li.center-align div::before {
  background: url("../images/icon-mv2.svg") no-repeat 0 0;
  width: 45px;
  height: 35px;
  top: 35px;
}
#main-visual .wrap .contents .features-list li.center-align div p {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #main-visual .wrap .contents .features-list li.center-align div::before {
    width: 38px;
    height: 28px;
    top: 21px;
  }
  #main-visual .wrap .contents .features-list li.center-align div p {
    font-size: 11px;
    margin-top: 35px;
  }
}
#main-visual .wrap .contents .features-list li.right-align {
  justify-content: flex-end;
}
#main-visual .wrap .contents .features-list li.right-align div {
  position: relative;
}
#main-visual .wrap .contents .features-list li.right-align div::before, #main-visual .wrap .contents .features-list li.right-align div::after {
  content: "";
  display: block;
  position: absolute;
}
#main-visual .wrap .contents .features-list li.right-align div::before {
  background: url("../images/icon-mv3.svg") no-repeat 0 0;
  width: 45px;
  height: 40px;
  top: 30px;
}
#main-visual .wrap .contents .features-list li.right-align div p {
  margin-top: 40px;
  line-height: 1.3;
  padding-top: 7px;
}
@media screen and (max-width: 768px) {
  #main-visual .wrap .contents .features-list li.right-align div::before {
    width: 35px;
    height: 30px;
    top: 15px;
  }
  #main-visual .wrap .contents .features-list li.right-align div p {
    font-size: 11px;
    padding-top: 0px;
    margin-top: 30px;
  }
}
#main-visual .wrap .contents .features-list li div {
  background-color: #FCE4CF;
  /* 薄いオレンジ色 */
  border-radius: 50%;
  width: 145px;
  /* 円のサイズを適宜調整 */
  height: 145px;
  /* 円のサイズを適宜調整 */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #004EA2;
  font-weight: 700;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #main-visual .wrap .contents .features-list li div {
    width: 25vw;
    height: 25vw;
  }
}
#main-visual .wrap .contents .cta {
  margin: 60px 0 0;
}
#main-visual .wrap .contents .cta a {
  background: #E66D1F;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 14px 70px 18px;
  border-radius: 10px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: background 0.3s;
}
#main-visual .wrap .contents .cta a::before, #main-visual .wrap .contents .cta a::after {
  content: "";
  display: block;
  position: absolute;
}
#main-visual .wrap .contents .cta a::before {
  background: url("../images/icon-arrow1.svg") no-repeat 0 0;
  width: 26px;
  height: 26px;
  top: 20px;
  left: 20px;
}
#main-visual .wrap .contents .cta a:hover {
  background: #b74200;
}
@media screen and (max-width: 768px) {
  #main-visual .wrap .contents .cta {
    margin: 20px 0 0;
  }
  #main-visual .wrap .contents .cta a {
    font-size: 18px;
    padding: 17px 0 20px;
    width: 100%;
    display: block;
  }
  #main-visual .wrap .contents .cta a::before {
    width: 22px;
    height: 22px;
    top: 16px;
  }
}

/**********

slide-logos

**********/
@keyframes slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -180px 0;
  }
}
.slide-logos {
  background: #fff url("../images/logo-white-space.jpg") repeat-x 0 0;
  height: 40px;
  animation: slide 5s linear infinite;
  background-size: 180px auto;
}

/**********

concept

**********/
#concept {
  padding: 100px 5% 0;
}
@media screen and (max-width: 768px) {
  #concept {
    padding: 50px 20px 0;
  }
}
#concept .flex1 {
  text-align: left;
  display: flex;
  align-items: center;
  margin-top: 60px;
}
#concept .flex1 .contents {
  width: 50%;
}
#concept .flex1 .contents h2 {
  font-size: 14px;
  padding-left: 25px;
  position: relative;
}
#concept .flex1 .contents h2::before, #concept .flex1 .contents h2::after {
  content: "";
  display: block;
  position: absolute;
}
#concept .flex1 .contents h2::before {
  width: 20px;
  height: 3px;
  background: #000;
  top: 6px;
  left: 0px;
}
#concept .flex1 .contents h3 {
  font-size: 3.2vw;
  color: #004EA2;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 50px;
}
#concept .flex1 .contents p {
  font-size: 17px;
  line-height: 2.2;
  margin-top: 40px;
}
#concept .flex1 .contents p strong {
  color: #004EA2;
  font-weight: 800;
}
#concept .flex1 figure {
  width: 50%;
  text-align: right;
}
#concept .flex1 figure img {
  width: 90%;
}
@media screen and (max-width: 768px) {
  #concept .flex1 {
    display: block;
  }
  #concept .flex1 .contents {
    width: 100%;
  }
  #concept .flex1 .contents h2 {
    font-size: 13px;
  }
  #concept .flex1 .contents h3 {
    font-size: 6.5vw;
    line-height: 1.5;
    margin-top: 30px;
  }
  #concept .flex1 .contents p {
    margin-top: 25px;
    font-size: 14px;
    line-height: 2;
  }
  #concept .flex1 figure {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
}
#concept .flex2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: baseline;
  width: 85%;
  min-width: 700px;
  max-width: 1100px;
  margin: 70px auto 0;
  align-items: stretch;
}
#concept .flex2 section {
  background: #fff;
  border-radius: 15px;
  padding: 35px;
  border: 1px solid #004EA2;
}
#concept .flex2 section h3 {
  font-size: 20px;
  color: #004EA2;
  font-weight: 600;
}
#concept .flex2 section figure {
  margin-top: 30px;
}
#concept .flex2 section p {
  font-size: 15px;
  line-height: 2;
  text-align: left;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #concept .flex2 {
    min-width: inherit;
    width: 100%;
    display: block;
  }
  #concept .flex2 section {
    margin: 20px 0;
    padding: 30px;
  }
  #concept .flex2 section h3 {
    font-size: 16px;
  }
  #concept .flex2 section p {
    font-size: 14px;
  }
}

/**********

benefits

**********/
#benefits {
  position: relative;
  background: #fff;
  /* ライトグレーの背景色 */
  padding: 100px 0 0;
}
#benefits::before {
  content: "";
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  height: 73%;
  background: #004EA2 url("../images/2411/bg-lightblue.png") repeat center center;
  /* オレンジ色 */
  z-index: 0;
}
#benefits h2 {
  text-align: center;
  background: #0098C1;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  font-size: 36px;
  padding: 18px 20px 22px;
  position: relative;
  /* 擬似要素を使うために必要 */
}
#benefits h2::after {
  content: "";
  position: absolute;
  bottom: -35px;
  /* 三角形の高さ */
  left: 50%;
  transform: translateX(-50%);
  border-width: 35px 35px 0;
  /* 三角形の高さと幅 */
  border-style: solid;
  border-color: #0098C1 transparent transparent transparent;
  /* 三角形の色と透明部分 */
}
@media screen and (max-width: 768px) {
  #benefits {
    margin-top: 70px;
  }
  #benefits::before {
    top: 15%;
    height: 88%;
  }
  #benefits h2 {
    font-size: 20px;
    line-height: 1.4;
    padding: 15px 15px 16px;
  }
}
#benefits .flex {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  position: relative;
  z-index: 1;
  margin: 80px auto 0;
  width: 93%;
  max-width: 1230px;
}
#benefits .flex section {
  background: #fff;
  flex: 1;
  margin: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.15);
}
#benefits .flex section .point {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  padding: 10px;
  border-radius: 0 0 50px 50px;
  color: #0098C1;
  /* オレンジ色 */
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  background: #EFEFEF;
}
#benefits .flex section .point span:first-child {
  font-size: 15px;
}
#benefits .flex section .point span:last-child {
  font-size: 32px;
}
#benefits .flex section figure {
  margin-top: 30px;
}
#benefits .flex section figure img {
  width: auto;
  height: 55px;
}
#benefits .flex section h3 {
  font-size: 17px;
  background: #EFEFEF;
  display: block;
  width: 100%;
  color: #0098C1;
  font-weight: 800;
  padding: 15px 10px 17px;
  margin-top: 25px;
}
#benefits .flex section p {
  font-size: 14px;
  line-height: 2;
  text-align: left;
  padding: 30px;
}
#benefits .flex section p strong {
  background: linear-gradient(transparent 55%, yellow 50%);
  color: inherit;
  /* 強調部分のテキスト色を継承 */
  padding: 0 2px;
  /* テキストと背景の間に少し余白を追加 */
}
@media screen and (max-width: 768px) {
  #benefits .flex {
    display: block;
    width: 95%;
    margin: 60px auto 0;
  }
  #benefits .flex section {
    margin: 30px 20px;
  }
}
#benefits .caution {
  position: relative;
  z-index: 2;
  background: #DCF2F8;
  /* オレンジ色 */
  padding: 20px;
  text-align: center;
  width: 680px;
  margin: 50px auto 0;
}
#benefits .caution p {
  text-align: left;
  font-size: 14px;
  line-height: 2;
  padding-left: 60px;
  position: relative;
}
#benefits .caution p::before, #benefits .caution p::after {
  content: "";
  display: block;
  position: absolute;
}
#benefits .caution p::before {
  content: "!";
  background: #0098C1;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 44px;
  color: #fff;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  text-align: center;
  font-size: 32px;
  left: 0;
  top: 7px;
}
#benefits .caution p strong {
  color: #0098C1;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #benefits .caution {
    width: auto;
    margin: 30px;
    padding: 25px 20px;
  }
  #benefits .caution p {
    padding-left: 0;
    padding-top: 55px;
  }
  #benefits .caution p::before {
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

/**********

features

**********/
#features {
  position: relative;
  margin: 150px 0 0;
}
#features::before {
  content: "";
  position: absolute;
  top: 28%;
  left: 0;
  right: 3.5%;
  height: 78%;
  background: #004EA2 url("../images/bg-green.jpg") repeat center center;
  border-radius: 0 20px 20px 0;
  z-index: 0;
}
#features > figure {
  width: 220px;
  background: #fff;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
}
#features h2 {
  font-weight: 500;
  margin-top: 20px;
}
#features h2 span {
  font-size: 20px;
  color: #004EA2;
  display: block;
}
#features h2 span:last-of-type {
  display: inline-block;
  font-size: 46px;
  font-weight: 600;
  margin-top: 10px;
  border-bottom: 5px solid #004EA2;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #features {
    margin: 100px auto 0;
  }
  #features::before {
    top: 10%;
    right: 5.5%;
    height: 92%;
  }
  #features > figure {
    width: 200px;
    padding: 7px 12px;
  }
  #features h2 span {
    font-size: 18px;
  }
  #features h2 span:last-of-type {
    font-size: 40px;
    padding-bottom: 5px;
    border-bottom: 4px solid #004EA2;
  }
}
#features > .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 60px auto 0;
  width: 90%;
  max-width: 1200px;
  position: relative;
  z-index: 1;
  counter-reset: section;
  /* カウンターのリセット */
}
#features > .flex section {
  margin: 25px 20px;
  flex: 1 1 calc(33.333% - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
#features > .flex section::before {
  content: counter(section);
  counter-increment: section;
  /* カウンターのインクリメント */
  position: absolute;
  top: -25px;
  margin: 0 auto;
  left: 0;
  right: 0;
  background: #004EA2;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}
#features > .flex section figure {
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.08);
}
#features > .flex section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
}
#features > .flex section p {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  text-align: left;
}
#features > .flex section p strong {
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  #features > .flex {
    width: 85%;
    display: block;
  }
  #features > .flex section {
    margin: 60px 20px;
  }
  #features > .flex section figure {
    margin-bottom: 25px;
  }
  #features > .flex section h3 {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  #features > .flex section p {
    font-size: 14px;
  }
}
#features .note {
  background: #e2e2e2;
  position: relative;
  z-index: 2;
  margin: 30px auto 0;
  width: 86%;
  max-width: 1150px;
}
#features .note .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 50px;
}
#features .note .flex h3 {
  font-size: 16px;
  font-weight: bold;
  color: #e55300;
  width: 25%;
  text-align: left;
  align-self: center;
}
#features .note .flex ul {
  width: 75%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#features .note .flex ul li {
  text-align: left;
  width: 47%;
  font-size: 14px;
  line-height: 1.6;
  margin: 5px 10px;
  color: #000;
  list-style: disc;
}
#features .note .flex ul li:nth-child(odd) {
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  #features .note {
    margin: 0px auto 0;
    width: 75%;
  }
  #features .note .flex {
    padding: 30px 20px;
    display: block;
  }
  #features .note .flex h3 {
    width: 100%;
    text-align: center;
    font-size: 17px;
  }
  #features .note .flex ul {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  #features .note .flex ul li {
    width: 100%;
    margin-left: 20px;
  }
}

/**********

lease

**********/
#lease-examples {
  margin: 170px auto 0;
  overflow-x: hidden;
}
#lease-examples h2 {
  display: inline-block;
  font-size: 46px;
  font-weight: 600;
  margin-top: 10px;
  border-bottom: 5px solid #004EA2;
  padding-bottom: 10px;
  color: #004EA2;
}
@media screen and (max-width: 768px) {
  #lease-examples {
    margin: 100px auto 0;
  }
  #lease-examples h2 {
    font-size: 33px;
    padding-bottom: 5px;
    border-bottom: 4px solid #004EA2;
  }
}
#lease-examples section {
  width: 86%;
  max-width: 1160px;
  text-align: left;
  margin: 80px auto 0;
  z-index: 5;
  position: relative;
  position: relative;
}
#lease-examples section::before, #lease-examples section::after {
  content: "";
  display: block;
  position: absolute;
}
#lease-examples section::after {
  background: #fff;
  width: 1000%;
  height: 80%;
  position: absolute;
  top: 14%;
  left: 0;
  z-index: -1;
}
#lease-examples section h3 {
  font-size: 25px;
  font-weight: 800;
  color: #004EA2;
}
@media screen and (max-width: 768px) {
  #lease-examples section {
    width: auto;
    margin: 50px 30px 0;
  }
  #lease-examples section::after {
    width: 100%;
    top: 40px;
  }
  #lease-examples section h3 {
    font-size: 18px;
    text-align: center;
  }
}
#lease-examples section .wrap {
  display: flex;
  align-items: center;
}
#lease-examples section .wrap .contents {
  width: 55%;
  padding: 50px;
}
#lease-examples section .wrap .contents .price {
  color: #004EA2;
  font-weight: 700;
  font-size: 25px;
  display: flex;
  align-items: center;
}
#lease-examples section .wrap .contents .price .num {
  font-size: 53px;
  margin: 0 5px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}
#lease-examples section .wrap .contents h4 {
  font-size: 17px;
  color: #004EA2;
  margin: 30px 0 0;
  font-weight: 600;
  border-bottom: 1px solid #004EA2;
  display: inline-block;
  padding-bottom: 5px;
}
#lease-examples section .wrap .contents p {
  font-size: 15px;
  margin: 10px 0 0;
  line-height: 1.4;
}
#lease-examples section .wrap figure {
  width: 45%;
}
#lease-examples section .wrap figure img {
  border-radius: 18px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  #lease-examples section .wrap {
    display: block;
  }
  #lease-examples section .wrap .contents {
    width: auto;
    padding: 50px 30px 30px;
    text-align: center;
  }
  #lease-examples section .wrap .contents .price {
    font-size: 20px;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
  }
  #lease-examples section .wrap .contents .price .num {
    font-size: 44px;
  }
  #lease-examples section .wrap .contents h4 {
    margin: 25px 0 0;
  }
  #lease-examples section .wrap .contents p {
    text-align: left;
  }
  #lease-examples section .wrap figure {
    width: 105%;
    margin-left: -2.5%;
  }
}
#lease-examples section:last-of-type h3 {
  text-align: right;
}
#lease-examples section:last-of-type::after {
  right: 0;
  left: inherit;
}
#lease-examples section:last-of-type .wrap .contents {
  order: 2;
}
#lease-examples section:last-of-type .wrap figure {
  order: 1;
}
@media screen and (max-width: 768px) {
  #lease-examples section:last-of-type h3 {
    text-align: center;
  }
}
#lease-examples .note1 {
  text-align: right;
  width: 86%;
  max-width: 1160px;
  margin: 0 auto;
}
#lease-examples .note2 {
  background: url("../images/bg-light-orange.jpg") repeat center center;
  margin: 90px auto 0;
  width: 86%;
  max-width: 1160px;
  font-size: 22px;
  color: #004EA2;
  font-weight: 700;
  line-height: 1.7;
  padding: 50px 20px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #lease-examples .note1 {
    width: auto;
    margin: 30px;
    text-align: left;
  }
  #lease-examples .note2 {
    margin: 50px 20px 0;
    width: auto;
    padding: 30px 25px;
    font-size: 18px;
  }
}

/**********

flow

**********/
#service-flow {
  background: #fff;
  margin-top: -85px;
  padding: 280px 0 10px;
}
#service-flow h2 {
  display: inline-block;
  font-size: 36px;
  font-weight: 600;
  margin-top: 10px;
  border-bottom: 5px solid #004EA2;
  padding-bottom: 10px;
  color: #004EA2;
}
@media screen and (max-width: 768px) {
  #service-flow {
    margin-top: -100px;
    padding: 160px 0 1px;
  }
  #service-flow h2 {
    font-size: 24px;
    border-bottom: 4px solid #004EA2;
    padding-bottom: 7px;
  }
}
#service-flow ol {
  margin: 50px auto 0;
  width: 86%;
  max-width: 1160px;
}
@media screen and (max-width: 768px) {
  #service-flow ol {
    width: auto;
    margin: 50px 25px 60px;
  }
}
#service-flow ol li {
  display: flex;
  align-items: center;
  margin-bottom: 120px;
  position: relative;
  padding: 30px;
  background: #fff;
}
#service-flow ol li::before, #service-flow ol li::after {
  content: "";
  display: block;
  position: absolute;
}
#service-flow ol li:first-child {
  margin-top: 80px;
}
#service-flow ol li:nth-child(odd) {
  border: 1px solid #e6e6e6;
}
#service-flow ol li:nth-child(even) {
  background: #F2F2F2;
}
#service-flow ol li::after {
  background: url("../images/2411/icon-arrow-down.svg") no-repeat;
  width: 26px;
  height: 42px;
  left: 0;
  right: 0;
  bottom: -80px;
  margin: 0 auto;
}
#service-flow ol li:last-child::after {
  display: none;
}
@media screen and (max-width: 768px) {
  #service-flow ol li {
    padding: 25px;
    margin-bottom: 100px;
  }
  #service-flow ol li::after {
    bottom: -70px;
  }
  #service-flow ol li:last-child {
    margin-bottom: 0;
  }
}
#service-flow ol li .step {
  display: flex;
  align-items: center;
  width: 100%;
}
#service-flow ol li .step figure {
  margin: 0 20px 0 0;
  flex-shrink: 0;
  position: relative;
  width: 190px;
}
#service-flow ol li .step figure img {
  border-radius: 50%;
  width: 190px;
  height: 190px;
  border: 1px solid #004EA2;
  padding: 5px;
  position: absolute;
  top: -100px;
  left: 0;
}
#service-flow ol li .step .step-number {
  counter-increment: step-counter;
  font-size: 20px;
  color: #004EA2;
  font-weight: 300;
  margin-right: 30px;
  font-style: italic;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  display: flex;
  align-items: center;
}
#service-flow ol li .step .step-number span:last-of-type {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  margin-left: 10px;
}
#service-flow ol li .step .step-content {
  text-align: left;
}
#service-flow ol li .step .step-content h3 {
  font-size: 22px;
  color: #004EA2;
  margin: 0 0 10px 0;
  font-weight: 600;
}
#service-flow ol li .step .step-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
#service-flow ol li .step .step-content p a {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  #service-flow ol li .step {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  #service-flow ol li .step figure {
    width: 136px;
  }
  #service-flow ol li .step figure img {
    width: 136px;
    height: 136px;
    top: -50px;
  }
  #service-flow ol li .step .step-number {
    flex: none;
    margin: 10px 20px 10px 0;
  }
  #service-flow ol li .step .step-content {
    flex-basis: 100%;
    margin-top: 45px;
    text-align: center;
  }
  #service-flow ol li .step .step-content h3 {
    margin: 0 0 15px;
  }
}

/**********

cta

**********/
#cta {
  padding: 70px 0 0 0;
  border-radius: 10px;
  margin: 0 auto;
}
#cta h2 {
  display: inline-block;
  font-size: 35px;
  font-weight: 600;
  margin-top: 10px;
  padding-bottom: 10px;
  color: #004EA2;
}
@media screen and (max-width: 768px) {
  #cta {
    padding-top: 40px;
    margin: 0 20px;
  }
  #cta h2 {
    font-size: 24px;
    padding: 0;
  }
}
#cta form {
  margin: 50px auto 0;
  width: 80%;
  padding: 80px 80px 30px;
  max-width: 1100px;
  text-align: left;
  background: #fff;
  border-radius: 15px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  #cta form {
    margin: 40px 0;
    width: auto;
    padding: 35px 25px 20px;
  }
}
#cta form .form-group {
  margin-bottom: 35px;
}
#cta form .form-group > label {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}
#cta form .form-group > label .required {
  background: #004EA2;
  color: #fff;
  padding: 1px 15px 2px;
  font-size: 12px;
  margin-left: 7px;
}
#cta form .form-group > label:first-of-type {
  font-weight: 500;
  margin-bottom: 20px;
}
#cta form .form-group input[type=text],
#cta form .form-group input[type=email],
#cta form .form-group input[type=tel],
#cta form .form-group textarea {
  padding: 10px;
  font-size: 16px;
  border: none;
  background: #F4F4F4;
  font-family: "Noto Sans JP", sans-serif;
}
#cta form .form-group textarea {
  height: 150px;
  padding: 10px;
  font-size: 16px;
  border: none;
  background: #F4F4F4;
  font-family: "Noto Sans JP", sans-serif;
}
#cta form .form-group .w100 {
  width: 100%;
}
#cta form .form-group .zip {
  width: 130px;
}
@media screen and (max-width: 768px) {
  #cta form .form-group {
    margin-bottom: 25px;
  }
  #cta form .form-group > label {
    font-size: 16px;
  }
  #cta form .form-group > label:first-of-type {
    margin-bottom: 15px;
  }
  #cta form .form-group input[type=text],
  #cta form .form-group input[type=email],
  #cta form .form-group input[type=tel],
  #cta form .form-group textarea {
    font-size: 15px;
  }
}
#cta form .form-group #inquiry-type,
#cta form .form-group #housing-info,
#cta form .form-group #method,
#cta form .form-group #contact-time,
#cta form .form-group #interests {
  display: flex;
  gap: 20px;
  text-align: left;
  padding-top: 3px;
}
#cta form .form-group #inquiry-type input[type=radio], #cta form .form-group #inquiry-type input[type=checkbox],
#cta form .form-group #housing-info input[type=radio],
#cta form .form-group #housing-info input[type=checkbox],
#cta form .form-group #method input[type=radio],
#cta form .form-group #method input[type=checkbox],
#cta form .form-group #contact-time input[type=radio],
#cta form .form-group #contact-time input[type=checkbox],
#cta form .form-group #interests input[type=radio],
#cta form .form-group #interests input[type=checkbox] {
  margin-right: -10px;
}
#cta form .form-group #inquiry-type label,
#cta form .form-group #housing-info label,
#cta form .form-group #method label,
#cta form .form-group #contact-time label,
#cta form .form-group #interests label {
  font-size: 16px;
}
#cta form .form-group button[type=button] {
  background: #B3B3B3;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
  margin-left: 5px;
  transition: background 0.3s;
}
#cta form .form-group button[type=button]:hover {
  background: black;
}
#cta form .form-group h3 {
  background: #E6E6E6;
  text-align: center;
  padding: 18px 20px 20px;
  font-size: 18px;
}
#cta form .form-group .frame {
  background: #fff;
  padding: 20px;
  height: 200px;
  overflow-y: scroll;
  border-radius: 5px;
  margin-top: 15px;
  border: 1px solid #e6e6e6;
  line-height: 1.8;
  font-size: 15px;
}
#cta form .form-group .frame p {
  margin-bottom: 25px;
}
#cta form .form-group .frame p strong {
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 768px) {
  #cta form .form-group #inquiry-type,
  #cta form .form-group #housing-info,
  #cta form .form-group #method,
  #cta form .form-group #contact-time,
  #cta form .form-group #interests {
    display: block;
    gap: 10px;
    text-align: left;
  }
  #cta form .form-group #inquiry-type input[type=radio], #cta form .form-group #inquiry-type input[type=checkbox],
  #cta form .form-group #housing-info input[type=radio],
  #cta form .form-group #housing-info input[type=checkbox],
  #cta form .form-group #method input[type=radio],
  #cta form .form-group #method input[type=checkbox],
  #cta form .form-group #contact-time input[type=radio],
  #cta form .form-group #contact-time input[type=checkbox],
  #cta form .form-group #interests input[type=radio],
  #cta form .form-group #interests input[type=checkbox] {
    margin-right: 0px;
  }
  #cta form .form-group #inquiry-type label,
  #cta form .form-group #housing-info label,
  #cta form .form-group #method label,
  #cta form .form-group #contact-time label,
  #cta form .form-group #interests label {
    font-size: 15px;
    line-height: 1.4;
  }
  #cta form .form-group h3 {
    font-size: 15px;
    padding: 15px;
    font-weight: 500;
  }
  #cta form .form-group .frame {
    padding: 15px;
    font-size: 12px;
  }
}
#cta form button[type=submit] {
  margin: 0 auto;
  display: inline-block;
  background: #E66D1F;
  color: #fff;
  border: none;
  padding: 15px 130px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  transition: background 0.3s;
}
#cta form button[type=submit]:hover {
  background: #b74200;
}
@media screen and (max-width: 768px) {
  #cta form button[type=submit] {
    padding: 12px 80px;
    margin-top: 10px;
  }
}

/**********

modal

**********/
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
.modal .modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
  text-align: left;
  line-height: 1.8;
}
.modal .modal-content h2 {
  font-size: 22px;
  text-align: center;
  color: #004EA2;
  margin-bottom: 20px;
}
.modal .modal-content .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.modal .modal-content .close:hover, .modal .modal-content .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal .modal-content dl {
  margin: 0;
  /* javascriptcheckの表示を制御 */
}
.modal .modal-content dl dt {
  font-weight: bold;
  font-size: 16px;
}
.modal .modal-content dl dd {
  margin-left: 0;
  margin-bottom: 10px;
}
.modal .modal-content dl dt:contains("javascriptcheck"),
.modal .modal-content dl dd:contains("enabled") {
  display: none;
}
.modal .modal-content .btn-container {
  text-align: center;
  margin-top: 20px;
}
.modal .modal-content .btn-container .btn-submit {
  display: inline-block;
  background-color: #004EA2;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.modal .modal-content .btn-container .btn-submit:hover {
  background-color: #013F83;
}
.modal .modal-content .btn-container .btn-cancel {
  display: inline-block;
  background-color: #ccc;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin-left: 10px;
}
.modal .modal-content .btn-container .btn-cancel:hover {
  background-color: #999;
}

/**********

profile

**********/
#profile {
  background: #fff;
  margin-top: 100px;
  padding-top: 80px;
}
#profile h2 {
  font-size: 35px;
  font-weight: 500;
  color: #004EA2;
}
@media screen and (max-width: 768px) {
  #profile {
    margin-top: 60px;
    padding-top: 45px;
  }
  #profile h2 {
    font-size: 25px;
  }
}
#profile .wrap {
  margin: 50px auto 0;
  width: 80%;
  max-width: 1100px;
  border: 1px solid #e6e6e6;
  border-radius: 15px;
  position: relative;
  z-index: 5;
  background: #fff;
}
#profile .wrap .achievement {
  border: 1px solid #004EA2;
  background: #fff;
  display: inline-block;
  padding: 8px 20px 12px;
  font-size: 16px;
  border-radius: 60px;
  margin-top: -20px;
}
#profile .wrap .achievement .orange {
  font-size: 22px;
  color: #004EA2;
  font-weight: 700;
  margin: 0 5px;
}
#profile .wrap figure {
  width: 190px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  #profile .wrap {
    width: auto;
    margin: 70px 20px 0;
  }
  #profile .wrap .achievement {
    line-height: 1.3;
    margin-top: -40px;
  }
  #profile .wrap figure {
    margin: 30px auto 0;
  }
}
#profile .wrap dl {
  width: 600px;
  margin: 35px auto 50px;
  text-align: left;
  font-size: 16px;
  line-height: 1.4;
}
#profile .wrap dl .row {
  display: flex;
  margin-bottom: 25px;
}
#profile .wrap dl .row dt {
  width: 25%;
  font-weight: bold;
}
#profile .wrap dl .row dd {
  width: 75%;
}
@media screen and (max-width: 768px) {
  #profile .wrap dl {
    width: auto;
    margin: 30px 20px;
    font-size: 13px;
  }
  #profile .wrap dl .row {
    margin-bottom: 15px;
  }
}

/**********

footer

**********/
footer {
  background: url("../images/2411/bg-lightblue.png") repeat;
  padding: 80px 30px 35px;
  color: #fff;
  z-index: 0;
  line-height: 1.6;
  position: relative;
  margin-top: -50px;
}/*# sourceMappingURL=style.css.map */


.item-banner {
  margin: 20px auto 0;
  display: none;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .item-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #004EA2;
    line-height: 1.3;
  }
}