/*---------commmon---------*/
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css?family=Roboto);
html {
 font-size: 10px;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
a,
span {
 font-family: "Noto Sans Japanese", sans-serif;
 color: #222222;
 text-decoration: none;
 letter-spacing: 0.05em;
}
a {
 cursor: pointer;
}
li {
 list-style: none;
}
.container {
 max-width: 1140px;
 width: 100%;
 margin: 0 auto;
 padding: 0 15px;
}
.section-box {
 padding-top: 120px;
}
.h2-title {
 font-size: 4.8rem;
 font-weight: bold;
 letter-spacing: 0.05em;
 margin-bottom: 40px;
}
.h2-en-title {
 font-family: "Roboto", sans-serif;
 font-size: 10rem;
 font-weight: 700;
 color: #c5d5de;
 display: block;
 margin-bottom: -79px;
 letter-spacing: 0.05em;
}
.h3-title {
 font-size: 3.6rem;
 letter-spacing: 0.05em;
 font-weight: bold;
 line-height: 43px;
 margin-bottom: 32px;
}
.h4-title {
 font-size: 2.4rem;
 font-weight: bold;
 letter-spacing: 0.05em;
 margin-bottom: 20px;
}
.section-intro-txt {
 font-size: 1.8rem;
 letter-spacing: 0.05em;
 line-height: 27px;
 margin-bottom: 40px;
}
/*---1024px---*/
@media screen and (max-width: 1024px) {
 .h2-title {
  font-size: 4rem;
 }
 .h2-en-title {
  font-size: 8rem;
  margin-bottom: -64px;
 }
 .h3-title {
  font-size: 3.2rem;
 }
 .h4-title {
  font-size: 2.2rem;
 }
}
/*---800px---*/
@media screen and (max-width: 800px) {
 .h2-en-title {
  font-size: 6rem;
  margin-bottom: -56px;
 }
}
/*---767px---*/
@media screen and (max-width: 767px) {
 .h2-title {
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.2;
 }
 .h2-en-title {
  font-size: 2.4rem;
  margin-bottom: 0;
 }
 .section-intro-txt {
  font-size: 1.4rem;
  line-height: 1.5;
 }
 .h3-title {
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.2;
 }
 .h4-title {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.2;
 }
 .section-box {
  padding-top: 100px;
 }
}
/*---contactボタン---*/
.lp-contact-btn {
 display: block;
 text-align: center;
}
.lp-contact-btn-box {
 width: 730px;
 display: inline-block;
 background: #eee;
}
.lp-contact-btn-link {
 position: relative;
 width: 100%;
 height: 100%;
 font-size: 5rem;
 font-weight: bold;
 color: #ffdc48;
 z-index: 1;
 display: block;
 padding: 14px;
 overflow: hidden;
 top: 0;
 left: 0;
 transition: 0.5s;
}
.lp-contact-btn-link span {
 font-size: 2rem;
 color: #fff;
 display: block;
 line-height: 1;
 transition: 0.5s;
}
.lp-contact-btn-link::before {
 content: "";
 position: absolute;
 width: 100%;
 height: 100%;
 background: #222;
 top: 0;
 left: 0;
 display: block;
 z-index: -1;
}
.lp-contact-btn-link::after {
 content: "";
 position: absolute;
 width: 100%;
 height: 100%;
 background: #ffdc48;
 top: 0;
 left: -100%;
 display: block;
 z-index: -1;
 transition: 0.5s;
}
.lp-contact-btn-link:hover {
 top: -10px;
 left: -10px;
 color: #222;
}
.lp-contact-btn-link:hover span {
 color: #222;
}
.lp-contact-btn-link:hover::after {
 left: 0;
}
/*------PC------*/
@media screen and (min-width: 768px) {
 .sp-only {
  display: none !important;
 }
}
/*------SP------*/
@media screen and (max-width: 767px) {
 .pc-only {
  display: none !important;
 }
 .lp-contact-btn-box {
  width: 100%;
 }
 .lp-contact-btn-link {
  font-size: 3.6rem;
 }
 .lp-contact-btn-link span {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0.5em;
  font-size: 2rem;
 }
}
@media screen and (max-width: 374px) {
 .lp-contact-btn-link span {
  display: block;
 }
}

/*---------header---------*/
header {
 width: 100%;
 display: flex;
 flex-flow: row nowrap;
 justify-content: space-between;
 align-items: center;
 background: rgba(255, 255, 255, 0.9);
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 margin: auto;
 z-index: 100;
}
.header-logo {
 margin-left: 30px;
}
.header-menu {
 display: flex;
 flex-flow: row nowrap;
 justify-content: space-between;
 align-items: center;
 font-size: 1.8rem;
 font-weight: 300;
}
.header-menu-link {
 padding: 20px;
 position: relative;
 display: block;
}
.header-menu-link:not(.header-menu-contact)::before {
 content: "";
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 margin: auto;
 width: calc(100% - 40px);
 height: 4px;
 background: #222;
 opacity: 0;
 transition: 0.3s;
}
.header-menu-link:hover:not(.header-menu-contact)::before {
 opacity: 1;
}
.header-menu-contact {
 color: #ffdc48;
 position: relative;
 overflow: hidden;
 z-index: 1;
 padding: 20px 38px;
 margin-left: 20px;
}
.header-menu-contact::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: #222;
 transition: 0.3s;
 z-index: -1;
}
.header-menu-contact::after {
 content: "";
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: #ffdc48;
 transition: 0.3s;
 z-index: -1;
}
.header-menu-contact:hover {
 color: #222;
}
.header-menu-contact:hover::after {
 left: 0;
}
/*------1100px------*/
@media screen and (max-width: 1100px) {
 .header-menu-link:not(.header-menu-contact) {
  padding: 20px 10px;
 }
 .header-menu-link:not(.header-menu-contact)::before {
  width: calc(100% - 20px);
 }
 .header-menu-contact {
  margin-left: 10px;
  padding: 20px;
 }
}
/*------970px------*/
@media screen and (max-width: 970px) {
 .header-logo {
  margin-left: 10px;
  width: 100px;
  height: auto;
 }
 .header-menu {
  font-size: 1.4rem;
 }
}
/*------767px------*/
@media screen and (max-width: 767px) {
 .header-logo {
  padding: 26.5px 0;
  width: 150px;
 }
 .header-menu-contact {
  margin: 0;
 }
 /*---ハンバーガーMENU---*/
 .hamburger-menu {
  padding: 17px 18px;
  background: #c5d5de;
 }
 .hamburger-menu .hamburger-inner-line {
  position: relative;
  width: 100%;
  height: 2px;
  display: block;
  margin-bottom: 7px;
 }
 .hamburger-menu .hamburger-inner-line:not(:nth-child(2))::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 30px;
  height: 2px;
  background: #222;
 }
 .hamburger-menu-title {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
 }
 .hamburger-menu .hamburger-inner-line:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 20px;
  height: 2px;
  background: #222;
 }
 .hamburger-menu .hamburger-inner-line:nth-child(3) {
  margin-bottom: 12px;
 }
 .header-menu-link:not(.header-menu-contact) {
  padding: 0 10px;
 }
 .header-nav {
  display: none;
 }
 .header-menu-contact-icon {
  margin: 0 auto 7px;
 }
 .header-menu-contact-link {
  color: #ffdc48;
 }
 .header-menu-out-btn {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
 }
 .header-menu-contact::after {
  content: none;
 }
 /*---ハンバーガーmenu Open---*/
 .hamburger-menu.open {
  padding: 17.5px 18px;
 }
 .hamburger-menu.open .hamburger-inner-line:nth-child(2) {
  display: none;
 }
 .hamburger-menu.open .hamburger-inner-line:nth-child(1) {
  transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: 10px;
 }
 .hamburger-menu.open .hamburger-inner-line:nth-child(3) {
  transform: rotate(-45deg);
  margin-top: -9px;
 }
 .hamburger-menu.open .hamburger-menu-title {
  display: block;
  margin-top: 19px;
 }
 .header-nav.open {
  display: block;
  position: absolute;
  top: 84px;
  width: 100%;
  background: #c5d5de;
  text-align: center;
 }
 .header-nav.open::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
 }
 .header-menu {
  font-size: 1.8rem !important;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 0;
 }
 .header-menu {
  display: block;
  padding: 35px 0;
 }
 .header-menu-link:not(.header-menu-contact) {
  padding: 15px 10px;
 }
 .header-menu-link:not(.header-menu-contact)::before {
  display: none;
 }
}
/*------330px------*/
@media screen and (max-width: 330px) {
 .header-logo {
  width: 120px;
 }
}

