@charset "UTF-8";
@media (max-width: 750px) {
  .sp-none {
    display: none !important;
  }
}

.pc-none {
  display: none !important;
}

@media (max-width: 750px) {
  .pc-none {
    display: block !important;
  }
}

@media (max-width: 750px) {
  .pc-none.inline {
    display: inline !important;
  }
}

/*--------------------------
reset
--------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
select,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

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

fieldset,
img {
  border: 0;
}

address,
button,
caption,
cite,
code,
dfn,
em,
input,
optgroup,
option,
select,
strong,
textarea,
th,
var {
  font: inherit;
}

del,
ins {
  text-decoration: none;
}

li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

legend {
  color: #000;
}

select,
input,
textarea,
button {
  font: 99% arial, helvetica, clean, sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

img {
  font-size: 0;
  vertical-align: middle;
  line-height: 1;
}

a {
  overflow: hidden;
  outline: none;
}

body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #333;
  -webkit-text-size-adjust: 100%;
  -ms-overflow-style: auto;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/*
body::-webkit-scrollbar {
  display: none;
}
*/

/*font
--------------------*/
body {
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

@font-face {
  font-family: "TsukuARdGothic-Bold";
  src: url("../fonts/TsukuARdGothic-Bold.otf") format("opentype"),
    url("../fonts/TsukuARdGothic-Bold.woff") format("woff");
}

.tsukushi {
  font-family: "TsukuARdGothic-Bold";
}

.header {
  position: relative;
  background: #fff;
  width: 100%;
  /*JSを使いfixedクラスが付与された際の設定*/
  -webkit-box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.header.fixed {
  position: fixed;
  /*fixedを設定して固定*/
  z-index: 999;
  /*最前面へ*/
  top: 0;
  /*位置指定*/
  left: 0;
  /*位置指定*/
  width: 100%;
  background: #fff;
}

@media (max-width: 750px) {
  .header.fixed {
    display: none;
  }
}

@media (max-width: 750px) {
  .header {
    position: static;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.header-inner {
  padding: calc(13 / 1400 * 100vw) calc(22 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .header-inner {
    padding: calc(8 / 375 * 100vw);
  }
}

.header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header-left h1 {
  width: calc(280 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .header-left h1 {
    width: calc(180 / 375 * 100vw);
  }
}

.header-left h1 img {
  width: 100%;
}

.header-left p {
  font-size: calc(16 / 1400 * 100vw);
  margin-top: 5px;
  text-align: center;
  width: 100%;
  background: #e2ebfa;
}

@media (max-width: 750px) {
  .header-left p {
    font-size: calc(13 / 375 * 100vw);
  }
}

.header-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-nav-list-item {
  font-size: calc(16 / 1400 * 100vw);
  font-weight: bold;
}

.header-nav-list-item:hover {
  cursor: pointer;
  opacity: 0.8;
}

.header-nav-list-item i {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  margin-left: 5px;
}

.header-nav-list-item.active i {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.header-nav-list-item a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: calc(16 / 1400 * 100vw);
}

.header-nav-list-item a img {
  width: calc(331 / 1400 * 100vw);
}

.header-nav-list-item:not(:first-child) {
  margin-left: calc(30 / 1400 * 100vw);
}

.header-nav-list-item:last-child {
  text-align: center;
}

.header-nav-list-item:last-child p {
  color: #0a45a5;
  font-weight: bold;
  font-size: calc(14 / 1400 * 100vw);
}

.header-nav-list-item:last-child a {
  position: relative;
  color: #0a45a5;
  display: block;
  text-align: center;
  font-size: calc(24 / 1400 * 100vw);
  width: calc(258 / 1400 * 100vw);
  height: calc(50 / 1400 * 100vw);
  line-height: calc(50 / 1400 * 100vw);
  border-radius: calc(25 / 1400 * 100vw);
  background: #f9ca36;
  letter-spacing: 0.12em;
  -webkit-box-shadow: 6px 6px #0a45a5;
  box-shadow: 6px 6px #0a45a5;
}

.header-nav-list-item:last-child a i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: calc(15 / 1400 * 100vw);
}

.header-content {
  display: none;
  position: absolute;
  z-index: 10;
  right: 0;
  top: calc(87 / 1400 * 100vw);
  -webkit-box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.16);
}

.header-content-list {
  background: #e2ebfa;
  width: calc(928 / 1400 * 100vw);
  padding: calc(32 / 1400 * 100vw);
  margin-top: calc(10 / 1400 * 100vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-content-list-item {
  border-radius: calc(20 / 1400 * 100vw);
  width: calc((100% - 32px) / 2);
  background: #fff;
  padding: calc(40 / 1400 * 100vw);
}

.header-content-list-item p {
  color: #0a45a5;
  font-size: calc(26 / 1400 * 100vw);
  font-weight: bold;
  text-align: center;
}

.header-content-list-item a {
  display: block;
  position: relative;
  width: calc(331 / 1400 * 100vw);
  height: calc(54 / 1400 * 100vw);
  margin-top: calc(15 / 1400 * 100vw);
  line-height: calc(54 / 1400 * 100vw);
  border-radius: calc(27 / 1400 * 100vw);
  color: #fff;
  font-size: calc(18 / 1400 * 100vw);
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  background: #0a45a5;
  -webkit-box-shadow: 3px 3px 6px rgba(10, 69, 165, 0.4);
  box-shadow: 3px 3px 6px rgba(10, 69, 165, 0.4);
}

.header-content-list-item a i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: calc(16 / 1400 * 100vw);
}

.header-content-list-item:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: calc(32 / 1400 * 100vw);
}

.header-content-list-item:last-child .blog-thumbnail {
  width: calc(109 / 1400 * 100vw);
}

.header-content-list-item:last-child div {
  width: calc(227 / 1400 * 100vw);
}

.header-content-list-item:last-child a {
  width: 100%;
}

@media (max-width: 750px) {
  .drawer-menu {
    /*========= ナビゲーションのためのCSS ===============*/
    /*アクティブクラスがついたら位置を0に*/
    /*ナビゲーションの縦スクロール*/
    /*ナビゲーション*/
    /*リストのレイアウト設定*/
    /*========= ボタンのためのCSS ===============*/
    /*×に変化*/
  }
  .drawer-menu #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 998;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    background: #fff;
    /*動き*/
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .drawer-menu #g-nav.panelactive {
    top: 0;
  }
  .drawer-menu #g-nav.panelactive #g-nav-cover {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 997;
    background: rgba(0, 0, 0, 0.5);
    display: block;
  }
  .drawer-menu #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    overflow: auto;
    background: #fff;
    -webkit-overflow-scrolling: touch;
  }
  .drawer-menu #g-nav ul {
    margin-top: 40px;
    width: 100%;
  }
  .drawer-menu #g-nav li {
    list-style: none;
    position: relative;
  }
  .drawer-menu #g-nav li:not(:last-child) {
    border-bottom: 1px solid #e6e6e6;
  }
  .drawer-menu #g-nav li i {
    position: absolute;
    right: 20px;
    top: 0;
    -webkit-transform: translateY(100%) rotate(-90deg);
    transform: translateY(100%) rotate(-90deg);
  }
  .drawer-menu #g-nav li .accordion-box {
    display: none;
    /*はじめは非表示*/
    background: #f3f3f3;
  }
  .drawer-menu #accordion-title {
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  .drawer-menu #accordion-title span {
    display: inline-block;
    padding: 10px 20px;
  }
  .drawer-menu #accordion-title.close i {
    top: 0px;
    -webkit-transform: translateY(100%) rotate(90deg);
    transform: translateY(100%) rotate(90deg);
  }
  .drawer-menu #g-nav li a {
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  .drawer-menu .g-nav-logo {
    width: 210px;
    display: block;
    padding-top: 24px;
    margin: 0 auto;
  }
  .drawer-menu .openbtn1 {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 7px;
    right: 10px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    background: #fff;
    -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  }
  .drawer-menu .openbtn1 span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 13px;
    height: 2px;
    border-radius: 2px;
    background-color: #0a45a5;
    width: 45%;
  }
  .drawer-menu .openbtn1 span:nth-of-type(1) {
    top: 8px;
  }
  .drawer-menu .openbtn1 span:nth-of-type(2) {
    top: 14px;
  }
  .drawer-menu .openbtn1 span:nth-of-type(3) {
    top: 20px;
  }
  .drawer-menu .openbtn1 span:nth-of-type(3):after {
    content: "Menu";
    position: absolute;
    top: 5px;
    left: -5px;
    color: #0a45a5;
    font-size: 0.6rem;
    text-transform: uppercase;
  }
  .drawer-menu .openbtn1.active span:nth-of-type(1) {
    top: 15px;
    left: 15px;
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .drawer-menu .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }
  .drawer-menu .openbtn1.active span:nth-of-type(3) {
    top: 27px;
    left: 15px;
    -webkit-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  .drawer-menu .openbtn1.active span:nth-of-type(3):after {
    content: "Close";
    -webkit-transform: translate(7px, -2px) rotate(-45deg);
    transform: translate(7px, -2px) rotate(-45deg);
  }
}

