@charset "UTF-8";
* {
  box-sizing: border-box;
}

html, body {
  padding: 0;
  margin: 0;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #444;
  line-height: 170%;
  scroll-behavior: smooth;
}

input,
select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-size: 16px;
  padding: 10px;
  border: none;
  background: #F5F5F5;
  display: block;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #eee;
}

.text-center {
  text-align: center;
}

h1, h2, h3, h4, h5, h6, p, strong, span, ul, li, dl, dt, dd, ol {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: #444;
}
a.btn {
  background: #f5f5f5;
  width: 180px;
  color: #fff;
  padding: 8px;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
a.btn:after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
a.btn.large {
  height: 50px;
  font-size: 16px;
  line-height: 50px;
}
a.btn.reverse {
  background: #fff;
  color: #444;
}
a.btn:hover {
  opacity: 0.7;
}

.ctabtn {
  display: block;
  animation: poyopoyo 2s ease-out infinite;
}

.ctabtn-form {
  background: #ffffff;
  border-radius: 100px;
  text-align: center;
  color: #333333;
  margin: 0 auto;
  display: block;
  width: 250px;
  padding: 10px;
  max-width: 100%;
  font-weight: bold;
}
.ctabtn-form:hover {
  transform: scale(1.1);
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: baseline;
}

.container {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}

ul {
  list-style: none;
}

#breadcrumbs {
  background: #faf8f5;
  font-size: 10px;
  line-height: 180%;
  color: #777;
}
@media screen and (max-width: 767px) {
  #breadcrumbs {
    padding: 0 10px;
  }
}
#breadcrumbs a {
  color: #777;
}

@media screen and (min-width: 768px) {
  .columns {
    display: flex;
    justify-content: space-between;
  }
  .columns.reverse {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .columns .column {
    width: 49%;
  }
}
@media screen and (max-width: 767px) {
  .columns .column {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .columns .column-wide {
    width: 63%;
  }
}
@media screen and (min-width: 768px) {
  .columns .column-thin {
    width: 35%;
  }
}

#header {
  padding: 15px 0;
}
#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}
#header .container .logo {
  display: block;
  width: 229px;
}
@media screen and (min-width: 768px) {
  #header .container nav#nav .nav {
    display: flex;
    justify-content: flex-end;
  }
}
#header .container nav#nav .nav li a {
  font-size: 16px;
  font-weight: bold;
  color: #f5f5f5;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  #header .container nav#nav .nav li a {
    color: #FFF;
    text-align: center;
    display: block;
    padding: 10px;
    position: relative;
  }
  #header .container nav#nav .nav li a:after {
    content: "";
    width: 50px;
    height: 1px;
    position: absolute;
    margin: 0 auto;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
  }
}
#header .container nav#nav .nav li a:hover {
  opacity: 0.7;
}
#header .container nav#nav .nav li:not(:first-child) a {
  border-left: 1px solid #f5f5f5;
}