/*---------mv---------*/
@keyframes loop {
 0% {
  transform: translateX(100%);
 }
 to {
  transform: translateX(-100%);
 }
}

@keyframes loop2 {
 0% {
  transform: translateX(0%);
 }
 to {
  transform: translateX(-200%);
 }
}
.mv {
 position: relative;
 /* overflow: hidden; */
 z-index: -1;
 margin-top: 67px;
}
.mv-img-box {
 display: flex;
 width: 100vw;
 height: 694px;
 overflow: hidden;
 background: #3e596a;
}
.mv-main-img {
 width: auto;
 max-width: initial;
 height: 100%;
}
.mv-main-img:first-child {
 animation: loop 50s -25s linear infinite;
}
.mv-main-img:last-child {
 animation: loop2 50s linear infinite;
}
.mv-contents {
 max-width: 1140px;
 width: 100%;
 height: 700px;
 padding: 0 15px;
 position: fixed;
 top: 61px;
 left: 0;
 right: 0;
 margin: auto;
}
.mv-icon01 {
 position: absolute;
 bottom: 0;
 right: 15px;
}
.mv-main-title {
 position: relative;
 font-size: 7.2rem;
 font-weight: bold;
 color: #fff;
 padding: 65px 0 0 65px;
 margin-top: 61px;
 letter-spacing: 0.05em;
 z-index: 0;
}
.mv-main-title::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 250px;
 height: 250px;
 border: 20px solid rgba(255, 220, 72, 0.4);
 z-index: -1;
}
.mv-main-subttl {
 font-size: 3.6rem;
 display: block;
 color: #fff;
}
.mv-main-subttl-small {
 font-size: 2.8rem;
 color: #fff;
}
.mv-icon02 {
 margin: 90px 0 0 65px;
}
/*------970px------*/
@media screen and (max-width: 970px) {
 .mv {
  margin-top: 61px;
 }
 .mv-icon01 {
  width: 300px;
  height: auto;
 }
 .mv-main-title {
  font-size: 6.2rem;
  padding: 40px 0 0 40px;
 }
 .mv-main-subttl {
  font-size: 3rem;
 }
 .mv-main-subttl-small {
  font-size: 2.4rem;
 }
 .mv-icon02 {
  margin: 60px 0 0 40px;
 }
}
/*------767px------*/
@media screen and (max-width: 767px) {
 .mv {
  margin-top: 84px;
 }
 .mv-img-box {
  height: auto;
 }
 .mv-main-img,
 .mv-contents {
  height: 610px;
 }
 .mv-contents {
  top: 84px;
 }
 .mv-main-title {
  text-align: center;
  font-size: 4rem;
 }
 .mv-main-subttl {
  font-size: 2.4rem;
 }
 .mv-icon02 {
  margin: 50px auto 0;
 }
 .mv-main-title::before {
  left: -30px;
  width: 180px;
  height: 240px;
  border: 10px solid rgba(255, 220, 72, 0.4);
 }
 .mv-icon01 {
  width: 250px;
 }
 .mv-main-title {
  padding: 40px 10px 0;
 }
}
/*------470px------*/
@media screen and (max-width: 440px) {
 .mv-main-title {
  font-size: 3.8rem;
 }
 .mv-icon02 {
  width: 200px;
  height: auto;
 }
}
/*------410px------*/
@media screen and (max-width: 410px) {
 .mv-main-title {
  padding: 40px 0 0 0;
 }
}
/*------390px------*/
@media screen and (max-width: 390px) {
 .mv-main-title {
  font-size: 3.4rem;
 }
}
/*------355px------*/
@media screen and (max-width: 355px) {
 .mv-contents {
  padding: 0 5px;
 }
 .mv-main-title {
  font-size: 3.2rem;
 }
}

/*---------article---------*/
article {
 background: #fff;
 min-height: 1000px;
 z-index: 1;
 overflow: hidden;
}

/*---------intro---------*/
.intro-about {
 display: flex;
 flex-flow: row nowrap;
 justify-content: space-between;
 align-items: flex-start;
}
.intro-about-box {
 width: 350px;
 border: 7px solid #ffdc48;
 padding: 30px 30px 45px 30px;
 text-align: center;
 position: relative;
 margin-bottom: 145px;
}
.intro-about-box::before {
 content: "";
 position: absolute;
 width: 50px;
 height: 50px;
 border: 7px solid #ffdc48;
 background: #fff;
 bottom: -28px;
 left: 30px;
}
.intro-about-box::after {
 content: "";
 position: absolute;
 width: 30px;
 height: 30px;
 border: 7px solid #ffdc48;
 background: #fff;
 bottom: -72px;
 left: 60px;
}
.intro-about-icon {
 margin: 0 auto 22px;
}
.intro-about-txt {
 font-size: 2.4rem;
 font-weight: bold;
 line-height: 36px;
}
.what-is-intro {
 padding: 30px;
 background: #c5d5de;
 position: relative;
 margin-top: 67px;
}
.what-is-intro::before {
 content: "";
 position: absolute;
 top: -26px;
 left: 0;
 right: 0;
 margin: auto;
 width: 0;
 height: 0;
 border-style: solid;
 border-width: 0 15px 26px 15px;
 border-color: transparent transparent #c5d5de transparent;
}
.what-is-intro .h4-title {
 margin-bottom: 12px;
}
.what-is-intro-txt {
 font-size: 1.4rem;
 line-height: 21px;
}
/*---1100px---*/
@media screen and (max-width: 1100px) {
 .intro-about-box {
  width: 32%;
  padding: 20px 15px 35px 15px;
 }
}
/*---1024px---*/
@media screen and (max-width: 1024px) {
 .intro-about-txt {
  font-size: 2rem;
  line-height: 28px;
 }
}
/*---890px---*/
@media screen and (max-width: 890px) {
 .intro-about-box {
  padding: 20px 5px 35px 5px;
 }
 .intro-about-txt {
  font-size: 1.8rem;
  line-height: 24px;
 }
}
/*---767px---*/
@media screen and (max-width: 767px) {
 .intro-about {
  display: block;
 }
 .intro-about-box {
  width: 100%;
  margin-bottom: 100px;
 }
 .what-is-intro .h4-title {
  text-align: left;
 }
}