.kv4 {
  background-image: url(../img/key-visual/kv4.jpg?1);
  background-size: cover;
  height: calc(710 / 1400 * 100vw);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.kv5 {
  background-image: url(../img/key-visual/kv5.jpg);
  background-size: cover;
  height: calc(710 / 1400 * 100vw);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}


.kv {
  background-image: url(../img/key-visual/key-visual3.jpg);
  background-size: cover;
  height: calc(710 / 1400 * 100vw);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.kv2 {
  background-image: url(../img/key-visual/key-visual2.jpg);
  background-size: cover;
  height: calc(710 / 1400 * 100vw);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.kv3 {
  background-image: url(../img/key-visual/key-visual.jpg);
  background-size: cover;
  height: calc(710 / 1400 * 100vw);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 750px) {
  .kv {
    background-image: url(../img/key-visual/key-visual3-sp.jpg);
    height: calc(502 / 375 * 100vw);
    display: inherit;
    -webkit-box-pack: none;
    -ms-flex-pack: none;
    justify-content: none;
  }
  .kv2 {
    background-image: url(../img/key-visual/key-visual2-sp.jpg);
    height: calc(502 / 375 * 100vw);
    display: inherit;
    -webkit-box-pack: none;
    -ms-flex-pack: none;
    justify-content: none;
  }
  .kv3 {
    background-image: url(../img/key-visual/key-visual-sp.png);
    height: calc(502 / 375 * 100vw);
    display: inherit;
    -webkit-box-pack: none;
    -ms-flex-pack: none;
    justify-content: none;
  }
  .kv4 {
    background-image: url(../img/key-visual/kv4-sp.jpg);
    height: calc(502 / 375 * 100vw);
    display: inherit;
    -webkit-box-pack: none;
    -ms-flex-pack: none;
    justify-content: none;
  }
  .kv5 {
    background-image: url(../img/key-visual/kv5-sp.jpg);
    height: calc(502 / 375 * 100vw);
    display: inherit;
    -webkit-box-pack: none;
    -ms-flex-pack: none;
    justify-content: none;
  }


}

.kv-wrap {
  max-width: 1200px;
  width: 100%;
}

@media (max-width: 750px) {
  .kv-wrap {
    max-width: inherit;
    width: inherit;
  }
}

.kv-wrap h2 {
  margin-top: 165px;
  display: inline-block;
  font-size: 34px;
  font-weight: bold;
}

@media (max-width: 750px) {
  .kv-wrap h2 {
    margin-top: 56px;
    padding-left: 16px;
    font-size: calc(16 / 375 * 100vw) !important;
    padding: calc(30 / 1400 * 100vw) calc(60 / 1400 * 100vw);
    line-height: 1.875;
    font-size: calc(32 / 1400 * 100vw);
  }
}

.kv-bottom {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: calc(30 / 1400 * 100vw) calc(10 / 1400 * 100vw);
  color: #fff;
  background: #0a45a5;
}

@media (max-width: 750px) {
  .kv-bottom {
    padding: calc(10 / 375 * 100vw);
  }
}

.kv-bottom p {
  font-weight: bold;
  font-size: calc(26 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .kv-bottom p {
    font-size: calc(20 / 375 * 100vw);
  }
}

.kv-bottom ul {
  margin-top: calc(15 / 1400 * 100vw);
  padding-left: calc(30 / 1400 * 100vw);
}

.kv-bottom ul li {
  list-style: unset;
  font-weight: bold;
  font-size: calc(18 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .kv-bottom ul li {
    font-size: calc(12 / 375 * 100vw);
  }
}

.kv-bottom2 {
  position: relative;
  margin-top: -46px;
  width: 100%;
  bottom: 0;
}

@media (max-width: 750px) {
  .kv-bottom2 {
    margin-top: inherit;
  }
}

.kv-bottom2-heading,
.kv-bottom2-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.kv-bottom2-heading {
  background: #fff;
  height: 196px;
}

.kv-bottom2-heading p {
  color: #0a45a5;
  text-align: center;
  color: inherit;
}

.kv-bottom2-heading p span {
  color: #0a45a5;
}

@media (max-width: 750px) {
  .kv-bottom2-heading {
    height: 118px;
  }
}

.kv-bottom2-content {
  background: #0a45a5;
  color: #fff;
  height: 240px;
  padding: 20px, 0, 20px, 0;
}

@media (max-width: 750px) {
  .kv-bottom2-content {
    height: inherit;
    padding: 20px 34px 20px 44px;
  }
}

.kv-bottom2 p {
  font-weight: bold;
  font-size: calc(26 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .kv-bottom2 p {
    font-size: calc(20 / 375 * 100vw);
  }
}

.kv-bottom2 ul {
  padding-left: calc(30 / 1400 * 100vw);
}

.kv-bottom2 ul li {
  list-style: unset;
  font-size: calc(26 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .kv-bottom2 ul li {
    font-size: calc(20 / 375 * 100vw);
  }
  .kv-bottom2 ul li:not(:first-child) {
    margin-top: 16px;
  }
}

.service h2 {
  font-size: calc(32 / 1400 * 100vw);
  font-weight: bold;
  text-align: center;
  margin-top: calc(80 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .service h2 {
    font-size: calc(22 / 375 * 100vw);
    margin-top: calc(40 / 375 * 100vw);
  }
}

.service h2 span {
  color: #0a45a5;
}

.service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: calc(40 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .service-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.service-list-item {
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  width: calc((100% - 40px) / 2);
  text-align: center;
  padding: 2.64286vw 2.28571vw 2.28571vw 2.28571vw;
}

@media (max-width: 750px) {
  .service-list-item {
    width: 100%;
    padding: 6.4vw 5.6vw 5.6vw 5.6vw;
  }
}

.service-list-item img {
  width: 100%;
}

.service-list-item:first-child {
  margin-bottom: calc(16 / 375 * 100vw);
}

.service-list-item:first-child img {
  width: calc(103 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .service-list-item:first-child img {
    width: calc(67 / 375 * 100vw);
  }
}

.service-list-item:first-child ul li {
  position: relative;
  width: 100%;
  background: #e2ebfa;
  margin-top: calc(23 / 1400 * 100vw);
  height: calc(50 / 1400 * 100vw);
  line-height: calc(50 / 1400 * 100vw);
  font-size: calc(24 / 1400 * 100vw);
  font-weight: bold;
}

@media (max-width: 750px) {
  .service-list-item:first-child ul li {
    margin-top: calc(11 / 375 * 100vw);
    height: calc(32 / 375 * 100vw);
    line-height: calc(32 / 375 * 100vw);
    font-size: calc(15 / 375 * 100vw);
  }
}

.service-list-item:first-child ul li i {
  position: absolute;
  top: 50%;
  left: calc(34 / 1400 * 100vw);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #0a45a5;
}

@media (max-width: 750px) {
  .service-list-item:first-child ul li i {
    font-size: calc(25 / 375 * 100vw);
    left: calc(21 / 375 * 100vw);
  }
}

.service-list-item:last-child img {
  width: calc(94 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .service-list-item:last-child img {
    width: calc(61 / 375 * 100vw);
  }
}

.service-list-item:last-child .service-list-item-text {
  margin-bottom: calc(35 / 1400 * 100vw);
}

.service-list-item-text {
  margin-top: calc(40 / 1400 * 100vw);
  font-weight: bold;
  font-size: calc(26 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .service-list-item-text {
    margin-top: calc(27 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
}

.service-list-item-text2 {
  margin-top: calc(20 / 1400 * 100vw);
  font-weight: bold;
  font-size: calc(38 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .service-list-item-text2 {
    margin-top: calc(13 / 375 * 100vw);
    font-size: calc(24 / 375 * 100vw);
  }
}

.service-list-item-caption {
  margin-top: calc(10 / 1400 * 100vw);
  font-weight: bold;
  font-size: calc(20 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .service-list-item-caption {
    margin-top: calc(14 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
  }
}

.service-description {
  text-align: center;
  margin-top: calc(40 / 1400 * 100vw);
  font-size: calc(22 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .service-description {
    text-align: left;
    font-size: calc(16 / 375 * 100vw);
    margin-top: calc(24 / 375 * 100vw);
  }
}

.service-bottom {
  display: block;
  width: 100%;
  margin-top: calc(40 / 1400 * 100vw);
}

.case {
  margin-top: calc(150 / 1400 * 100vw);
}

.case-swiper {
  position: relative;
  margin: calc(60 / 1400 * 100vw) auto 0;
}

@media (max-width: 750px) {
  .case-swiper {
    width: calc(267 / 375 * 100vw);
  }
}

.case-swiper-item {
  width: calc(300 / 1400 * 100vw);
  font-size: calc(16 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .case-swiper-item {
    width: 100%;
    font-size: calc(16 / 375 * 100vw);
    font-weight: medium;
  }
}

.case-swiper-item h3 {
  font-size: calc(22 / 1400 * 100vw);
  font-weight: bold;
}

@media (max-width: 750px) {
  .case-swiper-item h3 {
    font-size: calc(22 / 375 * 100vw);
  }
}

.case-swiper-item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: calc(8 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .case-swiper-item-info {
    margin-top: calc(8 / 375 * 100vw);
  }
}

.case-swiper-item-info label {
  width: calc(74 / 1400 * 100vw);
  text-align: center;
  background: #e2ebfa;
}

@media (max-width: 750px) {
  .case-swiper-item-info label {
    width: calc(74 / 375 * 100vw);
  }
}

.case-swiper-item-info p {
  width: 80%;
  margin-left: calc(8 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .case-swiper-item-info p {
    margin-left: calc(8 / 375 * 100vw);
  }
}

.case-swiper .swiper-button-prev,
.case-swiper .swiper-button-next {
  background: #0a45a5;
  width: calc(40 / 1400 * 100vw);
  height: calc(40 / 1400 * 100vw);
  position: absolute;
  z-index: 1;
}

@media (max-width: 750px) {
  .case-swiper .swiper-button-prev,
  .case-swiper .swiper-button-next {
    width: calc(38 / 375 * 100vw);
    height: calc(38 / 375 * 100vw);
  }
}

.case-swiper .swiper-button-prev::after,
.case-swiper .swiper-button-next::after {
  display: none;
}

.case-swiper .swiper-button-prev i,
.case-swiper .swiper-button-next i {
  color: #fff;
}

.case-swiper .swiper-button-prev {
  left: calc(-80 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .case-swiper .swiper-button-prev {
    left: calc(-50 / 375 * 100vw);
  }
}

.case-swiper .swiper-button-next {
  right: calc(-80 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .case-swiper .swiper-button-next {
    right: calc(-50 / 375 * 100vw);
  }
}

.case-link {
  position: relative;
  display: block;
  text-decoration: none;
  background: #0a45a5;
  color: #fff;
  display: block;
  text-align: center;
  width: calc(364 / 1400 * 100vw);
  font-size: calc(16 / 1400 * 100vw);
  margin: calc(30 / 1400 * 100vw) auto 0;
  font-weight: bold;
  padding: calc(17 / 1400 * 100vw) 0;
  border-radius: calc(27 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .case-link {
    width: calc(267 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    border-radius: calc(30 / 375 * 100vw);
    padding: calc(10 / 375 * 100vw) 0;
    margin: calc(30 / 375 * 100vw) auto 0;
  }
}

.case-link:hover {
  position: relative;
}

.case-link i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: calc(30 / 1400 * 100vw);
}

.projects {
  margin-top: calc(100 / 1400 * 100vw);
  background: #f2f2f2;
  padding: calc(64 / 1400 * 100vw) 0 calc(48 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .projects {
    margin-top: calc(80 / 375 * 100vw);
    padding: calc(56 / 375 * 100vw) calc(20 / 375 * 100vw)
      calc(48 / 375 * 100vw);
  }
}

.projects-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: calc(40 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .projects-list {
    margin-top: calc(24 / 375 * 100vw);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.projects-list-item {
  width: calc((100% - 80px) / 3);
}

@media (max-width: 750px) {
  .projects-list-item {
    width: 100%;
  }
  .projects-list-item:not(:first-child) {
    margin-top: calc(40 / 375 * 100vw);
  }
}

.projects-list-item h3 {
  background: #0a45a5;
  color: #fff;
  text-align: center;
  font-weight: bold;
  height: calc(52 / 1400 * 100vw);
  line-height: calc(52 / 1400 * 100vw);
  font-size: calc(20 / 1400 * 100vw);
  position: relative;
}

@media (max-width: 750px) {
  .projects-list-item h3 {
    height: calc(47 / 375 * 100vw);
    line-height: calc(47 / 375 * 100vw);
    font-size: calc(18 / 375 * 100vw);
  }
}

.projects-list-item h3::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 97%);
  transform: translate(-50%, 97%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: calc(10 / 1400 * 100vw) calc(8 / 1400 * 100vw) 0
    calc(8 / 1400 * 100vw);
  border-color: #0a45a5 transparent transparent transparent;
}

@media (max-width: 750px) {
  .projects-list-item h3::after {
    border-width: calc(10 / 375 * 100vw) calc(8 / 375 * 100vw) 0
      calc(8 / 375 * 100vw);
  }
}

.projects-list-item-bottom {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: calc(440 / 1400 * 100vw);
  padding: calc(16 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .projects-list-item-bottom {
    height: unset;
    padding: calc(15 / 375 * 100vw);
  }
}

.projects-list-item-bottom p {
  font-size: calc(18 / 1400 * 100vw);
  font-weight: medium;
  text-align: center;
}

@media (max-width: 750px) {
  .projects-list-item-bottom p {
    font-size: calc(16 / 375 * 100vw);
    margin-bottom: calc(24 / 375 * 100vw);
  }
}

.projects-list-item-bottom img {
  width: 100%;
}

.features {
  margin-top: calc(120 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .features {
    margin-top: calc(80 / 375 * 100vw);
  }
}

.features-description {
  text-align: center;
  margin-top: calc(40 / 1400 * 100vw);
  font-size: calc(22 / 1400 * 100vw);
  font-weight: 500;
}

@media (max-width: 750px) {
  .features-description {
    margin-top: calc(24 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    padding: calc(20 / 375 * 100vw);
    text-align: left;
  }
}

.features-point {
  margin-top: calc(40 / 1400 * 100vw);
  background: linear-gradient(-45deg, #6190de 0%, #0a45a5 100%);
  padding: calc(80 / 1400 * 100vw) 0;
}

@media (max-width: 750px) {
  .features-point {
    padding: calc(40 / 375 * 100vw) 0;
  }
}

.features-point-list-item {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 20px;
  padding: calc(32 / 1400 * 100vw) calc(48 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .features-point-list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: calc(16 / 375 * 100vw);
  }
}

.features-point-list-item:nth-child(n + 2) {
  margin-top: calc(40 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .features-point-list-item:nth-child(n + 2) {
    margin-top: calc(40 / 375 * 100vw);
  }
}

.features-point-list-item-left {
  width: calc(598 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .features-point-list-item-left {
    width: 100%;
  }
}

.features-point-list-item-left h3 {
  font-size: calc(30 / 1400 * 100vw);
  font-weight: bold;
}

@media (max-width: 750px) {
  .features-point-list-item-left h3 {
    font-size: calc(24 / 375 * 100vw);
  }
}

.features-point-list-item-left h3 .point {
  font-size: calc(20 / 1400 * 100vw);
  color: #0a45a5;
}

@media (max-width: 750px) {
  .features-point-list-item-left h3 .point {
    font-size: calc(14 / 375 * 100vw);
  }
}

.features-point-list-item-left h3 .number {
  font-size: calc(58 / 1400 * 100vw);
  margin-left: calc(7 / 1400 * 100vw);
  color: #0a45a5;
}

@media (max-width: 750px) {
  .features-point-list-item-left h3 .number {
    font-size: calc(40 / 375 * 100vw);
    margin-left: calc(6 / 375 * 100vw);
  }
}

.features-point-list-item-left p {
  font-size: calc(16 / 1400 * 100vw);
  margin-top: calc(24 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .features-point-list-item-left p {
    font-size: calc(16 / 375 * 100vw);
  }
}

.features-point-list-item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(346 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .features-point-list-item-right {
    width: 100%;
    margin-top: calc(15 / 375 * 100vw);
  }
}

.features-point-list-item-right img {
  width: 100%;
  height: auto;
}

.message {
  margin-top: calc(120 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .message {
    margin-top: calc(80 / 375 * 100vw);
  }
}

.message .inner {
  max-width: calc(1080 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .message .inner {
    max-width: 100%;
    padding: 0;
  }
}

.message-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: calc(60 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .message-content {
    margin-top: calc(24 / 375 * 100vw);
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.message-content-left {
  width: calc(304 / 1400 * 100vw);
  background: #0a45a5;
  padding: calc(32 / 1400 * 100vw);
  color: #fff;
}

@media (max-width: 750px) {
  .message-content-left {
    width: 100%;
    margin-top: calc(40 / 375 * 100vw);
    padding: calc(40 / 375 * 100vw) calc(20 / 375 * 100vw);
  }
}

.message-content-left img {
  width: 100%;
}

.message-content-left h3 {
  font-size: calc(18 / 1400 * 100vw);
  margin-top: calc(24 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .message-content-left h3 {
    font-size: calc(18 / 375 * 100vw);
    margin-top: calc(24 / 375 * 100vw);
  }
}

.message-content-left .name {
  font-size: calc(20 / 1400 * 100vw);
  margin-top: calc(12 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .message-content-left .name {
    font-size: calc(20 / 375 * 100vw);
    margin-top: calc(17 / 375 * 100vw);
  }
}

.message-content-left .description {
  font-size: calc(16 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .message-content-left .description {
    font-size: calc(16 / 375 * 100vw);
    margin-top: calc(16 / 375 * 100vw);
  }
}

.message-content-right {
  width: calc(736 / 1400 * 100vw);
  margin-top: calc(26 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .message-content-right {
    width: 100%;
    padding: 0 calc(20 / 375 * 100vw);
  }
}

.message-content-right h3 {
  font-size: calc(24 / 1400 * 100vw);
  font-weight: bold;
}

@media (max-width: 750px) {
  .message-content-right h3 {
    font-size: calc(20 / 375 * 100vw);
  }
}

.message-content-right p {
  margin-top: calc(24 / 1400 * 100vw);
  font-size: calc(18 / 1400 * 100vw);
  line-height: 1.7222;
}

@media (max-width: 750px) {
  .message-content-right p {
    font-size: calc(16 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }
}

.message-content-right p:nth-of-type(n + 2) {
  margin-top: calc(35 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .message-content-right p:nth-of-type(n + 2) {
    margin-top: calc(25 / 375 * 100vw);
  }
}

.company {
  margin-top: calc(120 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .company {
    margin-top: calc(80 / 375 * 100vw);
  }
}

.company table {
  margin-top: calc(40 / 1400 * 100vw);
}

.company table tr {
  border-top: 1px solid #000;
}

.company table tr:last-child {
  border-bottom: 1px solid #000;
}

.company table th,
.company table td {
  font-size: calc(16 / 1400 * 100vw);
  padding: calc(24 / 1400 * 100vw) 0;
}

@media (max-width: 750px) {
  .company table th,
  .company table td {
    width: 100%;
    display: block;
    font-size: calc(16 / 375 * 100vw);
    padding: calc(17 / 375 * 100vw) 0;
  }
}

.company table th {
  width: calc(126 / 1400 * 100vw);
  font-weight: bold;
  vertical-align: top;
}

@media (max-width: 750px) {
  .company table th {
    width: 100%;
    padding-bottom: 0px;
  }
}

.flow {
  margin-top: calc(120 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .flow {
    margin-top: calc(80 / 375 * 100vw);
  }
}

.flow-content {
  margin-top: calc(40 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .flow-content {
    margin-top: calc(20 / 375 * 100vw);
  }
}

.flow-content .flow-dot {
  display: block;
  width: calc(8 / 1400 * 100vw);
  margin: calc(8 / 1400 * 100vw) 0;
  margin-left: calc(58 / 1400 * 100vw);
}

.flow-content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 750px) {
  .flow-content-item:not(:first-child) {
    margin-top: calc(20 / 375 * 100vw);
  }
}

.flow-content-item-left {
  background: #0a45a5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 50%;
  width: calc(124 / 1400 * 100vw);
  height: calc(124 / 1400 * 100vw);
  color: #fff;
}

@media (max-width: 750px) {
  .flow-content-item-left {
    width: calc(62 / 375 * 100vw);
    height: calc(62 / 375 * 100vw);
  }
}

.flow-content-item-left .step {
  font-size: calc(18 / 1400 * 100vw);
  margin-top: calc(22 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .flow-content-item-left .step {
    font-size: calc(12 / 375 * 100vw);
    margin-top: calc(5 / 375 * 100vw);
  }
}

.flow-content-item-left .number {
  font-size: calc(40 / 1400 * 100vw);
  margin-top: calc(-10 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .flow-content-item-left .number {
    font-size: calc(30 / 375 * 100vw);
    margin-top: calc(-5 / 375 * 100vw);
  }
}

.flow-content-item-right {
  width: calc(916 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .flow-content-item-right {
    width: calc(265 / 375 * 100vw);
  }
}

.flow-content-item-right h3 {
  font-weight: bold;
  font-size: calc(22 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .flow-content-item-right h3 {
    font-size: calc(18 / 375 * 100vw);
  }
}

.flow-content-item-right p {
  font-size: calc(18 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .flow-content-item-right p {
    font-size: calc(15 / 375 * 100vw);
  }
}

.voices {
  margin-top: calc(120 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .voices {
    margin-top: calc(70 / 375 * 100vw);
  }
}

.voices-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: calc(40 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .voices-list {
    margin-top: calc(24 / 1400 * 100vw);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.voices-list-item {
  border-radius: 10px;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  padding: calc(24 / 1400 * 100vw);
  width: calc((100% - 40px) / 2);
}

@media (max-width: 750px) {
  .voices-list-item {
    width: 100%;
    padding: calc(24 / 375 * 100vw);
    margin-top: calc(24 / 375 * 100vw);
  }
}

.voices-list-item-top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 750px) {
  .voices-list-item-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.voices-list-item-top .image {
  width: 48%;
  background: #e2ebfa;
}

@media (max-width: 750px) {
  .voices-list-item-top .image {
    width: 100%;
  }
}

.voices-list-item-top .profile {
  width: 48%;
}

@media (max-width: 750px) {
  .voices-list-item-top .profile {
    width: 100%;
  }
}

.voices-list-item-top .profile .occupation {
  font-size: calc(16 / 1400 * 100vw);
  font-weight: bold;
  display: inline-block;
  background: #0a45a5;
  color: #fff;
  padding: calc(4 / 1400 * 100vw) calc(8 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .voices-list-item-top .profile .occupation {
    position: absolute;
    top: 0;
    left: 0;
    font-size: calc(16 / 375 * 100vw);
  }
}

.voices-list-item-top .profile .name {
  margin-top: calc(18 / 1400 * 100vw);
  font-size: calc(16 / 1400 * 100vw);
  border-bottom: 2px solid #e2ebfa;
}

@media (max-width: 750px) {
  .voices-list-item-top .profile .name {
    font-size: calc(16 / 375 * 100vw);
    margin-top: calc(16 / 375 * 100vw);
    padding-bottom: calc(8 / 375 * 100vw);
  }
}

.voices-list-item-top .profile .title {
  font-weight: bold;
  font-size: calc(14 / 1400 * 100vw);
  margin-top: calc(24 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .voices-list-item-top .profile .title {
    font-size: calc(14 / 375 * 100vw);
    margin-top: calc(16 / 375 * 100vw);
  }
}

.voices-list-item-top .profile .title.first {
  margin-top: calc(5 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .voices-list-item-top .profile .title.first {
    margin-top: calc(5 / 375 * 100vw);
  }
}

.voices-list-item-top .profile .description {
  font-weight: bold;
  font-size: calc(16 / 1400 * 100vw);
  margin-top: calc(8 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .voices-list-item-top .profile .description {
    font-size: calc(14 / 375 * 100vw);
    margin-top: calc(8 / 375 * 100vw);
  }
}

.voices-list-item-top img {
  width: 100%;
}

.voices-list-item-bottom .title {
  font-weight: bold;
  font-size: calc(14 / 1400 * 100vw);
  margin-top: calc(24 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .voices-list-item-bottom .title {
    font-size: calc(14 / 375 * 100vw);
    margin-top: calc(16 / 375 * 100vw);
  }
}

.voices-list-item-bottom .title.first {
  margin-top: calc(5 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .voices-list-item-bottom .title.first {
    margin-top: calc(5 / 375 * 100vw);
  }
}

.voices-list-item-bottom .description {
  font-size: calc(14 / 1400 * 100vw);
  margin-top: calc(16 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .voices-list-item-bottom .description {
    font-size: calc(14 / 375 * 100vw);
    margin-top: calc(8 / 375 * 100vw);
  }
}

.c-modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.c-modal_bg {
  background: rgba(0, 0, 0, 0.6);
  height: 100vh;
  width: 100%;
}

.c-modal_content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 5px;
  width: 500px;
  height: 500px;
}

@media (max-width: 750px) {
  .c-modal_content {
    width: 100%;
  }
}

.c-modal_content._sm {
  width: 30%;
}

.c-modal_content._md {
  width: 50%;
}

.c-modal_content_inner {
  position: relative;
  padding: 48px 32px 32px;
}

.c-modal_content_inner .before-remove {
  text-align: center;
  font-size: 18px;
}

.c-modal_content_inner .modal-title {
  text-align: center;
  margin-top: 10px;
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 750px) {
  .c-modal_content_inner .modal-title {
    font-size: 20px;
  }
}

.c-modal_content_inner img {
  display: block;
  width: 134px;
  margin: 30px auto;
}

.c-modal_content_inner .modal-link {
  display: block;
  width: 100%;
  text-align: center;
  background: #0a45a5;
  color: #fff;
  border-radius: 10px;
  height: 68px;
  line-height: 68px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}

.c-modal_content_inner .remove-link {
  display: block;
  text-align: center;
  text-decoration: underline;
  margin-top: 15px;
}

.c-modal_content_inner .remove-link:hover {
  cursor: pointer;
}

.c-modal_close {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
}

.c-modal_close:hover {
  position: absolute;
}

.c-modal_close::before,
.c-modal_close::after {
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  /* 棒の幅（太さ） */
  height: 30px;
  /* 棒の高さ */
  background: #333;
}

.c-modal_close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-modal_close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.offer {
  padding: calc(40 / 1400 * 100vw) 0;
  /*areaにis-activeというクラスがついた時の形状*/
}

@media (max-width: 750px) {
  .offer {
    padding-top: calc(20 / 375 * 100vw);
  }
}

.offer-title {
  font-size: calc(22 / 1400 * 100vw);
  font-weight: bold;
}

@media (max-width: 750px) {
  .offer-title {
    font-size: calc(20 / 375 * 100vw);
  }
}

.offer-title span {
  font-size: calc(14 / 1400 * 100vw);
  margin-left: calc(16 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .offer-title span {
    font-size: calc(14 / 375 * 100vw);
    display: block;
    font-weight: normal;
    margin-left: 0;
  }
}

.offer-more {
  color: #000;
  display: block;
  font-size: calc(16 / 1400 * 100vw);
  margin-top: calc(16 / 1400 * 100vw);
}

.offer-more i {
  margin-left: calc(16 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .offer-more i {
    margin-top: calc(16 / 375 * 100vw);
  }
}

@media (max-width: 750px) {
  .offer-more {
    font-size: calc(16 / 375 * 100vw);
    margin-top: calc(16 / 375 * 100vw);
  }
}

.offer .tab {
  margin-top: calc(16 / 1400 * 100vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 750px) {
  .offer .tab {
    margin-top: calc(16 / 375 * 100vw);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .offer .tab.close li {
    display: none;
  }
  .offer .tab.close li i {
    display: block !important;
  }
}

.offer .tab li {
  border: 2px solid #0a45a5;
  width: calc(100% / 3);
  text-align: center;
  position: relative;
}

.offer .tab li i {
  display: none !important;
}

@media (max-width: 750px) {
  .offer .tab li {
    width: 100%;
    border: 2px solid #0a45a5;
  }
}

.offer .tab li:not(:first-child) {
  border-left: none;
}

@media (max-width: 750px) {
  .offer .tab li:not(:first-child) {
    border-left: 2px solid #0a45a5;
    border-top: none;
  }
}

.offer .tab li.active {
  background: #0a45a5;
}

.offer .tab li.active i {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  color: #fff;
}

@media (max-width: 750px) {
  .offer .tab li.active {
    display: block;
  }
}

.offer .tab li.active a {
  color: #fff;
}

.offer .tab li a {
  padding: calc(20 / 1400 * 100vw) 0;
  width: 100%;
  display: block;
  color: #0a45a5;
  text-decoration: none;
  font-weight: bold;
  font-size: calc(18 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .offer .tab li a {
    padding: calc(10 / 375 * 100vw) 0;
    font-size: calc(16 / 375 * 100vw);
  }
}

.offer .area {
  background: #fff;
}

.offer .area h3 {
  position: relative;
  font-size: calc(26 / 1400 * 100vw);
  margin-top: calc(60 / 1400 * 100vw);
  font-weight: bold;
  color: #0a45a5;
}

@media (max-width: 750px) {
  .offer .area h3 {
    font-size: calc(22 / 375 * 100vw);
    margin-top: calc(60 / 375 * 100vw);
  }
}

.offer .area h3 span {
  position: absolute;
  top: calc(-200 / 1400 * 100vw);
}

.offer .area ul {
  margin-top: calc(10 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .offer .area ul {
    margin-top: calc(10 / 375 * 100vw);
  }
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.offer-card {
  padding: calc(24 / 1400 * 100vw);
  border-radius: calc(20 / 1400 * 100vw);
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
}

.offer-card:not(:first-child) {
  margin-top: calc(38 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .offer-card:not(:first-child) {
    margin-top: calc(38 / 375 * 100vw);
  }
}

@media (max-width: 750px) {
  .offer-card {
    padding: calc(20 / 375 * 100vw);
  }
}

.offer-card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media (max-width: 750px) {
  .offer-card-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.offer-card-title h4 {
  font-size: calc(18 / 1400 * 100vw);
  color: #0a45a5;
}

@media (max-width: 750px) {
  .offer-card-title h4 {
    font-size: calc(18 / 375 * 100vw);
  }
}

.offer-card-title p {
  font-size: calc(16 / 1400 * 100vw);
  color: #9f9f9f;
}

@media (max-width: 750px) {
  .offer-card-title p {
    font-size: calc(16 / 375 * 100vw);
  }
}

.offer-card-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

@media (max-width: 750px) {
  .offer-card-labels {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: none;
    border-bottom: 1px solid #e6e6e6;
  }
}

.offer-card-labels-item {
  width: calc(100% / 4);
  padding: calc(8 / 1400 * 100vw) 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 750px) {
  .offer-card-labels-item {
    width: 100%;
    border-top: 1px solid #e6e6e6;
    padding: calc(8 / 375 * 100vw) 0;
  }
}

.offer-card-labels-item label {
  background: #0a45a5;
  color: #fff;
  font-size: calc(16 / 1400 * 100vw);
  padding: calc(9 / 1400 * 100vw) 0;
  width: calc(80 / 1400 * 100vw);
  text-align: center;
}

@media (max-width: 750px) {
  .offer-card-labels-item label {
    text-align: center;
    font-size: calc(14 / 375 * 100vw);
    padding: calc(7 / 375 * 100vw) 0;
    width: calc(80 / 375 * 100vw);
  }
}

.offer-card-labels-item p {
  font-size: calc(18 / 1400 * 100vw);
  margin-left: calc(8 / 1400 * 100vw);
  width: calc(100% - 80px);
}

@media (max-width: 750px) {
  .offer-card-labels-item p {
    text-align: center;
    font-size: calc(16 / 375 * 100vw);
    margin-left: calc(8 / 375 * 100vw);
  }
}

.offer-card-labels-item:not(:first-child) {
  position: relative;
}

.offer-card-labels-item:not(:first-child):before {
  position: absolute;
  left: calc(-8 / 1400 * 100vw);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  height: 84%;
  width: 1px;
  background: #e6e6e6;
}

@media (max-width: 750px) {
  .offer-card-labels-item:not(:first-child):before {
    display: none;
  }
}

.offer-card-description {
  margin-top: calc(16 / 1400 * 100vw);
  font-size: calc(16 / 1400 * 100vw);
  line-height: 1.5;
}

@media (max-width: 750px) {
  .offer-card-description {
    margin-top: calc(15 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    line-height: 1.5;
  }
}

.form {
  margin-top: calc(80 / 1400 * 100vw);
  text-align: center;
}

.form .submit-button {
  display: block;
  width: calc(364 / 1400 * 100vw);
  height: calc(60 / 1400 * 100vw);
  border-radius: calc(30 / 1400 * 100vw);
  margin: calc(24 / 1400 * 100vw) auto 0;
  font-size: calc(18 / 1400 * 100vw);
  font-weight: bold;
  background: #0a45a5;
  color: #fff;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form .submit-button-next {
  display: block;
  width: calc(364 / 1400 * 100vw);
  height: calc(60 / 1400 * 100vw);
  border-radius: calc(30 / 1400 * 100vw);
  margin: calc(24 / 1400 * 100vw) auto 0;
  font-size: calc(18 / 1400 * 100vw);
  font-weight: bold;
  background: #0aa562;
  color: #fff;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.google {
  border: none;
  margin: 0 auto;
  background: none;
  margin-left: 0;
  margin-top: 20px;
  cursor: pointer;
}
.google img {
  width: 200px;
}
.social-btn {
  margin: 0 auto;
  width: 200px;
}
.facebook {
  border: none;
  margin: 0 auto;
  background: none;
  margin-left: 0;
  margin-top: 20px;
  cursor: pointer;
}
.facebook img {
  width: 200px;
}

@media (max-width: 750px) {
  .form .submit-button {
    width: 100%;
    height: calc(60 / 375 * 100vw);
    border-radius: calc(30 / 375 * 100vw);
    margin: calc(24 / 375 * 100vw) auto 0;
    font-size: calc(18 / 375 * 100vw);
  }
  .google img {
    width: 200px;
  }
  .facebook img {
    width: 200px;
  }
  .form .submit-button-next {
    width: 100%;
    height: calc(60 / 375 * 100vw);
    border-radius: calc(30 / 375 * 100vw);
    margin: calc(24 / 375 * 100vw) auto 0;
    font-size: calc(18 / 375 * 100vw);
  }
}

.form .submit-button:hover {
  background: #fff;
  color: #0a45a5;
  border: 1px solid #0a45a5;
}

.form .submit-button-next:hover {
  background: #fff;
  color: #0aa562;
  border: 1px solid #0aa562;
}

.form .footer {
  margin-top: calc(40 / 1400 * 100vw);
}

.form h1 {
  text-align: center;
}

@media (max-width: 750px) {
  .form h1 {
    width: calc(209 / 375 * 100vw);
    margin: 0 auto;
  }
  .form h1 img {
    width: 100%;
  }
}

.form h2 {
  margin-top: calc(25 / 1400 * 100vw);
  font-size: calc(24 / 1400 * 100vw);
  text-align: center;
  font-weight: bold;
}

@media (max-width: 750px) {
  .form h2 {
    margin-top: calc(40 / 375 * 100vw);
    font-size: calc(22 / 375 * 100vw);
  }
}

.form p {
  text-align: center;
  margin-top: calc(24 / 1400 * 100vw);
  font-size: calc(18 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .form p {
    margin-top: calc(16 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
}

.form-contents {
  max-width: calc(640 / 1400 * 100vw);
  width: 100%;
  margin: calc(45 / 1400 * 100vw) auto 0;
}

@media (max-width: 750px) {
  .form-contents {
    max-width: 100%;
  }
}

.form-contents-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: calc(24 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .form-contents-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: calc(24 / 375 * 100vw);
  }
}

.form-contents-item label {
  font-size: calc(18 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .form-contents-item label {
    font-size: calc(16 / 375 * 100vw);
    margin-bottom: calc(8 / 375 * 100vw);
  }
}

.form-contents-item input {
  border: 1px solid #acacac;
  width: calc(480 / 1400 * 100vw);
  height: calc(60 / 1400 * 100vw);
  border-radius: calc(10 / 1400 * 100vw);
  padding: 10px;
  font-size: calc(16 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .form-contents-item input {
    width: 100%;
    height: calc(50 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
    padding: 10px;
    font-size: calc(16 / 375 * 100vw);
  }
}

.form-contents-item input[type='date'] {
  font-size: calc(19 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .form-contents-item input[type='date'] {
    font-size: calc(19 / 375 * 100vw);
  }
}

.form-contents-item input[type='text'] {
  font-size: calc(19 / 1400 * 100vw);
  cursor: default;
}

@media (max-width: 750px) {
  .form-contents-item input[type='text'] {
    font-size: calc(19 / 375 * 100vw);
    cursor: default;
  }
}

.form-contents-item select {
  border: 1px solid #acacac;
  width: calc(480 / 1400 * 100vw);
  height: calc(60 / 1400 * 100vw);
  border-radius: calc(10 / 1400 * 100vw);
  padding: 10px;
  font-size: calc(16 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .form-contents-item select {
    width: 100%;
    height: calc(50 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
    padding: 10px;
    font-size: calc(16 / 375 * 100vw);
  }
}

.form-contents-item.checkbox {
  width: calc(280 / 1400 * 100vw);
  margin: calc(40 / 1400 * 100vw) auto 0;
}

@media (max-width: 750px) {
  .form-contents-item.checkbox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(240 / 375 * 100vw);
  }
  .form-contents-item.checkbox label {
    margin-bottom: 0;
  }
}

.form-contents-item.checkbox input[type="checkbox"] {
  width: calc(24 / 1400 * 100vw);
  height: calc(24 / 1400 * 100vw);
  background: #f2f2f2;
  border: 1px solid #707070;
}

@media (max-width: 750px) {
  .form-contents-item.checkbox input[type="checkbox"] {
    width: calc(20 / 375 * 100vw);
    height: calc(20 / 375 * 100vw);
  }
}

.form-contents-item.checkbox label {
  font-size: calc(16 / 1400 * 100vw);
  cursor: pointer;
}

@media (max-width: 750px) {
  .form-contents-item.checkbox label {
    font-size: calc(14 / 375 * 100vw);
  }
}

.form-contents-item-errmsg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: calc(19 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .form-contents-item-errmsg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: calc(19 / 375 * 100vw);
  }
}

.form-contents-item-errmsg input[type='text'] {
  font-size: calc(15 / 1400 * 100vw);
  width: calc(480 / 1400 * 100vw);
  outline: none;
  border: none;
  cursor: default;
  color: crimson;
}

@media (max-width: 750px) {
  .form-contents-item-errmsg input[type='text'] {
    font-size: calc(15 / 375 * 100vw);
    width: 100%;
    border: none;
    outline: none;
    cursor: default;
    color: crimson;
  }
}

.enrollment-succeed {
  margin: calc(80 / 1400 * 100vw) auto;
}

.enrollment-succeed-wrapper h1 {
  text-align: center;
}

@media (max-width: 750px) {
  .enrollment-succeed-wrapper h1 {
    width: calc(209 / 375 * 100vw);
    margin: 0 auto;
  }
  .enrollment-succeed-wrapper h1 img {
    width: 100%;
  }
}

.enrollment-succeed-message {
  margin-top: calc(80 / 1400 * 100vw);
}

.enrollment-succeed-message p {
  text-align: center;
  font-size: 18px;
}

.footer {
  margin-top: calc(120 / 1400 * 100vw);
  padding-bottom: calc(20 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .footer {
    margin-top: calc(80 / 375 * 100vw);
  }
  .footer .inner {
    padding: calc(40 / 375 * 100vw);
  }
}

.footer-contents {
  padding: calc(40 / 1400 * 100vw) 0 calc(62 / 1400 * 100vw);
  background: #0a45a5;
}

@media (max-width: 750px) {
  .footer-contents {
    padding: 0;
    padding-bottom: calc(30 / 375 * 100vw);
  }
}

.footer-contents-title {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: calc(22 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .footer-contents-title {
    font-size: calc(24 / 375 * 100vw);
  }
}

.footer-contents-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: calc(16 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .footer-contents-list {
    margin-top: calc(24 / 375 * 100vw);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer-contents-list-item {
  position: relative;
  width: calc((100% - 80px) / 3);
}

@media (max-width: 750px) {
  .footer-contents-list-item {
    width: 100%;
  }
  .footer-contents-list-item:last-child {
    margin-top: calc(60 / 375 * 100vw);
  }
}

.footer-contents-list-item a {
  text-decoration: none;
}

.footer-contents-list-item a img {
  width: 100%;
}

.footer-contents-list-item a span {
  position: absolute;
  bottom: 0;
  left: 50%;
  background: #fff;
  color: #0a45a5;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  display: block;
  text-align: center;
  width: calc(206 / 1400 * 100vw);
  font-size: calc(16 / 1400 * 100vw);
  font-weight: bold;
  padding: calc(17 / 1400 * 100vw) 0;
  border-radius: calc(27 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .footer-contents-list-item a span {
    width: calc(197 / 375 * 100vw);
    font-size: calc(15 / 375 * 100vw);
    padding: calc(17 / 375 * 100vw) 0;
    border-radius: calc(27 / 375 * 100vw);
  }
}

.footer-contents-list-item a span i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: calc(16 / 1400 * 100vw);
}

.footer-contents-list-item:first-child {
  margin-right: calc(40 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .footer-link .inner {
    padding: 0 calc(20 / 375 * 100vw);
  }
}

.footer-link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: calc(16 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .footer-link-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: calc(10 / 375 * 100vw);
  }
}

.footer-link-list-item:nth-child(n + 2) {
  margin-left: calc(40 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .footer-link-list-item:nth-child(n + 2) {
    margin-left: 0;
  }
}

.footer-link-list-item a {
  font-size: calc(15 / 1400 * 100vw);
  text-decoration: none;
  color: #000;
}

@media (max-width: 750px) {
  .footer-link-list-item a {
    font-size: calc(14 / 375 * 100vw);
  }
}

.footer .copyright {
  display: block;
  margin-top: calc(48 / 1400 * 100vw);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 750px) {
  .footer .copyright {
    margin-top: calc(32 / 375 * 100vw);
    padding-bottom: calc(150 / 375 * 100vw);
  }
}

.inner {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: calc(1080 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .inner {
    max-width: 100%;
    padding: 0 calc(20 / 375 * 100vw);
  }
}

.roboto,
.features-point-list-item-left h3 .point,
.features-point-list-item-left h3 .number,
.flow-content-item-left .step,
.flow-content-item-left .number,
.offer-card-title p,
.section-title p {
  font-family: "Roboto", sans-serif;
}

.section-title {
  text-align: center;
  color: #000;
  margin: 0 auto;
}

.section-title h2 {
  font-size: calc(32 / 1280 * 100vw);
  font-weight: bold;
}

@media (max-width: 750px) {
  .section-title h2 {
    font-size: calc(26 / 375 * 100vw);
  }
}

.section-title p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: calc(16 / 1400 * 100vw);
  margin-top: calc(10 / 1400 * 100vw);
}

@media (max-width: 750px) {
  .section-title p {
    font-size: calc(16 / 375 * 100vw);
    margin-top: 0;
  }
}

.section-title p:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #0a45a5;
  margin-right: 10px;
}

.section-title p:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #0a45a5;
  margin-left: 10px;
}

.sp-form-link {
  position: fixed;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  z-index: 999;
  background: #fff;
  text-align: center;
  padding: 10px 20px 14px 20px;
}

.sp-form-link p {
  color: #0a45a5;
  font-weight: bold;
  font-size: calc(16 / 375 * 100vw);
}

.sp-form-link a {
  text-decoration: none;
  font-weight: bold;
  position: relative;
  color: #0a45a5;
  display: block;
  text-align: center;
  font-size: calc(26 / 375 * 100vw);
  width: 100%;
  height: calc(50 / 375 * 100vw);
  line-height: calc(50 / 375 * 100vw);
  border-radius: calc(25 / 375 * 100vw);
  background: #f9ca36;
  letter-spacing: 0.12em;
  -webkit-box-shadow: 6px 6px #0a45a5;
  box-shadow: 6px 6px #0a45a5;
}

.sp-form-link a i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: calc(40 / 1400 * 100vw);
}

#toTop,
#toTopSp {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 60px;
}

#toTop:hover,
#toTopSp:hover {
  opacity: 0.8;
  cursor: pointer;
}

@media (max-width: 750px) {
  #toTop,
  #toTopSp {
    position: relative;
    bottom: inherit;
    right: inherit;
    width: 60px;
    margin-top: -22px;
  }
}

@media (max-width: 750px) {
  .to-top-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }
}

.info_btn {
  display: inline-block;
  width: 300px;
  height: 57px;
  background: #000;
  font-weight: 500;
  font-size: 18px;
  line-height: 49px;
  text-align: center;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 4px solid #000;
  -webkit-box-shadow: 0px 0px 0px 1px inset;
  box-shadow: 0px 0px 0px 1px inset;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 750px) {
  .info_btn {
    display: block;
    margin: 0 auto;
    margin-top: 10px;
  }
}

a:hover {
  position: static;
  opacity: 0.7;
  z-index: 1000;
}

@media (max-width: 750px) {
  .sp-none {
    display: none !important;
  }
}

.pc-none {
  display: none;
}

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

.slider {
  width: 90%;
  margin: 0 auto 80px;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

.mypattern {
  width: 100%;
}

.mypattern p {
  position: absolute;
  top: 50%;
  right: 3%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  font-size: 13px;
  max-width: 30%;
  letter-spacing: 0.1em;
}

@media (max-width: 750px) {
  .mypattern p {
    line-height: 1.3;
    width: 100%;
    max-width: 80%;
    left: 50%;
    top: 55%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 10px;
  }
}

.mypattern .slick-slide {
  margin: 5px;
}

.mypattern .slick-slide:not(.slick-center) {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.next-arrow {
  position: absolute;
  top: 50%;
  right: 10%;
  z-index: 100;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.prev-arrow {
  position: absolute;
  top: 50%;
  left: 10%;
  z-index: 100;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
/*# sourceMappingURL=master.css.map */
/* // popup */
/* 開くボタン */
.button-open {
  display: block;
  margin: 0 auto;
  width: 20rem;
  padding: 1em;
  background-color: #3140c9;
  color: #eaeaea;
  border-radius: 20rem;
  cursor: pointer;
}

.modal-window a.btn {
  font-weight: 700;
  padding: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #2c2c2c;
  border-radius: 0.5rem;
}

.btn--blue,
a.btn--blue {
  color: #fff;
  background-color: #f2eb1f;
  border: 1px solid #1e72ff;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}

.btn--blue:hover,
a.btn--blue:hover {
  color: #000;
  background: #f2eb1f;

}
/* モーダルウィンドウ */
.form-window {
  height: auto!important;
}
.form-window p {
  font-size: 18px;
}
.modal-window {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 160px;
  background-color: #dfdddd;
  border: 1px solid #1e72ff;
  border-radius: 5px;
  z-index: 9999;
  padding: 2rem;
  text-align: center;
}
.modal-window h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  white-space: nowrap;
}
.modal-window .btn-wrap {
  display: flex;
  justify-content: space-around;
}
/* 閉じるボタン */
.button-close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  padding: 1em;
  background-color: #c96931;
  color: #eaeaea;
  border-radius: 20rem;
  cursor: pointer;
}
/* オーバーレイ */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 1111;
}

@media (max-width: 750px) {
  .modal-window {
    width: 350px;
    height: 250px;
  }
  .modal-window h2 {
    white-space: initial;
    margin-bottom: 0;
  }
  .modal-window .btn-wrap {
    flex-direction: column;
  }
  .modal-window .btn-wrap .btn {
    margin-top: 15px;
  }
}


.kv.kv_01a {
  background-image: url(../img/key-visual/key-visual_01a.jpg);
}

.kv.kv_01b {
  background-image: url(../img/key-visual/key-visual_01b.jpg);
}

.kv.kv_01c {
  background-image: url(../img/key-visual/key-visual_01c.jpg);
}

.kv.kv_01d {
  background-image: url(../img/key-visual/key-visual_01d.jpg);
}

@media (max-width: 750px) {
  .kv.kv_01a {
    background-image: url(../img/key-visual/key-visual-sp_01a.jpg);
  }
  .kv.kv_01b {
    background-image: url(../img/key-visual/key-visual-sp_01b.jpg);
  }
  .kv.kv_01c {
    background-image: url(../img/key-visual/key-visual-sp_01c.jpg);
  }
  .kv.kv_01d {
    background-image: url(../img/key-visual/key-visual-sp_01d.jpg);
  }
}

.kv.kv_01a > .kv-wrap > h2,
.kv.kv_01b > .kv-wrap > h2,
.kv.kv_01c > .kv-wrap > h2,
.kv.kv_01d > .kv-wrap > h2 {
  display: none;
}
