body {
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  font-weight: 500;
  color: #082933;
}
body a {
  color: #082933;
  text-decoration: none;
}
body a:hover {
  text-decoration: none;
}

.sp_only {
  display: none;
}

.inner {
  box-sizing: content-box;
  max-width: 1100px;
  padding: 0 2%;
  position: relative;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

@media screen and (max-width: 980px) {
  body {
    font-size: 14px;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .inner {
    padding: 0 5%;
  }
}
/*----------------------------------------------------- */
/*  mv           */
/*----------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #082933;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 440px;
  z-index: 10;
}

.header_logo {
  max-width: 150px;
  padding-left: 17px;
  transition: 0.3s ease-in-out;
}
.header_logo img {
  display: block;
}
.header_logo:hover {
  opacity: 0.2;
}

.header_menu {
  display: flex;
  align-items: center;
}

.header_nav ul {
  display: flex;
}
.header_nav ul li {
  margin-right: 40px;
  margin-bottom: 6px;
}
.header_nav ul li a {
  font-size: 20px;
  color: #fff;
  transition: 0.3s ease-in-out;
}
.header_nav ul li a:hover {
  text-decoration: underline;
}

.header_btn01 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 220px;
  width: 220px;
  height: 60px;
  text-align: center;
  background: #E05126;
  transition: 0.3s ease-in-out;
}
.header_btn01 span {
  color: #fff;
  font-size: 20px;
  padding-left: 60px;
  background: url(../images/ico_mail.png) left center no-repeat;
  background-size: 27px;
}
.header_btn01:hover {
  opacity: 0.7;
}

.header_btn02 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0px;
  width: 220px;
  height: 60px;
  text-align: center;
  background: #C9AE3B;
  transition: 0.3s ease-in-out;
}
.header_btn02 span {
  color: #fff;
  font-size: 20px;
  padding-left: 55px;
  background: url(../images/ico_document.png) left center no-repeat;
  background-size: 22px;
}
.header_btn02:hover {
  opacity: 0.7;
}

.menu_toggle {
  display: none;
}

@media screen and (max-width: 1400px) {
  .header {
    padding-right: 320px;
  }
  .header_logo {
    max-width: 120px;
    padding-left: 17px;
  }
  .header_nav ul li {
    margin-right: 20px;
  }
  .header_nav ul li a {
    font-size: 16px;
  }
  .header_btn01 {
    right: 160px;
    width: 160px;
  }
  .header_btn01 span {
    padding-left: 40px;
    font-size: 16px;
  }
  .header_btn02 {
    right: 0;
    width: 160px;
  }
  .header_btn02 span {
    padding-left: 40px;
    font-size: 16px;
  }
}
@media screen and (max-width: 980px) {
  .header {
    height: 50px;
    padding-right: 0;
  }
  .header_logo {
    max-width: 110px;
    width: 32vw;
    padding-left: 3%;
  }
  .header_nav {
    display: none;
  }
  .header_nav ul {
    display: flex;
  }
  .header_nav ul li {
    margin-right: 40px;
    font-size: 20px;
  }
  .header_nav ul li a {
    color: #fff;
    transition: 0.3s ease-in-out;
  }
  .header_nav ul li a:hover {
    text-decoration: underline;
  }
  .header_btn01 {
    right: 88px;
    width: 48px;
    height: 50px;
    line-height: 55px;
  }
  .header_btn01 span {
    font-size: 10px;
    height: 40px;
    padding-left: 0px;
    padding-top: 0px;
    margin-top: 14px;
    background: url(../images/ico_mail.png) center top no-repeat;
    background-size: 16px;
    line-height: 4.4;
  }
  .header_btn02 {
    right: 40px;
    width: 48px;
    height: 50px;
    line-height: 55px;
  }
  .header_btn02 span {
    font-size: 10px;
    height: 40px;
    padding-left: 0px;
    padding-top: 0px;
    margin-top: 12px;
    background: url(../images/ico_document.png) center top no-repeat;
    background-size: 12px;
    line-height: 4.8;
  }
  .menu_toggle {
    position: absolute;
    top: 15px;
    right: 10px;
    display: block;
    height: 18px;
    cursor: pointer;
  }
  .menu_toggle div {
    position: relative;
    width: 20px;
  }
  .menu_toggle span {
    width: 100%;
    z-index: 100;
    height: 1px;
    right: 0;
    display: block;
    background: #fff;
    position: absolute;
    transition: all 0.3s ease-out;
  }
  .menu_toggle span:nth-child(1) {
    top: 0;
  }
  .menu_toggle span:nth-child(2) {
    top: 8px;
  }
  .menu_toggle span:nth-child(3) {
    top: 16px;
  }
  .is-open .menu_toggle span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }
  .is-open .menu_toggle span:nth-child(2) {
    opacity: 0;
  }
  .is-open .menu_toggle span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }
  .header_nav {
    background-color: rgba(8, 41, 51, 0.8);
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header_nav ul {
    display: block;
  }
  .header_nav ul li {
    margin-right: 0px;
    text-align: center;
  }
  .header_nav ul li a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
  }
  .header_nav ul li + li {
    margin-top: 20px;
  }
  .is-open {
    overflow: hidden;
  }
  .is-open .header_nav {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
}
/*----------------------------------------------------- */
/*  mv           */
/*----------------------------------------------------- */
.mv {
  height: 920px;
  background: url(../images/bg_mv.jpg) no-repeat;
  background-size: cover;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.mv .inner {
  max-width: 1450px;
  display: flex;
  justify-content: space-between;
}
.mv .wrap {
  width: 43%;
  padding-top: 20px;
}

.mv_ttl {
  margin-bottom: 12px;
}

.mv_logo {
  max-width: 358px;
  margin: 0 auto;
}

.mv_pic01 {
  max-width: 537px;
  margin: 0 auto;
}

.mv_pic02 {
  width: 50%;
}

.mv_pic03 {
  max-width: 487px;
  position: absolute;
  right: -50px;
  bottom: 100px;  
  animation:50s linear infinite rotation;
}
@keyframes rotation{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}

@media screen and (max-width: 1280px) {
  .mv {
    height: 820px;
    padding-top: 60px;
  }
  .mv .inner {
    justify-content: center;
  }
}

@media screen and (max-width: 980px) {
  .mv {
    height: 136vw;
    background: url(../images/bg_mv_sp.png) no-repeat;
    background-size: cover;
    padding-top: 37px;
  }
  .mv .inner {
    display: block;
  }
  .mv .wrap {
    width: 100%;
    padding-top: 0px;
  }
  .mv_ttl {
    max-width: 95%;
    margin: 0 auto 8px;
  }
  .mv_logo {
    max-width: 55%;
    margin: 0 auto;
  }
  .mv_pic01 {
    max-width: 65%;
    margin: 0 0 0 3%;
    position: relative;
    z-index: 2;
  }
  .mv_pic02 {
    width: 65%;
    margin: -90px 3% 0 auto;
  }
  .mv_pic03 {
    max-width: 65%;
    position: absolute;
    right: auto;
    left: -25%;
    bottom: -17%;
  }
}
/*----------------------------------------------------- */
/*  cta           */
/*----------------------------------------------------- */
.cta_inner {
  display: flex;
}

.cta_bg {
  width: 30%;
  background: url(../images/bg_cta_01.png) no-repeat;
  background-size: cover;
}

.cta_wrap {
  width: 70%;
  background: url(../images/bg_cta_02.png) no-repeat;
  background-size: cover;
  padding: 120px 2%;
}

.cta_ttl {
  text-align: center;
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 60px;
}
.cta_ttl em {
  font-size: 48px;
  font-weight: 700;
}
.cta_ttl span {
  display: block;
  font-family: "Century Gothic", sans-serif;
  color: #F5F1C8;
  font-weight: normal;
  font-size: 36px;
  margin-bottom: 20px;
}

.cta_list {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.cta_list li:nth-child(2) {
  margin: 0 40px;
}
.cta_list li {
  aspect-ratio: 315/155;
  background: url(../images/bg_cta_03.png) no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  padding: 0 70px;
}
.cta_list li p {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}
.cta_list li.cta_list_lh p {
  line-height: 1.2;
}
.cta_list li em {
  font-family: "Century Gothic", sans-serif;
  font-size: 64px;
}

.cta_btn01 {
  display: block;
  width: 352px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto 24px;
  text-align: center;
  background: url(../images/arrow_03.png) right 20px center no-repeat #E05126;
  background-size: 13px;
  border-radius: 35px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s ease-in-out;
}
.cta_btn01:hover {
  opacity: 0.7;
}

.cta_btn02 {
  display: block;
  width: 352px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto;
  text-align: center;
  background: url(../images/arrow_03.png) right 20px center no-repeat #C9AE3B;
  background-size: 13px;
  border-radius: 35px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s ease-in-out;
}
.cta_btn02:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1500px) {
  .cta_list li:nth-child(2) {
    margin: 0 2.85vw;
  }
  .cta_list li {
    padding: 0 4vw;
  }
  .cta_list li p {
    font-size: 2.85vw;
  }
  .cta_list li em {
    font-size: 4.57vw;
  }
}
@media screen and (max-width: 980px) {
  .cta_inner {
    flex-direction: column-reverse;
  }
  .cta_bg {
    width: 100%;
    height: 42.6vw;
    background: url(../images/bg_cta_01_sp.png) no-repeat;
    background-size: cover;
  }
  .cta_wrap {
    width: 100%;
    background: url(../images/bg_cta_02.png) no-repeat;
    background-size: cover;
    padding: 32px 5%;
  }
  .cta_ttl {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .cta_ttl em {
    font-size: 24px;
  }
  .cta_ttl span {
    font-size: 18px;
    margin-bottom: 18px;
  }
  .cta_list {
    flex-wrap: wrap;
    margin: 0 auto 30px;
  }
  .cta_list li:nth-child(2) {
    margin: 0 0 0 5.3vw;
  }
  .cta_list li:nth-child(3) {
    margin-top: 20px;
  }
  .cta_list li {
    width: 47%;
    justify-content: center;
    padding: 0;
  }
  .cta_list li p {
    font-size: 5.3vw;
  }
  .cta_list li em {
    font-size: 8.53vw;
  }
  .cta_btn01 {
    width: 200px;
    height: 35px;
    line-height: 35px;
    margin: 0 auto 12px;
    text-align: center;
    background: url(../images/arrow_03.png) right 10px center no-repeat #E05126;
    background-size: 6px;
    font-size: 14px;
  }
  .cta_btn02 {
    width: 200px;
    height: 35px;
    line-height: 35px;
    margin: 0 auto;
    text-align: center;
    background: url(../images/arrow_03.png) right 10px center no-repeat #C9AE3B;
    background-size: 6px;
    font-size: 14px;
  }
}
/*----------------------------------------------------- */
/*  background           */
/*----------------------------------------------------- */
.background {
  background: url(../images/bg_background.png) center bottom no-repeat;
  background-size: cover;
  padding: 120px 0 100px;
}

.sec_ttl {
  text-align: center;
  position: relative;
  margin-bottom: 80px;
}
.sec_ttl span {
  background: #082933;
  font-family: "Century Gothic", sans-serif;
  color: #fff;
  font-weight: normal;
  font-size: 20px;
  padding: 2px 10px;
}
.sec_ttl em {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}
.sec_ttl::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: calc(50% - 58px);
  width: 117px;
  height: 4px;
  background: #082933;
}

.background_box_transparent {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.background_box_transparent img {
  width: 100%;
}

.background_box {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 40px;
  display: flex;
  margin-bottom: 30px;
}
.background_box p {
  text-align: center;
  font-size: 20px;
  color: #082933;
  font-weight: 600px;
  line-height: 1.4;
  margin-bottom: 24px;
}
.background_box .wrap01 {
  width: 100%;
}

.background_txt {
  margin: 0 auto 30px;
  color: #fff;
}

@media screen and (max-width: 980px) {
  .background {
    background: url(../images/bg_background_sp.png) center bottom no-repeat;
    background-size: cover;
    padding: 32px 0;
  }
  .sec_ttl {
    margin-bottom: 40px;
  }
  .sec_ttl span {
    font-size: 12px;
  }
  .sec_ttl em {
    font-size: 24px;
  }
  .sec_ttl::after {
    bottom: -12px;
    left: calc(50% - 29px);
    width: 58px;
    height: 2px;
  }
  .background_ttl {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .background_box {
    padding: 20px;
    display: block;
    margin-bottom: 20px;
  }
  .background_box .wrap01 p {
    margin-bottom: 20px;
  }
}

/*----------------------------------------------------- */
/*  about           */
/*----------------------------------------------------- */
.about {
  padding: 120px 0;
  background: url(../images/bg_features.jpg) no-repeat;
  background-size: cover;
}
.about .sec_ttl {
  margin-bottom: 40px;
}
.about .sec_ttl em {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .sec_ttl em img {
    max-width: 50%;
}
.about .sec_ttl::after {
  display: none;
}
.about_wrap {
  max-width: 908px;
  margin: 0 auto;
}
.about_wrap .about_txt {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.about_wrap p {
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 980px) {
  .about {
    padding: 40px 0;
  }
  .about .sec_ttl {
    margin-bottom: 20px;
  }
  .about_wrap .about_txt {
    display: block;
    margin-bottom: 20px;
  }
}

/*----------------------------------------------------- */
/*  solved           */
/*----------------------------------------------------- */
.solved {
  background: url(../images/bg_solved.png) center top no-repeat;
  background-size: cover;
  margin-top: -1px;
  padding: 305px 0 150px;
}
.solved .sec_ttl {
  margin-bottom: 64px;
}
.solved .sec_ttl em {
  color: #082933;
}

.solved_box {
  padding: 40px;
}
.solved_box ul {
  max-width: 1100px;
  margin: 0 auto;
}
.solved_box ul li {
    background-color: rgba(255, 255, 255, 0.7);
    background-image: url(../images/icon-check-org.svg);
    background-repeat: no-repeat;
    background-position: left 32px center;
    background-size: 20px auto;
    display: block;
    border: 2px solid #BDB45E;
    margin-bottom: 8px;
    padding: 4px 8px 4px 68px;
}

@media screen and (max-width: 980px) {
  .solved {
    background: url(../images/bg_solved_sp.png) center top no-repeat;
    background-size: cover;
    padding: 31.6vw 0 33px;
  }
  .solved .sec_ttl {
    margin-bottom: 20px;
  }
  .solved_box {
    padding: 20px;
  }
  .solved_box ul li {
      background-position: left 12px center;
      background-size: 16px auto;
      display: block;
      border: 2px solid #BDB45E;
      margin-bottom: 8px;
      padding: 4px 8px 4px 36px;
  }
}
/*----------------------------------------------------- */
/*  features           */
/*----------------------------------------------------- */
.features {
  padding: 120px 0;
  background: url(../images/bg_features.jpg) no-repeat;
  background-size: cover;
}
.features .sec_ttl::after {
  background: #fff;
}

.features_wrap {
  max-width: 908px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.features_wrap .pic {
  width: 45%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  border: 4px solid #BDB45E;
  padding: 20px;
  margin: 0 0 40px;
}
.features_wrap .pic .pic_img {
  width: 100%;
  text-align: center;
}
.features_wrap p {
  color: #fff;
  font-size: 80%;
  text-align: center;
}

@media screen and (max-width: 980px) {
  .features {
    padding: 30px 0;
    background: url(../images/bg_features_sp.png) no-repeat;
    background-size: cover;
  }
  .features .sec_ttl::after {
    background: #fff;
  }
  .features_wrap {
    gap: 20px;
  } 
  .features_wrap .pic {
    min-height: 210px;
    align-items: center;
    margin: 0 0 20px;
    padding: 20px 10px;
  } 
  .features_wrap p {
    font-size: 93%;
  }
}
/*----------------------------------------------------- */
/*  genre           */
/*----------------------------------------------------- */
.genre {
  padding: 120px 0;
  background: url(../images/bg_genre.png) no-repeat;
  background-size: cover;
}
.genre .sec_ttl em {
  color: #082933;
}

.genre_txt01 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 60px;
}

.genre_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.genre_list li {
  width: 31.5%;
  margin-bottom: 30px;
  background: #618C99;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 156px;
}
.genre_list li p {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}
.genre_list li:nth-child(7),
.genre_list li:nth-child(8) {
  width: 100%;
  background: #BDB45E;
  height: 84px;
}

.genre_txt02 {
  color: #2E7489;
  text-align: center;
  line-height: 1.4;
  font-size: 40px;
  font-weight: 600;
}
.genre_txt02 em {
  font-size: 48px;
  font-weight: 600;
}

@media screen and (max-width: 980px) {
  .genre {
    padding: 30px 0;
    background: url(../images/bg_genre_sp.png) no-repeat;
    background-size: cover;
  }
  .genre .sec_ttl {
    line-height: 1.4;
  }
  .genre .sec_ttl em {
    color: #082933;
  }
  .genre_txt01 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .genre_list {
    margin-bottom: 10px;
  }
  .genre_list li {
    width: 31%;
    margin-bottom: 15px;
    height: 78px;
  }
  .genre_list li p {
    font-size: 16px;
  }
  .genre_list li:nth-child(7),
  .genre_list li:nth-child(8) {
    height: 42px;
  }
  .genre_txt02 {
    font-size: 20px;
  }
  .genre_txt02 em {
    font-size: 20px;
  }
}
/*----------------------------------------------------- */
/*  example           */
/*----------------------------------------------------- */
.example {
  background: #948C6A;
  padding: 120px 0;
}
.example .sec_ttl span {
  background: #fff;
  color: #76715C;
}
.example .sec_ttl em {
  color: #fff;
}
.example .sec_ttl::after {
  background: #fff;
}

.example_txt {
  color: #fff;
  text-align: center;
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 60px;
}

.example_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 90px;
}
.example_list li {
  width: 31.5%;
  margin-bottom: 30px;
  background: #E0DED4;
}
.example_list li h3 {
  background: #BDB45E;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 32px;
  padding: 10px 0;
}
.example_list li table {
  width: 95%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 20px;
}
.example_list li table th {
  background: #D0B959;
  width: 100px;
  text-align: center;
  color: #fff;
  font-family: "Century Gothic", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: bold;
}
.example_list li table td {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.example_list li table td em {
  font-size: 32px;
  font-weight: 700;
}
.example_list li table tr:nth-child(2) th {
  background: #A69A68;
}

.example_wrap {
  display: flex;
  justify-content: space-between;
}
.example_wrap .pic {
  width: 47%;
}
.example_wrap .txt {
  margin-top: -10px;
  width: 48%;
  color: #fff;
}
.example_wrap .txt ul {
  border: 1px solid #fff;
  padding: 20px;
  margin: 10px 0;
}
.example_wrap .note {
  font-size: 16px;
}

@media screen and (max-width: 980px) {
  .example {
    padding: 30px 0;
  }
  .example_txt {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .example_list {
    margin-bottom: 20px;
  }
  .example_list li {
    width: 48%;
    margin-bottom: 15px;
  }
  .example_list li h3 {
    font-size: 16px;
    padding: 8px 0;
  }
  .example_list li table {
    width: 95%;
    border-spacing: 10px;
    margin: 5px 0;
  }
  .example_list li table th {
    width: 50px;
    font-size: 12px;
  }
  .example_list li table td {
    font-size: 12px;
  }
  .example_list li table td em {
    font-size: 16px;
  }
  .example_wrap {
    display: block;
  }
  .example_wrap .pic {
    width: 80%;
    margin: 0 auto 20px;
  }
  .example_wrap .txt {
    margin-top: 0px;
    width: 80%;
    margin: 0 auto;
  }
  .example_wrap .txt ul {
    border: 1px solid #fff;
    padding: 10px;
    margin: 8px 0;
  }
  .example_wrap .note {
    font-size: 12px;
  }
}
/*----------------------------------------------------- */
/*  flow           */
/*----------------------------------------------------- */
.flow {
  background: #082933;
  padding: 120px 0;
}
.flow .sec_ttl {
  margin-bottom: 60px;
}
.flow .sec_ttl span {
  background: #fff;
  color: #082933;
}
.flow .sec_ttl::after {
  background: #fff;
}

.flow_box {
  border: #618C99 4px solid;
  background: #fff;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.flow_box .ttl {
  width: 30%;
  background: #618C99;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow_box .ttl h3 {
  color: #fff;
  margin-bottom: 30px;
}
.flow_box .ttl h3 span {
  font-family: "Century Gothic", sans-serif;
  font-weight: bold;
  font-size: 32px;
  padding-right: 5px;
}
.flow_box .wrap {
  flex: 1;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flow_box .wrap p {
  color: #082933;
  line-height: 1.4;
}
.flow_box .wrap p.note {
  color: #898989;
  font-size: 16px;
  margin-top: 20px;
}
.flow_box .div01 {
  width: 50%;
}
.flow_box .div02 {
  width: 45%;
}
.flow_box .box {
  background: #A69A68;
}
.flow_box .box p,
.flow_box .box ul {
  padding: 15px 20px;
  color: #fff;
}
.flow_box .box h4 {
  color: #fff;
  text-align: center;
  padding: 5px;
  background: #746C49;
}

.flow_box01 {
  margin-bottom: 100px;
}
.flow_box01 .ttl img {
  max-width: 180px;
}
.flow_box01::after {
  content: "";
  position: absolute;
  bottom: -75px;
  left: calc(50% - 21px);
  width: 43px;
  height: 38px;
  background: url(../images/arrow_01.png) no-repeat;
  background-size: contain;
}
.flow_box01 .div02 p {
  margin-left: 1em;
  text-indent: -1em;
}
.flow_box01 .div02 span {
  color: #E05126;
}
.flow_box01 .box {
  margin-top: 15px;
}

.flow_box02 {
  margin-bottom: 100px;
}
.flow_box02 .ttl {
  padding: 40px 0;
}
.flow_box02 .ttl img {
  max-width: 140px;
}
.flow_box02::after {
  content: "";
  position: absolute;
  bottom: -75px;
  left: calc(50% - 21px);
  width: 43px;
  height: 38px;
  background: url(../images/arrow_01.png) no-repeat;
  background-size: contain;
}

.flow_box03 {
  background: url(../images/pic_flow_03.png) no-repeat;
  background-size: cover;
  max-width: 448px;
  height: 131px;
  margin: 0 auto 100px;
  position: relative;
}
.flow_box03::after {
  content: "";
  position: absolute;
  bottom: -75px;
  left: calc(50% - 21px);
  width: 43px;
  height: 38px;
  background: url(../images/arrow_01.png) no-repeat;
  background-size: contain;
}
.flow_box03 h3 {
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.4;
  padding: 22px 0 0 0;
  transform: translateX(-80px);
}
.flow_box03 h3 span {
  display: block;
  font-family: "Century Gothic", sans-serif;
  font-weight: bold;
  font-size: 32px;
  padding-right: 5px;
}

.flow_box04 {
  margin-bottom: 120px;
}
.flow_box04 .ttl {
  padding: 40px 0;
}
.flow_box04 .ttl img {
  max-width: 80px;
}

.flow_box05 {
  border: #A69A68 6px solid;
  padding: 60px;
}
.flow_box05 .sec_ttl {
  margin-bottom: 80px;
}
.flow_box05 .sec_ttl em {
  font-size: 40px;
}
.flow_box05 .list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.flow_box05 .list li {
  width: 45%;
  background: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flow_box05 .list li .div01,
.flow_box05 .list li .div02 {
  width: 48%;
  background: #A69A68;
  padding: 24px 2%;
  text-align: center;
  color: #fff;
}
.flow_box05 .list li .div01 p,
.flow_box05 .list li .div02 p {
  font-weight: 600;
  line-height: 1.2;
}
.flow_box05 .list li .div01 img,
.flow_box05 .list li .div02 img {
  display: block;
  margin: 20px auto 0;
}
.flow_box05 .list li .div03,
.flow_box05 .list li .div04 {
  width: 48%;
  background: #082933;
  padding: 24px 2%;
  text-align: center;
  color: #fff;
}
.flow_box05 .list li .div03 p,
.flow_box05 .list li .div04 p {
  font-weight: 600;
  line-height: 1.2;
}
.flow_box05 .list li .div03 img,
.flow_box05 .list li .div04 img {
  display: block;
  margin: 20px auto 0;
}
.flow_box05 .list li .div01 img {
  max-width: 90px;
}
.flow_box05 .list li .div02 img {
  max-width: 58px;
}
.flow_box05 .list li .div03 img {
  max-width: 56px;
}
.flow_box05 .list li .div04 img {
  max-width: 83px;
}
.flow_box05 .list li .txt01 {
  margin-top: 20px;
  font-size: 20px;
  color: #746C49;
  line-height: 1.4;
}
.flow_box05 .list li .txt02 {
  margin-top: 20px;
  font-size: 20px;
  color: #082933;
  line-height: 1.4;
}
.flow_box05 .list li + li {
  position: relative;
}
.flow_box05 .list li + li::after {
  content: "";
  width: 38px;
  height: 44px;
  background: url(../images/arrow_02.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 22px);
  left: -14%;
}

.flow_txt {
  text-align: center;
  color: #DDC979;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
}
.flow_txt em {
  font-size: 64px;
  font-weight: 700;
}
.flow_txt span {
  font-size: 48px;
}

@media screen and (max-width: 980px) {
  .flow {
    padding: 30px 0;
  }
  .flow .sec_ttl {
    margin-bottom: 40px;
  }
  .flow_box {
    border: #618C99 2px solid;
  }
  .flow_box .ttl h3 {
    margin-bottom: 10px;
    line-height: 1.6;
  }
  .flow_box .ttl h3 span {
    display: block;
    font-size: 16px;
    padding-right: 0px;
  }
  .flow_box .wrap {
    flex: 1;
    padding: 20px;
    display: block;
    }
  .flow_box .wrap p.note {
    font-size: 12px;
  }
  .flow_box .div01 {
    width: 100%;
  }
  .flow_box .div02 {
    width: 100%;
  }
  .flow_box .box p,
  .flow_box .box ul {
    padding: 5px 10px;
  }
  .flow_box01 {
    margin-bottom: 50px;
  }
  .flow_box01 .ttl img {
    max-width: 12.8vw;
  }
  .flow_box01::after {
    bottom: -36px;
    left: calc(50% - 10px);
    width: 21px;
    height: 19px;
  }
  .flow_box01 .div02 {
    margin-top: 15px;
  }
  .flow_box01 .box {
    margin-top: 10px;
  }
  .flow_box02 {
    margin-bottom: 50px;
  }
  .flow_box02 .ttl {
    padding: 20px 0;
  }
  .flow_box02 .ttl img {
    max-width: 12.8vw;
  }
  .flow_box02::after {
    bottom: -36px;
    left: calc(50% - 10px);
    width: 21px;
    height: 19px;
  }
  .flow_box02 .div02 {
    margin-top: 15px;
  }
  .flow_box03 {
    background: url(../images/pic_flow_03.png) no-repeat;
    background-size: cover;
    max-width: 58.8vw;
    height: 17.5vw;
    margin: 0 auto 50px;
    position: relative;
  }
  .flow_box03::after {
    bottom: -36px;
    left: calc(50% - 10px);
    width: 21px;
    height: 19px;
  }
  .flow_box03 h3 {
    padding: 5vw 0 0 0;
    transform: translateX(-12vw);
  }
  .flow_box03 h3 span {
    display: block;
    font-size: 16px;
    padding-right: 0;
  }
  .flow_box04 {
    margin-bottom: 30px;
  }
  .flow_box04 .ttl {
    padding: 20px 0;
  }
  .flow_box04 .ttl img {
    max-width: 12.8vw;
  }
  .flow_box04 .div02 {
    margin-top: 15px;
  }
  .flow_box05 {
    border: #A69A68 3px solid;
    padding: 20px;
  }
  .flow_box05 .sec_ttl {
    margin-bottom: 40px;
  }
  .flow_box05 .sec_ttl em {
    font-size: 20px;
  }
  .flow_box05 .list {
    display: block;
    margin-bottom: 20px;
  }
  .flow_box05 .list li {
    width: 100%;
    padding: 10px;
  }
  .flow_box05 .list li .div01,
  .flow_box05 .list li .div02 {
    padding: 12px 2%;
  }
  .flow_box05 .list li .div01 img,
  .flow_box05 .list li .div02 img {
    margin: 15px auto 0;
  }
  .flow_box05 .list li .div03,
  .flow_box05 .list li .div04 {
    padding: 12px 2%;
  }
  .flow_box05 .list li .div03 img,
  .flow_box05 .list li .div04 img {
    margin: 15px auto 0;
  }
  .flow_box05 .list li .div01 img {
    max-width: 12vw;
  }
  .flow_box05 .list li .div02 img {
    max-width: 7.7vw;
  }
  .flow_box05 .list li .div03 img {
    max-width: 7.4vw;
  }
  .flow_box05 .list li .div04 img {
    max-width: 11vw;
  }
  .flow_box05 .list li .txt01 {
    margin-top: 10px;
    font-size: 14px;
  }
  .flow_box05 .list li .txt02 {
    margin-top: 10px;
    font-size: 14px;
  }
  .flow_box05 .list li + li {
    margin-top: 50px;
  }
  .flow_box05 .list li + li::after {
    content: "";
    width: 19px;
    height: 22px;
    top: -36px;
    left: calc(50% - 10px);
    transform: rotate(90deg);
  }
  .flow_txt {
    font-size: 20px;
  }
  .flow_txt em {
    font-size: 32px;
  }
  .flow_txt span {
    font-size: 24px;
  }
}
/*----------------------------------------------------- */
/*  faq           */
/*----------------------------------------------------- */
.faq {
  background: #F8F8F8;
  padding: 120px 0;
}
.faq .sec_ttl em {
  color: #082933;
}

.faq_dl {
  width: 100%;
}
.faq_dl dt {
  cursor: pointer;
  background: #618C99;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  margin-bottom: 10px;
}
.faq_dl dt::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -1px;
  width: 12px;
  height: 2px;
  background: #fff;
  transition: all 0.2s ease-out;
}
.faq_dl dt::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  margin-top: -6px;
  width: 2px;
  height: 12px;
  background: #fff;
  transition: all 0.3s ease-out;
}
.faq_dl dt.active::before {
  display: none;
}
.faq_dl dt.active::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.faq_dl dd {
  display: none;
  padding-top: 30px;
  font-size: 20px;
  line-height: 1.4;
  color: #000;
}

.faq_dl + .faq_dl {
  margin-top: 40px;
}

@media screen and (max-width: 980px) {
  .faq {
    padding: 30px 0;
  }
  .faq_dl {
    width: 100%;
  }
  .faq_dl dt {
    cursor: pointer;
    background: #618C99;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    position: relative;
    margin-bottom: 10px;
  }
  .faq_dl dt::after {
    right: 15px;
    margin-top: -1px;
    width: 7px;
    height: 1px;
  }
  .faq_dl dt::before {
    right: 18px;
    margin-top: -4px;
    width: 1px;
    height: 7px;
    background: #fff;
    transition: all 0.3s ease-out;
  }
  .faq_dl dt.active::before {
    display: none;
  }
  .faq_dl dt.active::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .faq_dl dd {
    display: none;
    padding-top: 10px;
    font-size: 14px;
  }
  .faq_dl + .faq_dl {
    margin-top: 20px;
  }
}
/*----------------------------------------------------- */
/*  company           */
/*----------------------------------------------------- */
.company {
  background: #082933;
  padding: 100px 0 0;
}
.company .sec_ttl {
  margin-bottom: 30px;
}
.company .sec_ttl span {
  background: #fff;
  color: #082933;
}
.company .sec_ttl::after {
  background: #fff;
}

.company_bg {
  background: url(../images/bg_company.jpg) no-repeat #082933;
  background-size: cover;
  padding: 140px 0;
}
.company_bg .inner {
  max-width: 900px;
}

.company_table {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
}
.company_table th {
  width: 150px;
  padding-bottom: 30px;
  vertical-align: top;
}
.company_table td {
  padding-bottom: 30px;
}
.company_table a {
  color: #fff;
  text-decoration: underline;
}

@media screen and (max-width: 980px) {
  .company {
    padding: 30px 0 0;
  }
  .company .sec_ttl {
    margin-bottom: 30px;
  }
  .company .sec_ttl span {
    background: #fff;
    color: #082933;
  }
  .company .sec_ttl::after {
    background: #fff;
  }
  .company_bg {
    background: url(../images/bg_company_sp.png) center top no-repeat #082933;
    background-size: contain;
    padding: 52.2vw 0 30px;
  }
  .company_table {
    width: 90%;
    margin: 0 auto;
    font-size: 12px;
  }
  .company_table th {
    width: 100px;
    padding-bottom: 10px;
  }
  .company_table td {
    padding-bottom: 10px;
  }
}
/*----------------------------------------------------- */
/*  footer           */
/*----------------------------------------------------- */
.footer {
  background: #082933;
  padding: 60px 0;
  text-align: center;
}
.footer p {
  color: #B4C1C5;
  font-size: 14px;
  margin-top: 40px;
}
.footer a {
  color: #fff;
  font-size: 16px;
  text-decoration: underline;
}

@media screen and (max-width: 980px) {
  .footer {
    padding: 20px 0;
  }
  .footer p {
    font-size: 10px;
    margin-top: 15px;
  }
  .footer a {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */

/*----------------------------------------------------- */
/*  privacy           */
/*----------------------------------------------------- */
#policy .sec_ttl {
    margin-top: 80px;
}
#policy .sec_ttl em {
    color: #082933;
}
.admin__privacy-policy {
  margin-bottom: 100px;
}
.admin__privacy-policy p,
.admin__privacy-policy table,
.admin__privacy-policy ul {
  width: 100%;
  font-size: 16px;
  margin-bottom: 40px;
}

.admin__privacy-policy .heading {
  font-weight: 600;
  margin-bottom: 12px;
}

.admin__privacy-policy table td {
  border: 1px solid #082933;
  padding: 10px 20px;
}
.admin__privacy-policy table thead {
  background-color: #d3dbde;
  color: #082933;
}
.admin__privacy-policy table thead th {
  border: 1px solid #082933;
  padding: 10px 20px;
}
.admin__privacy-policy table td:first-of-type {
  width: 20%;
}

.admin__privacy-policy .contact p {
    margin-bottom: 0.5em;
    font-weight: 700;
}

.admin__privacy-policy .privacy {
  text-align: right;
}

@media screen and (max-width: 980px) {
  #policy .sec_ttl {
      margin-top: 40px;
  }
  .admin__privacy-policy .heading {
    font-size: 150%;
  }
  .admin__privacy-policy table td:first-of-type {
      width: 30%;
  }
}
/*----------------------------------------------------- */
/*  contact           */
/*----------------------------------------------------- */
#content .sec_ttl {
    margin-top: 80px;
}
#content .sec_ttl em {
    color: #082933;
}
form {
    max-width: 778px;
    margin: 0 auto;
    padding: 0 10px;
}
form input, form textarea, form select {
    width: 100%;
    border: 1px solid #707070;
    font-size: 16px;
    margin: 0 0 4px 0;
    padding: 8px 8px;
}
form input.radio {
    margin: 0 4px 0 0;
    width: auto;
}
.form-group label, .form-group .inp {
    width: 100%;
    display: block;
    text-align: left;
}
.form-group label span {
    text-align: left;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 20px;
    padding: 5px 0;
}
.form-group label span:nth-child(2) {
    background: #f23f08;
    color: #ffffff;
    border-radius: 7px;
    font-size: 16px;
    margin: 0 0 0 10px;
    padding: 0 7px;
}
.form-group .inp {
    margin: 0 0 10px;
}
.form-group .radio-wrap {
    display: flex;
}
.form-group .radio-wrap label {
    border: 1px solid #707070;
    background: #fff;
    font-size: 16px;
    margin-right: 25px;
    padding: 4px 8px;
}
.submit-btn input#submit {
    width: 100%;
    cursor: pointer;
    color: #FFFFFF;
    text-decoration: none;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 20px;
    line-height: 3.1;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition-property: opacity;
    transition-timing-function: ease-out;
    transition-delay: 0s;
    border: none;
    margin-top: 40px;
    padding: 0px 66px;
}
.submit-btn.org input#submit {
    background: #e05126;
}
.submit-btn.ylw input#submit {
    background: #C9AE3B;
}

.submit-btn a {
    width: 100%;
    cursor: pointer;
    background: #082933;
    color: #FFFFFF;
    text-decoration: none;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 20px;
    line-height: 3.1;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition-property: opacity;
    transition-timing-function: ease-out;
    transition-delay: 0s;
    border: none;
    margin-top: 40px;
    padding: 8px 16px;
}
.form_completion {
  margin-bottom: 120px;
}
@media screen and (max-width: 980px) {
  .form-group label {
    margin-bottom: 5px;
  }
  .form-group .inp {
    margin-bottom: 20px;
  }
  .form-group label span {
      text-align: left;
      font-size: 16px;
  }
  .form_completion {
    margin-bottom: 80px;
  }
}