/*---------about---------*/
.about-box01 {
 display: flex;
 flex-flow: row nowrap;
 justify-content: space-between;
 align-items: center;
}
.about-box01-box {
 padding: 40px 193px 0 0;
 position: relative;
}
.about-box01-box p {
 font-size: 1.8rem;
 font-weight: bold;
 letter-spacing: 0.05em;
 line-height: 27px;
 padding: 30px;
 border: 7px solid #ffdc48;
 position: absolute;
 display: inline-block;
 top: 0;
 right: 0;
 background: #fff;
}
.about-box01-box p::before {
 content: "";
 position: absolute;
 bottom: 13px;
 left: -37px;
 width: 0;
 height: 0;
 border-style: solid;
 border-width: 0 35px 37px 0;
 border-color: transparent #ffdc48 transparent transparent;
}
.about-box01-box p::after {
 content: "";
 position: absolute;
 bottom: 21px;
 left: -23px;
 width: 0;
 height: 0;
 border-style: solid;
 border-width: 0 23px 23px 0;
 border-color: transparent #fff transparent transparent;
}
.about-box01 {
 margin-bottom: 80px;
}
.about-box02 {
 display: flex;
 flex-flow: row nowrap;
 justify-content: space-between;
 align-items: flex-start;
}
.about-box02-box:nth-child(1) {
 width: 57%;
 padding-right: 15px;
}
.about-box02-box:nth-child(2) {
 width: 43%;
 padding-left: 15px;
}
.about-box02 .h4-title {
 text-align: center;
 position: relative;
 padding-bottom: 46px;
 margin-bottom: 30px;
}
.about-box02-box:nth-child(1) .h4-title::before {
 content: "";
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 margin: auto;
 width: 100%;
 height: 31px;
 background: url(../img/pc/img_bar_01.svg) no-repeat;
 background-size: contain;
 background-position: center center;
}
.about-box02-box:nth-child(2) .h4-title::before {
 content: "";
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 margin: auto;
 width: 100%;
 height: 31px;
 background: url(../img/pc/img_bar_02.svg) no-repeat;
 background-size: contain;
 background-position: center center;
}
.about-keyword-list .about-keyword {
 position: relative;
}
.about-keyword-list .about-keyword span {
 font-size: 3.6rem;
 background: #eee;
 display: block;
 border-radius: 27px;
 text-align: center;
 position: relative;
}
.about-keyword-list .about-keyword:not(:last-child) {
 margin-bottom: 40px;
}
.about-keyword-list .about-keyword::before {
 content: "";
 position: absolute;
 top: -1px;
 left: 0;
 right: 0;
 margin: auto;
 width: 100%;
 height: 100%;
 border-radius: 27px;
 background: rgba(0, 0, 0, 0.16);
}
.about-keyword-list .about-keyword::after {
 content: "";
 position: absolute;
 top: 50%;
 right: 12px;
 transform: translateY(-50%);
 width: 40px;
 height: 40px;
 background: url(../img/common/icon_search.svg) no-repeat;
 background-size: contain;
 background-position: center center;
}
.about-keyword-count {
 display: block;
 text-align: center;
 line-height: 1;
}
.about-keyword-count:not(:last-child) {
 margin-bottom: 52px;
}
.about-keyword-count-box {
 font-size: 4.4rem;
 font-weight: bold;
 padding-left: 95px;
 position: relative;
 display: inline-block;
 z-index: 0;
}
.about-keyword-count-unit {
 font-size: 2.4rem;
}
.about-keyword-count-box::before {
 content: "";
 position: absolute;
 top: 50%;
 left: 0;
 transform: translateY(-50%);
 width: 65px;
 height: 20px;
 background: url("../img/common/img_arrow_yoko.svg") no-repeat;
 background-size: contain;
}
.about-keyword-count-box::after {
 content: "";
 position: absolute;
 bottom: -10px;
 left: 95px;
 width: calc(100% - 122px);
 height: 33px;
 background: #ffdc48;
 z-index: -1;
}
.about-keyword-evi {
 margin: 20px 0 80px;
 font-size: 1.4rem;
 text-align: right;
}
.about-achievement-contents {
 position: relative;
 margin-bottom: 110px;
}
.about-achievement-txt {
 background: #fff;
 border: 7px solid #ffdc48;
 position: absolute;
 top: 196px;
 right: 0;
 padding: 30px;
 font-size: 2.4rem;
 width: 510px;
 line-height: 43px;
}
.about-achievement-txt::before {
 content: "";
 position: absolute;
 top: 70px;
 left: -37px;
 width: 0;
 height: 0;
 border-style: solid;
 border-width: 0 35px 37px 0;
 border-color: transparent #ffdc48 transparent transparent;
}
.about-achievement-txt::after {
 content: "";
 position: absolute;
 top: 76px;
 left: -23px;
 width: 0;
 height: 0;
 border-style: solid;
 border-width: 0 23px 23px 0;
 border-color: transparent #fff transparent transparent;
}
.about-achievement-txt-marker {
 font-size: 3.6rem;
 font-weight: bold;
 position: relative;
 z-index: 1;
 display: inline-block;
}
.about-achievement-txt-marker::before {
 content: "";
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 25px;
 background: #ffdc48;
 z-index: -1;
}
.about-achievement-list {
 display: flex;
 flex-flow: row wrap;
 justify-content: space-between;
 align-items: flex-start;
}
.about-achievement-list li {
 width: 33%;
 max-width: 350px;
 opacity: 1;
 transition: 0.3s;
}
.about-achievement-list li:hover {
 opacity: 0.8;
}
.about-achievement-list li .h4-title {
 margin-bottom: 22px;
 text-align: center;
}
.about-achievement-num {
 font-size: 3.6rem;
 font-weight: bold;
 position: relative;
 z-index: 0;
}
.about-achievement-num::before {
 content: "";
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 27px;
 background: #ffdc48;
 z-index: -1;
}
.about-achievement-img {
 margin-bottom: 10px;
}
.about-achievement-list-title {
 font-size: 1.6rem;
 text-decoration: underline;
 display: inline;
 position: relative;
}
.about-achievement-list-title::before {
 content: "";
 position: absolute;
 bottom: 5px;
 right: -20px;
 width: 14px;
 height: 12px;
 background: url(../img/common/icon_blank.svg) no-repeat;
 background-size: contain;
}
.about-achievement-list li:nth-child(1),
.about-achievement-list li:nth-child(2),
.about-achievement-list li:nth-child(3) {
 margin-bottom: 38px;
}
.about-achievement-list-txt {
 font-size: 1.8rem;
 margin: 47px 0 10px;
}
.about-achievement-result {
 font-size: 3.6rem;
 line-height: 66px;
}
.about-achievement-result .result-emphasis {
 font-size: 4.4rem;
 font-weight: bold;
}
.about-achievement-result-marker {
 position: relative;
 background: linear-gradient(transparent 41%, #ffdc48 0%);
 display: inline;
 z-index: 0;
}
.about-archievement-arrow {
 margin: 80px auto;
}
.about-more-increase .h3-title span {
 padding: 0 50px;
 position: relative;
}
.about-more-increase .h3-title span::before {
 content: "";
 position: absolute;
 top: 0px;
 left: 27px;
 width: 2px;
 height: 53px;
 background: #222;
 transform: rotate(-45deg);
}
.about-more-increase .h3-title span::after {
 content: "";
 position: absolute;
 top: 0px;
 right: 27px;
 width: 2px;
 height: 53px;
 background: #222;
 transform: rotate(45deg);
}
.about-more-increase-txt {
 font-size: 1.8rem;
 line-height: 27px;
 margin-bottom: 40px;
}
.about-more-increase-fukidashi .fukidashi {
 padding: 30px;
 background: #fff;
 border: 7px solid #ffdc48;
 display: inline-block;
 position: relative;
 z-index: 1;
}
.about-more-increase-fukidashi .fukidashi::before {
 content: "";
 position: absolute;
 bottom: 8px;
 right: -37px;
 width: 0;
 height: 0;
 border-style: solid;
 border-width: 41px 37px 0 0;
 border-color: #ffdc48 transparent transparent transparent;
}
.about-more-increase-fukidashi .fukidashi::after {
 content: "";
 position: absolute;
 bottom: 20px;
 right: -23px;
 width: 0;
 height: 0;
 border-style: solid;
 border-width: 23px 23px 0 0;
 border-color: #fff transparent transparent transparent;
}
.about-more-increase-fukidashi .fukidashi p {
 font-size: 1.8rem;
 font-weight: bold;
 width: 540px;
 display: inline-block;
}
.about-more-increase-fukidashi .fukidashi .name {
 font-weight: normal;
 text-align: right;
 display: block;
 margin-top: 10px;
}
.about-more-increase-voice-img {
 position: relative;
 z-index: 0;
 margin: -150px 0 80px auto;
}
/*---1140px---*/
@media screen and (max-width: 1140px) {
 .about-achievement-list-title {
  padding-right: 25px;
 }
 .about-achievement-list li .about-achievement-list-title::before {
  right: 5px !important;
 }
}
/*---1100px---*/
@media screen and (max-width: 1100px) {
 .about-box01-box {
  padding: 40px 150px 0 0;
 }
 .about-box01-box p {
  padding: 15px;
 }
 .about-box01-arrow {
  width: 50px;
  height: auto;
 }
}
/*---1024px---*/
@media screen and (max-width: 1024px) {
 .about-achievement-num {
  font-size: 3rem;
 }
 .about-achievement-result {
  font-size: 3rem;
 }
 .about-achievement-result .result-emphasis {
  font-size: 4rem;
 }
 .about-more-increase-fukidashi .fukidashi p {
  width: 410px;
 }
 .about-more-increase-fukidashi .fukidashi p br {
  display: none;
 }
}
/*---1000px---*/
@media screen and (max-width: 1000px) {
 .about-box01-box {
  padding: 30px 110px 0 0;
 }
 .about-keyword-list .about-keyword span {
  font-size: 3rem;
 }
 .about-keyword-count:not(:last-child) {
  margin-bottom: 43px;
 }
 .about-keyword-count-box {
  font-size: 4rem;
 }
 .about-keyword-count-box::before {
  width: 55px;
  height: 17px;
 }
}
/*---930px---*/
@media screen and (max-width: 930px) {
 .about-box01-box {
  padding: 20px 80px 0 0;
 }
 .about-box01-box p {
  padding: 10px;
  font-size: 1.6rem;
 }
}
/*---860px---*/
@media screen and (max-width: 860px) {
 .about-box01-box {
  padding: 20px 110px 0 0;
 }
 .about-box01-box img {
  width: 230px;
 }
 .about-keyword-list .about-keyword::after {
  width: 30px;
  height: 30px;
 }
 .about-achievement-txt {
  width: 422px;
  font-size: 2rem;
  line-height: 34px;
  top: 230px;
 }
 .about-achievement-txt-marker {
  font-size: 3.4rem;
 }
 .about-more-increase-fukidashi .fukidashi {
  padding: 20px;
 }
 .about-more-increase-fukidashi .fukidashi p {
  width: 290px;
 }
}
/*---767px---*/
@media screen and (max-width: 767px) {
 .about-box01 {
  display: block;
 }
 .about-box01-arrow {
  transform: rotate(90deg);
  margin: 55px auto 30px;
 }
 .about-box01-box {
  padding: 25px 50px 0 0;
 }
 .about-box01-box p {
  padding: 15px;
  max-width: 300px;
  border: 5px solid #ffdc48;
 }
 .about-box01-box p::before {
  border-width: 0 29px 31px 0;
  bottom: 13px;
  left: -34px;
 }
 .about-box01-box p::after {
  border-width: 0 23px 23px 0;
  bottom: 16px;
  left: -23px;
 }
 .about-box01-box p br {
  display: none;
 }
 .about-box01-box img {
  width: initial;
  width: auto;
 }
 .about-box02 .about-box02-box:nth-child(1) .h4-title {
  padding: 13px 0 47px 0;
 }
 .about-box02 .h4-title {
  padding-bottom: 41px;
 }
 .about-keyword-list .about-keyword span {
  font-size: 1.8rem;
  line-height: 1.2;
  padding: 5px 0;
 }
 .about-keyword-list .about-keyword:nth-child(2) span {
  padding: 15.5px 0;
 }
 .about-keyword-count:not(:last-child) {
  margin-bottom: 52px;
 }

 .about-achievement-txt {
  position: relative;
  margin-top: -120px;
  padding: 15px;
  width: initial;
  width: auto;
  top: initial;
  top: auto;
 }
 .about-achievement-txt-marker {
  font-size: 3rem;
 }
 .about-achievement-txt::before {
  top: -40px;
  right: 84px;
  left: initial;
  left: auto;
  border-width: 35px 0 0 37px;
  border-color: transparent transparent transparent #ffdc48;
 }
 .about-achievement-txt::after {
  top: -23px;
  right: 90px;
  left: initial;
  left: auto;
  border-width: 23px 0 0 23px;
  border-color: transparent transparent transparent #fff;
 }
 .about-achievement-contents img {
  margin: 0 auto;
 }
 .about-achievement-txt-marker::before {
  height: 17px;
 }
 .about-achievement-contents {
  margin-bottom: 30px;
 }

 .about-achievement-list li {
  width: 49%;
  max-width: initial;
  max-width: auto;
 }
 .about-achievement-list li .h4-title {
  font-size: 1.8rem;
 }
 .about-achievement-num {
  font-size: 2.4rem;
 }
 .about-achievement-num::before {
  height: 16px;
 }
 .about-achievement-list-title {
  font-size: 1.4rem;
 }
 .about-achievement-list-txt {
  font-size: 1.4rem;
 }
 .about-achievement-result {
  font-size: 2rem;
  line-height: 1.5;
 }
 .about-achievement-result .result-emphasis {
  font-size: 2.8rem;
 }
 .about-more-increase .h3-title span::before,
 .about-more-increase .h3-title span::after {
  height: 37px;
 }
 .about-more-increase-txt {
  font-size: 1.4rem;
  line-height: 1.5;
 }
 .about-more-increase-voice-img {
  margin: -30px 0 0 0;
  width: 70%;
 }
 .about-more-increase-fukidashi .fukidashi {
  padding: 9px;
  margin-right: 0;
  margin-left: auto;
  display: block;
  width: 315px;
  border: 5px solid #ffdc48;
 }
 .about-more-increase-fukidashi .fukidashi::before {
  bottom: -36px;
  right: 48px;
  border-width: 36px 38px 0 0;
 }
 .about-more-increase-fukidashi .fukidashi::after {
  bottom: -23px;
  right: 57px;
 }
 .about-more-increase {
  margin-bottom: 60px;
 }
}
/*---640px---*/
@media screen and (max-width: 640px) {
 .about-box01-box p {
  max-width: 200px;
 }
 .about-keyword-count-box::before {
  display: none;
 }
 .about-keyword-count-box {
  padding-left: 0;
  font-size: 3.2rem;
 }
 .about-keyword-count-box::after {
  width: calc(100% - 18px);
  left: 0;
 }
 .about-keyword-count-unit {
  font-size: 1.6rem;
 }
 .about-keyword-count:not(:last-child) {
  margin-bottom: 61px;
 }
 .about-keyword-list .about-keyword::after {
  width: 20px;
  height: 20px;
 }

 .about-achievement-list li {
  width: 100%;
 }
 .about-achievement-list li:not(:last-child) {
  margin-bottom: 30px;
 }
}
/*---410px---*/
@media screen and (max-width: 410px) {
 .about-box01-box p {
  max-width: 160px;
  padding: 5px;
  font-size: 1.4rem;
  line-height: 1.5;
 }
}
/*---375px---*/
@media screen and (max-width: 375px) {
 .about-more-increase-fukidashi .fukidashi {
  width: 240px;
  padding: 10px;
 }
 .about-more-increase-fukidashi .fukidashi p {
  width: 206px;
  font-size: 1.4rem;
 }
 .about-keyword-count-box {
  font-size: 3rem;
 }
}

/*---------performance---------*/
.performance-box:not(:last-child) {
 margin-bottom: 80px;
}
.performance-box .h3-title {
 margin-bottom: 14px;
}
.performance-link {
 font-size: 1.8rem;
 margin-bottom: 30px;
}
.performance-link a {
 text-decoration: underline;
 display: inline-block;
 padding-right: 30px;
 position: relative;
}
.performance-link a::before {
 content: "";
 position: absolute;
 top: 5px;
 right: 0;
 width: 21px;
 height: 18px;
 background: url(../img/common/icon_blank.svg) no-repeat;
 background-size: contain;
}
.explain-box {
 display: flex;
 flex-flow: row nowrap;
 justify-content: space-between;
 align-items: flex-start;
 margin-bottom: 40px;
}
.explain-box .txt-box {
 width: 40%;
}
.explain-box .explain {
 font-size: 1.8rem;
 line-height: 27px;
}
.explain-box .img-box {
 width: 58%;
}
.article-case {
 background: #eee;
 padding: 30px;
 position: relative;
}
.article-case .icon-aquare01 {
 width: 30px;
 height: 30px;
 position: absolute;
 top: 0;
 left: 0;
}
.article-case .icon-aquare01::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 30px;
 height: 10px;
 background: #ffdc48;
}
.article-case .icon-aquare01::after {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 10px;
 height: 30px;
 background: #ffdc48;
}
.article-case-box {
 display: flex;
 flex-flow: row nowrap;
 justify-content: space-between;
 align-items: flex-start;
}
.article-case-box .h4-title {
 line-height: 28px;
 width: 27.6%;
}
.article-case-list {
 width: 65.8%;
 display: flex;
 flex-flow: row nowrap;
 justify-content: space-between;
 align-items: flex-start;
}
.article-case-list01,
.article-case-list02 {
 width: 49%;
}
.article-case-name {
 font-size: 1.6rem;
 text-decoration: underline;
 padding-left: 10px;
 position: relative;
}
.article-case-name:not(:nth-child(3)) {
 margin-bottom: 10px;
}
.article-case-name::before {
 content: "";
 position: absolute;
 top: 9px;
 left: 0;
 width: 0;
 height: 0;
 border-style: solid;
 border-width: 4px 0 4px 6px;
 border-color: transparent transparent transparent #222222;
}
.article-case-name a {
 position: relative;
 padding-right: 20px;
 z-index: 0;
 display: inline;
}
.article-case-name a::before {
 content: "";
 position: absolute;
 bottom: 4px;
 right: 0;
 width: 14px;
 height: 12px;
 background: url(../img/common/icon_blank.svg) no-repeat;
 background-size: contain;
}
.article-case .icon-aquare02 {
 width: 30px;
 height: 30px;
 position: absolute;
 bottom: 0;
 right: 0;
}
.article-case .icon-aquare02::before {
 content: "";
 position: absolute;
 bottom: 0;
 right: 0;
 width: 30px;
 height: 10px;
 background: #ffdc48;
}
.article-case .icon-aquare02::after {
 content: "";
 position: absolute;
 bottom: 0;
 right: 0;
 width: 10px;
 height: 30px;
 background: #ffdc48;
}
.performance-box03 .article-case-list {
 width: 68.5%;
}
.performance-box .article-case-list .article-case-name a {
 background: linear-gradient(transparent 100%, #ffdc48 0%);
 display: inline;
 transition: 0.3s;
}
.performance-box .article-case-list .article-case-name a:hover {
 background: linear-gradient(transparent 52%, #ffdc48 0%);
}

/*---767px---*/
@media screen and (max-width: 767px) {
 .explain-box {
  flex-flow: column-reverse;
  margin-bottom: 20px;
 }
 .explain-box .txt-box,
 .explain-box .img-box {
  width: 100%;
 }
 .explain-box .img-box img {
  margin: 0 auto;
 }
 .performance-link {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
 }
 .explain-box .explain {
  font-size: 1.4rem;
  line-height: 21px;
 }
 .article-case-box {
  display: block;
 }
 .article-case-box .h4-title {
  width: initial;
  width: auto;
  text-align: left;
  font-size: 2.4rem;
 }
 .article-case-list {
  width: 100%;
  display: block;
 }
 .article-case-list01 {
  margin-bottom: 10px;
 }
 .article-case-list01,
 .article-case-list02,
 .performance-box03 .article-case-list {
  width: 100%;
 }
 .article-case {
  padding: 30px 15px;
 }
 .performance-box:not(:last-child) {
  margin-bottom: 60px;
 }
 .performance-box .explain-box .txt-box {
  margin-top: 20px;
 }
 .article-case .icon-aquare01::before,
 .article-case .icon-aquare02::before {
  width: 15px;
  height: 5px;
 }
 .article-case .icon-aquare01::after,
 .article-case .icon-aquare02::after {
  width: 5px;
  height: 15px;
 }
}

/*---------schedule---------*/
.schedule .section-intro-txt {
 margin-bottom: 10px;
}
.schedule-attention {
 font-size: 1.4rem;
 margin-bottom: 40px;
}
.schedule-flow {
 margin-bottom: 84px;
}
.schedule-step {
 position: relative;
}
.schedule-step-box {
 display: flex;
 flex-flow: row nowrap;
 justify-content: space-between;
 align-items: center;
 padding: 0 50px;
 background: #c5d5de;
 width: 91%;
}
.schedule-step-num {
 font-size: 18rem;
 font-family: "Roboto", sans-serif;
 color: #fff;
 font-weight: 700;
 width: 20%;
 text-align: center;
}
.schedule-step-txt {
 font-size: 1.8rem;
 line-height: 27px;
 width: 80%;
}
.schedule-verification {
 padding: 30px 27px;
 background: #fff;
 border: 10px solid #ffdc48;
 display: inline-block;
 position: absolute;
 bottom: -90px;
 right: 0;
}
.schedule-verification::before {
 content: "";
 position: absolute;
 top: 13px;
 left: -37px;
 width: 0;
 height: 0;
 border-style: solid;
 border-width: 0 35px 37px 0;
 border-color: transparent #ffdc48 transparent transparent;
}
.schedule-verification::after {
 content: "";
 position: absolute;
 top: 23px;
 left: -17px;
 width: 0;
 height: 0;
 border-style: solid;
 border-width: 0 17px 17px 0;
 border-color: transparent #fff transparent transparent;
}
.schedule-verification p {
 font-size: 2.4rem;
 font-weight: bold;
}
.schedule-verification p span {
 padding: 5px 15px;
 background: #222;
 color: #fff;
 margin-left: 20px;
 font-size: 3.6rem;
 font-family: "Roboto", sans-serif;
 font-weight: 700;
}
.schedule-step-arrow {
 padding: 40px 0;
}
.schedule-step-arrow img {
 margin: 0 auto;
}
.schedule-step-attention {
 font-size: 1.4rem;
 margin-top: 10px;
}
.schedule-step-last {
 background: #eee;
 padding: 8px;
 display: flex;
 flex-flow: row nowrap;
 justify-content: center;
 align-items: center;
}
.schedule-step-title {
 font-size: 2.4rem;
 font-weight: bold;
}
.schedule-step-en-title {
 font-family: "Roboto", sans-serif;
 font-size: 8rem;
 font-weight: 700;
 margin-right: 20px;
}
.schedule-step-last .slash {
 color: #c5d5de;
 font-size: 10rem;
 font-weight: bold;
 margin: 0 30px;
}
.schedule-step-last-txt {
 font-size: 1.8rem;
}
.schedule-step-last-txt span {
 font-size: 2.4rem;
 font-weight: bold;
}
.schedule-reason {
 margin-top: 80px;
}
.schedule-reason-contents {
 display: flex;
 flex-flow: row nowrap;
 justify-content: space-between;
 align-items: flex-start;
}
.reason-contents-txt {
 width: 65.8%;
}
.schedule-reason .txt {
 font-size: 1.8rem;
 line-height: 27px;
}
.reason-contents-img {
 width: 32%;
}
.schedule-reason .h4-title {
 margin-top: 40px;
}
.schedule-reason .reason-list li {
 font-size: 1.8rem;
 line-height: 27px;
 padding-left: 30px;
 position: relative;
}
.schedule-reason .reason-list li::before {
 content: "";
 position: absolute;
 top: 6px;
 left: 0;
 width: 16px;
 height: 16px;
 border: 3px solid #ffdc48;
}
.ceo-name {
 font-size: 1.4rem;
 margin-top: 10px;
 line-height: 21px;
}
.schedule-reason-last-txt {
 font-size: 1.8rem;
 line-height: 27px;
 margin-top: 40px;
}
/*---1024px---*/
@media screen and (max-width: 1024px) {
 .schedule-step-title {
  font-size: 2rem;
 }
 .schedule-step-en-title {
  font-size: 7rem;
 }
 .schedule-step-last-txt {
  font-size: 1.6rem;
 }
 .schedule-step-last-txt span {
  font-size: 2.2rem;
 }
}
/*---860px---*/
@media screen and (max-width: 860px) {
 .schedule-step-en-title {
  font-size: 5rem;
 }
}
/*---767px---*/
@media screen and (max-width: 767px) {
 .schedule-step-box {
  display: block;
  padding: 30px 30px 50px 30px;
 }
 .schedule-step-num {
  font-size: 8rem;
  width: 100%;
  text-align: left;
 }
 .schedule-step-txt .h4-title {
  font-size: 1.8rem;
  text-align: left;
 }
 .schedule-step-txt p {
  font-size: 1.4rem;
  line-height: 1.5;
 }
 .schedule-verification {
  padding: 17px 16px;
  border: 5px solid #ffdc48;
  bottom: -50px;
 }
 .schedule-verification p {
  font-size: 1.8rem;
 }
 .schedule-verification p span {
  padding: 5px 11px;
  font-size: 2.4rem;
  margin-left: 15px;
 }
 .schedule-verification::before {
  left: -30px;
  top: 13px;
  border-width: 0 30px 33px 0;
 }
 .schedule-verification::after {
  top: 18px;
  left: -20px;
  border-width: 0 20px 19px 0;
 }
 .schedule-step-txt {
  width: 100%;
 }
 .schedule-step-arrow {
  padding: 40px 9% 40px 0;
 }
 .schedule-step-title {
  font-size: 1.8rem;
  padding-bottom: 15px;
  border-bottom: 4px solid #c5d5de;
 }
 .schedule-step-en-title {
  font-size: 6rem;
  display: block;
  margin-right: 0;
 }
 .schedule-step-last .slash {
  display: none;
 }
 .schedule-step-last {
  display: block;
  width: 91%;
  padding: 15px 15px 30px 15px;
 }

 .schedule-reason-contents {
  display: block;
 }
 .reason-contents-txt {
  width: 100%;
 }
 .schedule-reason .txt {
  font-size: 1.4rem;
 }
 .schedule-reason .h4-title {
  font-size: 1.8rem;
  text-align: left;
  margin-bottom: 10px;
  margin-top: 30px;
 }
 .schedule-reason .reason-list li {
  font-size: 1.4rem;
 }
 .schedule-reason-last-txt {
  font-size: 1.4rem;
  line-height: 21px;
  margin-bottom: 30px;
 }
 .reason-contents-img {
  display: block;
  max-width: 225px;
  width: 100%;
  margin: 0 auto;
 }
}

/*---------plan-estimate---------*/
.plan-estimate {
 padding-bottom: 120px;
}
.plan-estimate-box01,
er .plan-estimate-box01 {
 margin-bottom: 80px;
}
.plan-estimate .h3-title span {
 display: block;
 font-size: 2.4rem;
}
.plan-explain {
 font-size: 1.8rem;
 margin-bottom: 20px;
}
.plan-contents-list ul {
 padding-left: 30px;
}
.plan-contents-list ul li {
 font-size: 1.8rem;
 line-height: 27px;
}
.plan-contents-list .price {
 font-size: 1.8rem;
}
.plan-contents-list .price span {
 font-size: 2.4rem;
 font-weight: bold;
}
.plan-estimate .plan-contents01 {
 border-top: 4px solid #222;
 border-bottom: 1px solid #222;
}
.plan-estimate .plan-contents03 {
 border-top: 1px solid #222;
 border-bottom: 4px solid #222;
 position: relative;
}
.plan-estimate .plan-contents03::before {
 content: "丸っとプランのみ！";
 position: absolute;
 bottom: 30px;
 right: 0;
 padding: 80px 44px;
 background: #fff;
 font-weight: bold;
 font-size: 2.4rem;
 border: 10px solid #c5d5de;
 width: 255px;
 line-height: 28px;
 z-index: 1;
}
.plan-estimate .plan-contents03::after {
 content: "";
 position: absolute;
 bottom: 30px;
 right: 255px;
 width: 30px;
 height: 236px;
 background: #fff;
}
.plan-contents-box {
 padding: 30px 0;
 display: flex;
 flex-flow: row nowrap;
 justify-content: flex-start;
 align-items: center;
}
.plan-contents-box .box:nth-child(1) {
 width: 57%;
 position: relative;
}
.plan-contents-box .box:nth-child(1)::before {
 content: "";
 position: absolute;
 top: 50%;
 right: 0;
 transform: translateY(-50%);
 width: 1px;
 height: 100%;
 background: #222;
}
.plan-contents-box .box .price {
 padding-left: 30px;
}
.plan-sum-price {
 background: #c5d5de;
 padding: 30px;
 align-items: flex-start;
}
.plan-sum-price > p {
 font-size: 1.4rem;
 width: 57%;
}
.sum-price-box {
 padding-left: 30px;
}
.sum-price-box .sum {
 font-size: 3.6rem;
}
.sum-price-box .sum span {
 font-size: 4.4rem;
}
.sum-price-box .sum .non-tax {
 font-size: 1.8rem;
}
.sum-price-box .half {
 font-size: 1.8rem;
}
.sum-price-box .half span {
 font-size: 2.4rem;
}
.sum-price-box .half .non-tax {
 font-size: 1.4rem;
}
.sum-price-box .marker {
 background: linear-gradient(transparent 51%, #ffdc48 0%);
 display: inline;
 font-weight: bold;
}
.plan-estimate-box02 {
 margin-bottom: 80px;
}
.plan-estimate-box02 .plan-contents01 {
 border-bottom: 4px solid #222;
}
.plan-estimate-box03 {
 display: flex;
 flex-flow: row nowrap;
 justify-content: flex-start;
 align-items: center;
 margin-bottom: 80px;
}
.discount {
 padding: 50px;
 border: 10px solid #ffdc48;
 margin-right: 30px;
 width: 31%;
 text-align: center;
 margin-bottom: 0;
}
.discount-content {
 font-size: 2.4rem;
 line-height: 36px;
}
.discount-content span {
 font-weight: bold;
}
/*---1030px---*/
@media screen and (max-width: 1030px) {
 .sum-price-box .sum {
  font-size: 3rem;
 }
 .sum-price-box .sum span {
  font-size: 4rem;
 }
}
/*---1024px---*/
@media screen and (max-width: 1024px) {
 .plan-estimate .plan-contents03::before {
  padding: 75px 15px;
  width: 200px;
 }
 .plan-estimate .plan-contents03::after {
  right: 200px;
 }
 .plan-contents-box .box:nth-child(1) {
  width: 47%;
 }
 .plan-sum-price > p {
  width: 47%;
 }
 .sum-price-box .sum {
  font-size: 2.6rem;
 }
 .sum-price-box .sum span {
  font-size: 3.4rem;
 }
 .sum-price-box .half {
  font-size: 1.6rem;
 }
 .sum-price-box .half span {
  font-size: 2rem;
 }
 .discount {
  padding: 37px;
  font-size: 2.8rem;
 }
}
/*---767px---*/
@media screen and (max-width: 767px) {
 .plan-estimate .h3-title {
  margin-bottom: 21px;
 }
 .plan-estimate .h3-title span {
  font-size: 1.8rem;
 }
 .plan-explain {
  font-size: 1.4rem;
 }
 .plan-contents-box .h4-title {
  text-align: left;
 }
 .plan-contents-list ul li,
 .plan-contents-box .box .price {
  font-size: 1.4rem;
 }
 .plan-contents-box {
  display: block;
 }
 .plan-contents-box .box:nth-child(1)::before {
  display: none;
 }
 .plan-contents-box .box {
  width: 100% !important;
 }
 .plan-contents-box .box .price {
  text-align: right;
 }
 .plan-contents02 .box:nth-child(2),
 .plan-contents03 .box:nth-child(2) {
  width: 71% !important;
 }
 .plan-estimate .plan-contents03::before {
  bottom: 16px;
  padding: 26px 20px;
  width: 75px;
  letter-spacing: 5px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-size: 1.6rem;
  border: 5px solid #c5d5de;
 }
 .plan-estimate .plan-contents03::after {
  right: 75px;
 }
 .plan-contents-box {
  padding: 20px;
 }
 .plan-sum-price > p {
  width: 100%;
  font-size: 1.2rem;
 }
 .sum-price-box {
  padding-left: 0;
 }
 .sum-price-box .sum {
  font-size: 1.8rem;
  text-align: center;
 }
 .sum-price-box .sum span {
  font-size: 3.6rem;
 }
 .sum-price-box .half {
  font-size: 1.4rem;
  text-align: center;
 }
 .sum-price-box .half span {
  font-size: 2.4rem;
 }
 .plan-estimate-box03 {
  display: block;
 }
 .discount {
  width: 90px;
  margin: 0 auto 21px;
  padding: 26px 0;
  font-size: 2.4rem;
  border: 5px solid #ffdc48;
 }
 .discount-content {
  font-size: 1.8rem;
  line-height: 27px;
 }
}

/*---374px---*/
@media screen and (max-width: 374px) {
 .plan-contents02 .box:nth-child(2),
 .plan-contents03 .box:nth-child(2) {
  width: 66% !important;
 }
 .plan-contents-box {
  padding: 20px 10px;
 }
}

/*---360px---*/
@media screen and (max-width: 360px) {
 .sum-price-box .sum,
 .sum-price-box .sum .non-tax {
  font-size: 1.6rem;
 }
 .sum-price-box .sum span {
  font-size: 3rem;
 }
 .sum-price-box .half span {
  font-size: 2rem;
 }
 .sum-price-box .half {
  font-size: 1.2rem;
 }
}

/*---------contact---------*/
.contact {
 background: #c5d5de;
 padding-bottom: 120px;
}
.contact .h2-en-title {
 color: #fff;
}
.contact .txt {
 font-size: 1.8rem;
 margin-bottom: 22px;
}
.contact-form table {
 width: 100%;
 border-top: 4px solid #222;
 border-bottom: 4px solid #222;
}
.contact-form table tr th {
 font-size: 2.4rem;
 padding: 30px 30px 30px 0;
 border-bottom: 1px solid #222;
 position: relative;
}
.contact-form table tr th::after {
 content: "";
 position: absolute;
 top: 30px;
 right: 0;
 width: 1px;
 height: calc(100% - 60px);
 background: #222;
}
::placeholder {
 color: #ccc;
 font-size: 1.8rem;
}
.contact-form table tr th.required,
.contact-form table tr th.non-required {
 position: relative;
 width: 32%;
 text-align: left;
}
.contact-form table tr th.required::before {
 content: "必須";
 position: absolute;
 top: 36px;
 right: 30px;
 font-size: 1.8rem;
 color: #fff;
 background: red;
 padding: 3px 32px;
}
.contact-form table tr th.non-required::before {
 content: "任意※";
 position: absolute;
 top: 36px;
 right: 30px;
 font-size: 1.8rem;
 color: #222;
 background: #ffdc48;
 padding: 3px 22.8px;
}
.contact-form table tr td {
 border-bottom: 1px solid #222;
 padding: 30px;
}
.contact-form input[type="text"] {
 width: 100%;
 height: 47px;
 background: #fff;
 font-size: 1.8rem;
 padding: 0 10px;
 border-radius: 5px;
 box-shadow: inset 1px 1px 1px 0px rgba(0, 0, 0, 0.16);
}
.contact-form .attention {
 margin-top: 10px;
 font-size: 1.4rem;
}
.contact-form textarea {
 background: #fff;
 width: 100%;
 height: 128px;
 font-size: 1.8rem;
 padding: 10px;
 border-radius: 5px;
 box-shadow: inset 1px 1px 1px 0px rgba(0, 0, 0, 0.16);
}
.contact-form .contact-detail th {
 vertical-align: top;
}
.contact-form table tr:last-child th,
.contact-form table tr:last-child td {
 border-bottom: none;
}
.policy-check-btn {
 display: block;
 width: 350px;
 margin: 30px auto 0;
 padding: 25px 23px;
 border: 1px solid #222;
 border-radius: 5px;
}
.policy-check-btn p {
 font-size: 1.8rem;
 display: inline-block;
 vertical-align: middle;
 margin-left: 20px;
}
.policy-check-btn p a {
 text-decoration: underline;
}
.policy-check-btn input[type="checkbox"] {
 /* all: revert; */
 display: none;
}
.policy-check-btn input[type="checkbox"] + label {
 display: none;
 cursor: pointer;
 display: inline-block;
 position: relative;
 padding-left: 25px;
 padding-right: 10px;
}
.policy-check-btn input[type="checkbox"] + label::before {
 content: "";
 position: absolute;
 display: block;
 box-sizing: border-box;
 width: 36px;
 height: 36px;
 border-radius: 5px;
 left: 0;
 top: 50%;
 transform: translateY(-50%);
 border: 2px solid #222;
 background: #fff;
 box-shadow: inset 1px 1px 1px 0px rgba(0, 0, 0, 0.16);
}
.policy-check-btn input[type="checkbox"]:checked + label::before {
 background: #222;
}
.policy-check-btn input[type="checkbox"]:checked + label::after {
 content: "";
 position: absolute;
 display: block;
 box-sizing: border-box;
 width: 22px;
 height: 13px;
 margin-top: -9px;
 top: 50%;
 left: 7px;
 transform: rotate(-45deg);
 border-bottom: 4px solid;
 border-left: 4px solid;
 border-color: #fff;
}
.policy-confirm-btn {
 width: 540px;
 display: block;
 margin: 0 auto;
}
.confirm-txt {
 color: #fff;
 font-size: 3.6rem;
 font-weight: bold;
 background: #ccc;
 padding: 13px 10px;
 width: 540px;
 text-align: center;
 display: block;
 margin: 30px auto 0;
 height: 80px;
}
.comfirm-send .confirm-txt {
 padding: 0;
}
.confirm-txt a {
 display: block;
 padding: 13px 0;
 background: #222;
 color: #fff;
 position: relative;
 overflow: hidden;
 z-index: 1;
 transition: 0.3s;
}
.confirm-txt a::before {
 content: "";
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: #ffdc48;
 transition: 0.3s;
 z-index: -1;
}
.confirm-txt a:hover {
 color: #222;
}
.confirm-txt a:hover::before {
 left: 0;
}

/*---バリデーション部分---*/
.err-msg {
 color: #ff001a;
 font-size: 1.8rem;
 margin-top: 5px;
}
.input-invalid {
 border: 2px solid #ff001a;
}
.err-msg-policy {
 text-align: center;
}
.policy-check-btn.input-invalid {
 border: 1px solid #ff001a;
}
.policy-check-btn.input-invalid input[type="checkbox"] + label::before {
 border-color: #ff001a;
}

/*---1024px---*/
@media screen and (max-width: 1024px) {
 .contact-form table tr th {
  font-size: 2rem;
 }
 .contact-form table tr th.required::before {
  font-size: 1.4rem;
  padding: 1px 20px;
  top: 42px;
 }
 .contact-form table tr th.non-required::before {
  font-size: 1.4rem;
  padding: 1px 13px;
  top: 42px;
 }
}
/*---960px---*/
@media screen and (max-width: 960px) {
 .contact-form input[type="text"] {
  font-size: 1.6rem;
  height: 42px;
 }
 .contact-form table tr th.required::before,
 .contact-form table tr th.non-required::before {
  top: 40px;
 }
 .contact-form table tr th {
  width: 40%;
 }
}
/*---767px---*/
@media screen and (max-width: 767px) {
 .err-msg {
  font-size: 1.4rem;
 }
 .contact .txt {
  font-size: 1.4rem;
 }
 .contact-form table tr th {
  width: 100%;
  display: block;
  border-bottom: none;
  padding: 20px 15px 0 15px;
  margin-bottom: 10px;
  font-size: 1.8rem;
 }
 .contact-form table tr td {
  width: 100%;
  display: block;
  padding: 0 15px 20px 15px;
 }
 .contact-form table tr th.required,
 .contact-form table tr th.non-required {
  width: 100%;
 }
 .contact-form table tr th.required::before,
 .contact-form table tr th.non-required::before {
  top: 20px;
  right: 0;
 }
 .contact-form .attention {
  font-size: 1.2rem;
 }
 .policy-check-btn input[type="checkbox"] + label::before {
  left: 10px;
 }
 .policy-check-btn {
  max-width: 270px;
  width: 100%;
  padding: 18.5px 10px;
 }
 .policy-check-btn p {
  font-size: 1.4rem;
 }
 .policy-check-btn input[type="checkbox"] + label::before {
  width: 30px;
  height: 30px;
 }
 .policy-check-btn input[type="checkbox"]:checked + label::after {
  width: 18px;
  height: 11px;
  left: 16px;
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: #fff;
 }
 .confirm-txt {
  font-size: 1.8rem;
  max-width: 345px;
  width: 100%;
  height: 60px;
  padding: 17px 10px;
 }
 .confirm-txt a {
  font-size: 1.8rem;
  padding: 16.5px 0;
 }
 .policy-check-btn {
  margin: 20px auto 0;
 }
 .policy-confirm-btn {
  max-width: 540px;
  width: 100%;
 }
}

/*---------footer---------*/
footer .container {
 display: flex;
 flex-flow: row nowrap;
 justify-content: space-between;
 align-items: center;
 background: #fff;
 padding-top: 23px;
 padding-bottom: 23px;
}
.footer-menu-box {
 display: flex;
 flex-flow: row nowrap;
 justify-content: space-between;
 align-items: center;
}
.footer-logo {
 width: 117px;
 height: auto;
}
.footer-menu {
 display: flex;
 flex-flow: row nowrap;
 justify-content: flex-start;
 align-items: center;
 margin-left: 72px;
}
.footer-menu li {
 padding: 0 20px;
 position: relative;
}
.footer-menu li:not(:last-child)::before {
 content: "";
 position: absolute;
 top: 0;
 right: 0;
 width: 1px;
 height: 26px;
 background: #ccc;
}
.footer-menu li a {
 font-size: 1.8rem;
 display: block;
 position: relative;
}
.footer-menu li a::before {
 content: "";
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 1px;
 background: #222;
 transition: 0.3s;
}
.footer-menu li a:hover::before {
 width: 100%;
}

.copyright {
 font-size: 1.4rem;
 color: #666;
}
/*---850px---*/
@media screen and (max-width: 850px) {
 .footer-menu {
  margin-left: 50px;
 }
 .footer-menu li a {
  font-size: 1.4rem;
 }
 .copyright {
  font-size: 1.2rem;
 }
}
/*---767px---*/
@media screen and (max-width: 767px) {
 footer .container {
  display: block;
  text-align: center;
 }
 .footer-menu-box {
  display: block;
 }
 .footer-logo {
  margin: 40px auto 20px;
 }
 .footer-menu {
  justify-content: center;
  margin: 0 auto 10px;
 }
}
/*---375px---*/
@media screen and (max-width: 375px) {
 .footer-menu li {
  padding: 0 10px;
 }
}

/*------------バリデーション------------*/
/* .field-invalid::before {
 content: "※必須項目です。";
 display: block;
 color: red;
}
.field-invalid input.field-required,
.field-invalid textarea.field-required {
 border: 1px solid red;
} */

/*----------------------お問い合わせ確認画面-----------------------*/
.confirm-box {
 margin-top: 67px;
 background: #c5d5de;
 padding: 120px 0;
}
.confirm-box .h2-en-title {
 color: #fff;
}
.confirm-box .contact-form table tr th {
 width: 40%;
}
.confirm-box .contact-form table tr td {
 font-size: 1.8rem;
}

.confirm-btns {
 display: flex;
 flex-flow: row nowrap;
 justify-content: center;
 align-items: center;
 margin-top: 30px;
}
.final-confirm-btn01 {
 max-width: 350px;
 width: 33%;
 text-align: center;
}
.final-confirm-btn01 a {
 display: block;
 padding: 18px 0;
 border: 4px solid #222;
 font-size: 2.4rem;
 font-weight: bold;
}
.final-confirm-btn02 {
 max-width: 540px;
 text-align: center;
 margin-left: 30px;
 cursor: pointer;
 width: 51%;
}
.final-confirm-btn02 .final-confirm-txt {
 display: block;
 padding: 13px 0;
 background: #222;
 color: #fff;
 font-size: 3.6rem;
 font-weight: bold;
}
/*-----767px-----*/
@media screen and (max-width: 767px) {
 .confirm-box {
  padding: 100px 0;
 }
 .confirm-box .contact-form table tr th {
  width: 100%;
  font-weight: bold;
 }
 .confirm-btns {
  flex-flow: column-reverse;
 }
 .final-confirm-btn02 .final-confirm-txt,
 .final-confirm-btn01 a {
  font-size: 1.8rem;
 }
 .final-confirm-btn01,
 .final-confirm-btn02 {
  max-width: 100%;
  width: 100%;
 }
 .final-confirm-btn02 {
  margin: 0 0 20px 0;
 }
 .final-confirm-btn02 .final-confirm-txt {
  padding: 16.5px 0;
 }
 .final-confirm-btn01 a {
  padding: 12.5px 0;
 }
 .confirm-btns {
  margin-top: 20px;
 }
}
/*----------------------完了画面-----------------------*/
.complete-box {
 margin-top: 67px;
 padding: 120px 0;
 background: #c5d5de;
}
.complete-box .h2-en-title {
 color: #fff;
}
.thanks-txt {
 font-size: 2.4rem;
 font-weight: bold;
 margin-bottom: 20px;
}
.complete-box .txt {
 font-size: 1.8rem;
 line-height: 27px;
}
.top-return-btn {
 display: block;
 text-align: center;
 margin-top: 80px;
}
.top-return-btn a {
 display: inline-block;
 font-size: 2.4rem;
 padding: 18px 10px;
 border: 4px solid #222;
 width: 350px;
 text-align: center;
}

/*---767px---*/
@media screen and (max-width: 767px) {
 .complete-box {
  padding: 100px 0;
 }
 .thanks-txt {
  font-size: 1.8rem;
  margin-bottom: 10px;
 }
 .complete-box .txt {
  font-size: 1.4rem;
 }
 .top-return-btn {
  margin-top: 60px;
 }
 .top-return-btn a {
  max-width: 345px;
  width: 100%;
  padding: 8px 10px;
 }
}

/*----------------------個人情報保護方針-----------------------*/
.policy-box {
 margin-top: 67px;
 padding: 120px 0;
}
.policy-intro {
 font-size: 1.8rem;
 line-height: 27px;
}
.policy-intro-sign-name {
 font-size: 1.8rem;
 text-align: right;
 margin-top: 20px;
}

.policy-box .box {
 margin-top: 80px;
}

.policy-list li,
.policy-list p,
.policy-list a {
 font-size: 1.8rem;
}
.policy-list ul li {
 padding-left: 20px;
 position: relative;
}
.policy-list ul li::before {
 content: "";
 position: absolute;
 top: 8px;
 left: 0;
 width: 10px;
 height: 10px;
 border-radius: 10px;
 background: #222;
}
.policy-list ul li:not(:last-child) {
 margin-bottom: 10px;
}
.policy-list a {
 text-decoration: underline;
}

.policy-list > li:not(:last-child) {
 margin-bottom: 40px;
}

.policy-box-about-contact {
 background: #c5d5de;
 padding: 30px;
 margin: 20px 0 80px;
}
.policy-box-about-contact p {
 font-size: 1.4rem;
}
.policy-box-about-contact-title {
 font-size: 1.8rem;
 font-weight: bold;
 margin-bottom: 10px;
}
.policy-return-btn {
 text-align: center;
 display: block;
 cursor: pointer;
 margin: 0 auto;
}
.policy-return-btn span {
 width: 350px;
 display: inline-block;
 padding: 18px 10px;
 border: 4px solid #222;
 font-size: 2.4rem;
}
/*---767px---*/
@media screen and (max-width: 767px) {
 .policy-box {
  padding: 100px 0;
 }
 .policy-intro,
 .policy-intro-sign-name {
  font-size: 1.4rem;
  line-height: 21px;
 }
 .policy-box .h4-title {
  text-align: left;
 }
 .policy-list li,
 .policy-list p,
 .policy-list a {
  font-size: 1.4rem;
  line-height: 21px;
 }
 .policy-list ul li::before {
  top: 6px;
 }
 .policy-return-btn span {
  font-size: 1.8rem;
  width: 100%;
  padding: 12.5px 10px;
 }
 .policy-return-btn {
  max-width: 345px;
  width: 100%;
 }
 .policy-box-about-contact {
  margin-bottom: 60px;
 }
}

/*----------------------会社概要-----------------------*/
.company-detail-box {
 margin-top: 67px;
 padding-top: 120px;
}
.company-mv {
 position: relative;
 margin-bottom: 60px;
}
.company-mv .company-mv-logo {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
}
.company-detail {
 width: 100%;
 border-top: 4px solid #222;
 border-bottom: 4px solid #222;
 margin-bottom: 80px;
}
.company-detail tr th {
 text-align: left;
 font-weight: bold;
 font-size: 2.4rem;
 font-weight: bold;
 vertical-align: middle;
 position: relative;
 border-bottom: 1px solid #222;
 padding: 30px 30px 30px 0;
 width: 28%;
}
.company-detail tr th::before {
 content: "";
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
 right: 0;
 width: 1px;
 height: calc(100% - 60px);
 background: #222;
}
.company-detail tr td {
 font-size: 1.8rem;
 vertical-align: middle;
 padding: 30px 0 30px 30px;
 border-bottom: 1px solid #222;
}
.company-detail tr:last-child th,
.company-detail tr:last-child td {
 border-bottom: none;
}
.company-return-btn {
 display: block;
 max-width: 350px;
 width: 100%;
 margin: 0 auto 120px;
}
.company-return-btn a {
 font-size: 2.4rem;
 font-weight: bold;
 padding: 10px 10px;
 border: 4px solid #222;
 width: 100%;
 display: block;
 text-align: center;
}
.company-detail td a {
 text-decoration: underline;
}
/*---767px---*/
@media screen and (max-width: 767px) {
 .company-detail-box {
  padding-top: 100px;
 }
 .company-detail {
  margin-bottom: 60px;
 }
 .company-detail tr th {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  padding: 20px 0 10px 0;
  border-bottom: none;
 }
 .company-detail tr td {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  padding: 0 0 20px 0;
 }
 .company-return-btn {
  margin-bottom: 100px;
 }
}