@media screen and (max-width: 767px) {
  .menu-btn, .menu-close {
    width: 50px;
    height: 50px;
    display: flex;
    font-size: 30px;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
    border: none;
    color: #fff;
  }
  .menu-close {
    margin-top: 20px;
  }
  .menu-logo {
    width: 50%;
    display: block;
    margin: 0 auto 20px;
  }
  .menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    transform: translateX(100vw);
    transition: all 0.3s linear;
  }
  .menu.is-active {
    transform: translateX(0);
  }
  .menu__item {
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 768px) {
  .fv {
    background-image: url(../img/lp/header.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 50%;
    height: 600px;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .fv {
    position: relative;
  }
  .fv .ctabtn {
    position: absolute;
    width: 95%;
    height: auto;
    bottom: 5%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.fv .header-container {
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .fv .header-container {
    width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .fv .header-container {
    width: 65%;
  }
}
.fv .header-container h1 {
  font-size: 35px;
  line-height: 130%;
  margin-bottom: 20px;
}
.fv .header-container p {
  font-weight: bold;
  margin-bottom: 20px;
}
.fv .header-container ul {
  display: flex;
  margin-bottom: 30px;
}
.fv .header-container ul li {
  border: 1px solid;
  padding: 5px 10px;
  margin-right: 10px;
}
.fv .header-container a.ctabtn,
.fv .header-container a.ctabtn-form {
  width: 300px;
  max-width: 100%;
  margin: 0 0 20px !important;
  animation: none;
}
.fv .header-container a.ctabtn-form {
  background: #f5f5f5;
}
.fv .header-container .fv-nav {
  display: flex;
  justify-content: space-between;
}
.fv .header-container .fv-nav a {
  background: #fff;
  border-radius: 100px;
  padding: 10px;
  text-align: center;
  border: 1px solid #f5f5f5;
  color: #f5f5f5;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .fv .header-container .fv-nav a {
    font-size: 24px;
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .fv .header-container .fv-nav a {
    font-size: 16px;
    width: 47%;
    padding: 5px;
  }
}
.fv .header-container .fv-nav a:hover {
  background: #f5f5f5;
  color: #fff;
}

.page-header {
  background: #f5f5f5;
  height: 150px;
  justify-content: center;
  align-items: center;
  display: flex;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .page-header {
    height: 80px;
  }
}
.page-header h1 {
  font-size: 40px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .page-header h1 {
    font-size: 24px;
  }
}
.page-header.single-header {
  height: 100px;
}
@media screen and (max-width: 767px) {
  .page-header.single-header {
    height: 60px;
  }
}
.page-header.single-header strong {
  color: #fff;
  display: block;
  text-align: center;
  font-size: 35px;
}
@media screen and (max-width: 767px) {
  .page-header.single-header strong {
    font-size: 24px;
  }
}

.white {
  color: #fff;
}

.bg-white {
  background: #fff;
}

.bg-orange {
  background: linear-gradient(to bottom, #FFAA00, #F28C00);
  /*グラデーション以外は省略*/
}

.bg-beige {
  background: #faf8f5;
}

.bg-gray {
  background: #F5F5F5;
}

section.section {
  padding: 60px 0;
}
section.section .text-box {
  padding: 30px;
}
section.section h2 {
  line-height: 150%;
  letter-spacing: 0.05em;
  font-size: 24px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  section.section h2 {
    font-size: 30px;
  }
}
section.section.lp .container {
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  section.section.lp .container {
    padding: 0 15px;
  }
}
@media screen and (min-width: 768px) {
  section.section.lp .point {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
  }
}
section.section.lp .point li {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  section.section.lp .point li {
    margin-bottom: 40px;
    padding: 20px;
  }
  section.section.lp .point li:last-child {
    margin-bottom: 0;
  }
}
section.section.lp .point li img {
  width: 60%;
  display: block;
  margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
  section.section.lp .point li {
    width: 31%;
    padding: 20px;
  }
}
section.section.lp .point li h3 {
  text-align: center;
  margin-bottom: 10px;
  color: #F28C00;
  font-weight: bold;
}
section.section.lp .point li p {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  section.section.lp .reason {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  section.section.lp .reason li {
    width: 24%;
  }
}
@media screen and (max-width: 767px) {
  section.section.lp .reason li {
    margin-bottom: 40px;
  }
}
section.section.lp .reason li .img {
  margin: 0 auto 20px;
  width: 40%;
  display: block;
}
@media screen and (max-width: 767px) {
  section.section.lp .reason li .img {
    width: 30%;
    max-width: 300px;
  }
}
section.section.lp .reason li h3 {
  margin-bottom: 15px;
  text-align: center;
  padding: 0 10px;
  font-size: 20px;
  color: orange;
  font-weight: bold;
}
section.section.lp .reason li p {
  padding: 0 10px;
}
section.section.lp .reason-message {
  font-size: 18px;
}
section.section.lp .arrow {
  display: flex;
  justify-content: center;
}
section.section.lp .arrow img {
  width: 100px;
}
section.section.lp .notice-wrap {
  position: relative;
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  section.section.lp .notice-wrap {
    margin: 0 auto;
    width: 600px;
    padding-top: 90px;
  }
}
section.section.lp .notice-wrap .notice {
  color: #fff;
  margin-top: 40px;
  font-size: 18px;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  section.section.lp .notice-wrap .notice {
    padding: 20px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  section.section.lp .notice-wrap .notice p {
    width: 70%;
  }
}
section.section.lp .notice-wrap .img {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 30%;
}
@media screen and (max-width: 767px) {
  section.section.lp .notice-wrap .img {
    right: 3%;
    width: 29%;
  }
}
section.section.lp .box-list li {
  background: #fff;
  padding: 30px;
  margin-bottom: 40px;
  border-right: 2px solid #eee;
  border-bottom: 2px solid #eee;
}
section.section.lp .box-list li h3 {
  font-size: 20px;
}
section.section.lp .box-list li .meta {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  section.section.lp .box-list li .meta {
    display: flex;
    align-items: center;
  }
}
section.section.lp .box-list li .meta span {
  background: #5B6983;
  color: #FFF;
  padding: 0px 10px;
  font-size: 15px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  section.section.lp .box-list li .meta span {
    display: inline-block;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) {
  section.section.lp .box-list li dl {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  section.section.lp .box-list li dl dt {
    width: 250px;
  }
}
section.section.lp .box-list li dl dt img {
  max-width: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  section.section.lp .box-list li dl dt img {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  section.section.lp .box-list li dl dd {
    width: calc(100% - 270px);
  }
}
section.section.lp .box-list.statics li h3 {
  margin-bottom: 20px;
}
section.section.lp .past {
  margin-top: 40px;
}
section.section.lp .past dl {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #777;
  padding-bottom: 10px;
  margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
  section.section.lp .past dl {
    width: 700px;
  }
}
section.section.lp .past dt {
  width: 100px;
}
section.section.lp .past dd {
  width: calc(100% - 120px);
}
section.section.lp .interview dl {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
section.section.lp .interview dl:last-child {
  margin-bottom: 0;
}
section.section.lp .interview dl dt {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  overflow: hidden;
}
section.section.lp .interview dl dt img {
  display: block;
}
section.section.lp .interview dl dd {
  width: calc(100% - 120px);
  background: #faf8f5;
  padding: 20px;
}
section.section.lp .interview dl dd span {
  text-align: right;
  display: block;
  margin-top: 10px;
  font-size: 14px;
}
section.section.lp .interview dl.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  section.section.lp.closing .text-box {
    padding: 15px;
  }
}
section.section.lp.closing .img-box {
  padding-top: 0px;
  position: relative;
}
@media screen and (min-width: 768px) {
  section.section.lp.closing .img-box {
    width: 640px;
    margin: 0 auto;
    padding-top: 70px;
  }
}
section.section.lp.closing .img-box p {
  width: 70%;
}
section.section.lp.closing .img-box .img {
  position: absolute;
  right: 5%;
  bottom: -2px;
  width: 35%;
}
@media screen and (max-width: 767px) {
  section.section.lp.closing .img-box .img {
    width: 29%;
    right: 3%;
  }
}
section.section.page-plain.page-single h1 {
  color: #f5f5f5;
  font-size: 30px;
  margin: 20px 0 20px;
  font-weight: bold;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  section.section.page-plain.page-single h1 {
    font-size: 22px;
    margin: 10px 0 20px;
  }
}
section.section.page-plain .news-list li {
  border-bottom: 1px solid #eee;
  padding: 0 0 20px;
  margin: 0 0 20px;
}
section.section.page-plain .news-list li a {
  display: block;
  overflow: hidden;
}
section.section.page-plain .news-list li a:hover {
  opacity: 0.7;
}
section.section.page-plain .news-list li a h2 {
  margin: 10px 0;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  section.section.page-plain .news-list li a h2 {
    font-size: 16px;
  }
}
section.section.page-plain .news-list li a p {
  margin: 0;
  font-size: 13px;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  section.section.page-plain .news-list li a p {
    font-size: 15px;
  }
}
section.section.page-plain .news-list li::before {
  display: none;
}
section.section.page-plain .container {
  background: #fff;
  padding: 30px 15px;
}
@media screen and (max-width: 767px) {
  section.section.page-plain .container {
    width: 96%;
  }
}
@media screen and (min-width: 768px) {
  section.section.page-plain .container {
    padding: 60px 50px;
  }
}
section.section.page-plain h2 {
  margin-bottom: 15px;
  color: #f5f5f5;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #F9E0E5;
  margin-bottom: 20px;
}
section.section.page-plain h2:not(:first-child) {
  margin-top: 30px;
}
section.section.page-plain h2:after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 140px;
  height: 1px;
  background: #f5f5f5;
  left: 0;
}
section.section.page-plain h3 {
  margin-bottom: 10px;
  margin-top: 20px;
}
section.section.page-plain p {
  margin-bottom: 20px;
}
section.section.page-plain ul {
  margin-bottom: 20px;
}
section.section.page-plain ul li {
  position: relative;
  padding: 0 0 10px 20px;
}
section.section.page-plain ul li:before {
  left: 0;
  top: 0;
  color: #D14E97;
  content: "\f00c";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
section.section.page-plain ol {
  list-style-position: inside;
  padding-left: 5px;
  margin-bottom: 20px;
}
section.section.page-plain .pagenav {
  width: 500px;
  max-width: 100%;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
}
section.section.page-plain .pagenav a {
  font-size: 18px;
  background: #f5f5f5;
  border-radius: 100px;
  padding: 10px;
  width: 48%;
  text-align: center;
  border: 1px solid #f5f5f5;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  section.section.page-plain .pagenav a {
    font-size: 16px;
  }
}
section.section.page-plain .pagenav a:hover {
  background: #FFF;
  color: #f5f5f5;
}
section.section.page-plain .wpcf7 {
  margin: 40px auto 0;
}
@media screen and (min-width: 768px) {
  section.section.page-plain .wpcf7 {
    width: 600px;
  }
}
@media screen and (max-width: 767px) {
  section.section.page-plain .wpcf7 {
    width: 90%;
  }
}
section.section.page-plain .wpcf7 sup {
  color: #D14E97;
  font-size: 13px;
  margin-left: 5px;
}
section.section.page-plain .wpcf7 h3 {
  font-size: 17px;
}
section.section.page-plain .wpcf7 textarea {
  margin-bottom: 40px;
  height: 200px;
}
@media screen and (max-width: 767px) {
  section.section.page-plain .wpcf7 textarea {
    height: 150px;
  }
}
section.section.page-plain .wpcf7 .wpcf7-not-valid-tip,
section.section.page-plain .wpcf7 .wpcf7-response-output {
  color: #D14E97;
}
section.section.page-plain .wpcf7 .wpcf7-response-output {
  border-color: #fff !important;
  background: #fff;
}
section.section.page-plain .wpcf7 input[type=submit] {
  background: #f5f5f5;
  width: 200px;
  margin: 0 auto;
  max-width: 100%;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.3em;
}
section.section.page-plain .wpcf7 input[type=submit]:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.cta {
  background: url(../img/lp/cta-bg.png) no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .cta {
    padding: 50px 30px;
  }
}
.cta a {
  display: block;
  margin: 0 auto;
  width: 300px;
  max-width: 100%;
}
.cta a:first-child {
  margin-bottom: 30px;
  width: 450px;
}

.step {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .step {
    flex-wrap: wrap;
  }
}
.step li {
  list-style: none;
  margin: 0;
  background: #FFDC51;
  padding: 20px 10px;
  width: 16.6666666667%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .step li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.step li::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid #ffffff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
@media screen and (min-width: 768px) {
  .step li::after {
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 0;
  }
}
@media screen and (max-width: 767px) {
  .step li::after {
    display: none;
  }
}
.step li:last-child:after {
  display: none;
}
.step li span {
  text-align: center;
  display: block;
  background-color: #fff;
  padding: 0px 5px;
  border-radius: 100px;
  width: 70px;
  margin: 0 auto 10px;
}
.step li h3 {
  font-size: 16px;
  text-align: center;
}
.step li dl dd {
  font-size: 12px;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .step li dl dd {
    text-align: center;
  }
}
.step li dl dd img {
  display: block;
  width: 50%;
  margin: 10px auto;
}
@media screen and (max-width: 767px) {
  .step li dl dd img {
    width: 20%;
  }
}

/*footer*/
#footer {
  background: #f5f5f5;
  color: #444;
  padding: 30px 0;
}
#footer .footer-nav {
  display: flex;
  justify-content: center;
}
#footer .footer-nav li a {
  font-size: 14px;
  color: #444;
  padding: 0px 10px;
}
#footer .footer-nav li a:hover {
  opacity: 0.7;
}
#footer .footer-nav li:not(:first-child) a {
  border-left: 1px solid #444;
}
#footer .footer-logo {
  display: flex;
  justify-content: center;
  width: 145px;
  margin: 20px auto;
  max-width: 80%;
}
#footer .copy {
  text-align: center;
  font-size: 12px;
}

.form-box {
  max-width: 100%;
  width: 600px;
  margin: 0 auto;
}
.form-box .form-info {
  font-size: 14px;
  margin-bottom: 20px;
}
.form-box input:focus::-moz-placeholder {
  color: transparent;
}
.form-box input:focus::placeholder {
  color: transparent;
}
.form-box sup {
  color: red;
}
.form-box dl {
  margin: 0 auto 20px;
}
.form-box dl dt {
  margin-bottom: 10px;
}
.form-box input, .form-box textarea, .form-box select {
  background: #ffffff;
}
.form-box textarea {
  height: 150px;
}
.form-box input[type=submit] {
  background: #F28C00;
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 200px;
  display: block;
  padding: 10px;
  margin: 20px auto 0;
  font-size: 20px;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.form-box input[type=submit]:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}/*# sourceMappingURL=common.css.map */