@charset "UTF-8";
a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
a:hover {
  opacity: 0.7;
}

h1,
h2,
h3,
h4,
h5 {
  letter-spacing: 0.1em;
}

body {
  font-family: "ヒラギノ角ゴシック", "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: #00112C;
  text-align: justify;
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

.inner {
  max-width: 1040px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .inner {
    padding: 0 23px;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 0 23px;
  }
}

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

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.ttl-en {
  font-size: 16px;
  font-weight: bold;
  color: #38E8B0;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1;
}

.ttl {
  font-size: 32px;
  margin-top: 20px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .ttl {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .ttl {
    font-size: 24px;
  }
}

.left {
  text-align: left;
}

.marked {
  background: linear-gradient(transparent 60%, #FFC408 60%);
}

.btn {
  margin: 0 auto;
  width: 350px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .btn {
    width: 310px;
  }
}
@media (max-width: 767px) {
  .btn {
    width: 280px;
  }
}
.btn a {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  background: linear-gradient(90deg, #F23A65, #F56A8A);
  padding: 21px 0;
  text-align: center;
  width: 100%;
  line-height: 1;
  border-radius: 40px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .btn a {
    padding: 18px 0;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .btn a {
    font-size: 18px;
    padding: 14px 40px;
  }
}
.btn a span {
  display: inline-block;
  margin-right: 6px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .btn a span {
    width: 20px;
  }
}
@media (max-width: 767px) {
  .btn a span {
    width: 18px;
  }
}
.btn img {
  vertical-align: top;
}

.btn-txt {
  position: relative;
  text-align: center;
  margin-bottom: 19px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .btn-txt {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .btn-txt {
    font-size: 12px;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
  }
}
.btn-txt::before, .btn-txt::after {
  position: absolute;
  content: "";
  top: 50%;
  background: #00112C;
  width: 33px;
  height: 2px;
}
@media (max-width: 767px) {
  .btn-txt::before, .btn-txt::after {
    width: 25px;
  }
}
.btn-txt::before {
  left: 0;
  transform: translateY(-50%) rotate(50deg);
}
.btn-txt::after {
  right: 0;
  transform: translateY(-50%) rotate(-50deg);
}
.btn-txt span {
  position: relative;
}
.btn-txt span::before {
  position: absolute;
  content: "・・";
  font-size: 14px;
  top: -17px;
  left: 0;
  color: #38E8B0;
}
@media (max-width: 767px) {
  .btn-txt span::before {
    font-size: 12px;
  }
}

/*==============================
header
==================================================================================*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 100;
}
.header.scroll {
  position: fixed;
  -webkit-animation-name: anime;
          animation-name: anime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  background: rgba(0, 17, 44, 0.9);
}
@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.header-inner {
  max-width: 1160px;
  display: flex;
  align-items: center;
  position: relative;
  height: 100px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .header-inner {
    padding: 0 23px;
  }
}
@media (max-width: 767px) {
  .header-inner {
    padding: 0 23px;
    height: 90px;
    line-height: 90px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .header-logo {
    width: 140px;
  }
}
@media (max-width: 767px) {
  .header-logo {
    width: 199px;
  }
}

.header-nav {
  margin-left: auto;
}
@media (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-nav-list {
  display: flex;
  align-items: center;
}

.header-nav-item:not(:first-child) {
  margin-left: 25px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .header-nav-item:not(:first-child) {
    margin-left: 15px;
  }
}
.header-nav-item a {
  color: #fff;
  font-size: 18px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .header-nav-item a {
    font-size: 16px;
  }
}

.header-nav-item .btn-consul,
.header-nav-item .btn-mypage,
.header-nav-item .btn-contact {
  font-size: 20px;
  padding: 8px 35px;
  border-radius: 40px;
}
@media (min-width: 768px) and (max-width: 1279px) {
.header-nav-item .btn-consul,
.header-nav-item .btn-mypage,
.header-nav-item .btn-contact {
    padding: 4px 15px;
    font-size: 16px;
  }
}
.header-nav-item .btn-consul {
  border: 2px solid #fff;
}

.header-nav-item .btn-contact {
  border: 3px solid #F23A65;
  background: #F23A65;}


.header-nav-item .btn-mypage {
  border: 3px solid #191970;
  background: #e6e6fa;
  color:#000;
}

.header-nav-item:hover .nav-hidden {
  display: block;
  -webkit-animation: open;
          animation: open;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}
@-webkit-keyframes open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.arrow img {
  transition: all 0.5s ease 0s;
}

.is-open {
  height: 100px;
  line-height: 100px;
}
.is-open:hover .arrow img {
  transform: rotate(180deg);
}

.nav-hidden {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  max-width: 1160px;
  text-align: center;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.13);
  transition: all 0.3s ease 0s;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .nav-hidden {
    margin: 0 23px;
  }
}
.nav-hidden::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7.5px 14px 7.5px;
  border-color: transparent transparent #FFFFFF transparent;
  top: -13px;
  left: 44.2%;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .nav-hidden::before {
    left: 40%;
  }
}

.hidden-list {
  display: flex;
  background: #fff;
  padding: 15px 0 15px;
  border-radius: 5px;
  align-items: center;
}

.hidden-item {
  width: 25%;
  padding: 0 5px;
}
.hidden-item:not(:first-child) {
  border-left: 1px solid #91ccbf;
}
.hidden-item a {
  color: #00112C;
}
.hidden-item h3 {
  font-size: 16px;
  margin-top: 13px;
  font-weight: bold;
}
.hidden-item p {
  font-size: 14px;
  margin-top: 13px;
  line-height: 1.7;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .hidden-item p {
    font-size: 13px;
  }
}

/*==========
drawer
============================*/
@media (max-width: 767px) {
  body.is-active {
    overflow: hidden;
    height: 100%;
  }
}

.drawer-icon,
.drawer-fixed {
  position: absolute;
  top: 29px;
  width: 44px;
  right: 23px;
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
}
@media (max-width: 767px) {
  .drawer-icon,
.drawer-fixed {
    display: block;
  }
}
.drawer-icon.is-active .drawer-icon_bar1,
.drawer-fixed.is-active .drawer-icon_bar1 {
  transform: rotate(-45deg);
  top: 7px;
}
.drawer-icon.is-active .drawer-icon_bar2,
.drawer-fixed.is-active .drawer-icon_bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon_bar3,
.drawer-fixed.is-active .drawer-icon_bar3 {
  transform: rotate(45deg);
  top: 7px;
}
.drawer-icon.scroll,
.drawer-fixed.scroll {
  position: fixed;
  -webkit-animation-name: anime;
          animation-name: anime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}
@keyframes anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.drawer-icon-bars {
  width: 34px;
  height: 16px;
  margin: 0 auto;
  display: block;
  position: relative;
}

.drawer-txt {
  position: relative;
  text-align: center;
}
.drawer-txt::before {
  content: "MENU";
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.drawer-txt.open::before {
  content: "CLOSE";
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.drawer-icon_bar1,
.drawer-icon_bar2,
.drawer-icon_bar3 {
  position: absolute;
  width: 34px;
  height: 2px;
  background: #fff;
  border-radius: 5px;
  top: 0;
  left: 0;
  transition: all 0.5s ease 0s;
}

.drawer-icon_bar1 {
  top: 0;
}

.drawer-icon_bar2 {
  top: 8px;
}

.drawer-icon_bar3 {
  top: 16px;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  background: rgba(0, 17, 44, 0.9);
  z-index: 299;
  transition: all 0.5s ease 0s;
  display: none;
  overflow: hidden;
}
.drawer-content.is-active {
  left: 0;
}
@media (max-width: 767px) {
  .drawer-content {
    display: block;
  }
}

.drawer-content_items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.drawer-content-bg {
  z-index: 298;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
}
.drawer-content-bg.is-active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .drawer-content-bg {
    display: block;
  }
}

.drawer-content_item {
  font-size: 18px;
  text-align: center;
}
.drawer-content_item a {
  color: #fff;
  display: block;
  font-weight: 500;
  padding: 10px;
}

.drawer-tools {
  margin-bottom: 10px;
}
.drawer-tools span {
  border: 1px solid #fff;
  font-weight: 600;
  width: 190px;
  border-radius: 20px;
  margin: 0 auto;
  line-height: 1;
  color: #fff;
  display: block;
  font-weight: 500;
  padding: 10px;
}

.drawer-btn01,
.drawer-btn02 {
  width: 230px;
  margin: 0 auto;
}
.drawer-btn01 a,
.drawer-btn02 a {
  font-size: 16px;
}

.drawer-btn01 {
  margin-top: 50px;
}
.drawer-btn01 a {
  color: #00112C;
  background: #fff;
}

.drawer-btn02 {
  margin: 25px auto 15px;
}
.drawer-btn02 a {
  background: #F23A65;
}
.drawer-btn02 a span {
  margin-right: 5px;
}
.drawer-btn02 a img {
  vertical-align: text-bottom;
}

/*==============================
mv
==================================================================================*/
.mv {
  padding: 150px 0 70px;
  background: url(https://p1-1881be70.imageflux.jp/getkeyword/mv.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .mv {
    background: url(https://p1-1881be70.imageflux.jp/getkeyword/mv.jpg) no-repeat right 23% center/cover;
    padding: 100px 0 50px;
  }
}

.alert {
  max-width: 1160px;
  margin: 0 auto 50px;
  color: #000;
  border-radius: 5px;
  padding: 16px 20px 16px 70px;
  position: relative;
  text-align: left;
  font-size: 22px;
}

.alert-warning {
  background: #fff3cd;
}

.alert-danger {
  background: #f8d7da;
}

.alert-succes {
  background: #d1e7dd;
}

@media (max-width: 767px) {
  .alert {
    font-size: 18px;
    margin: 0 auto 25px;
    font-size: 16px;
  }
}
.alert span {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  display: inline-block;
  width: 28px;
  line-height: 1;
}
@media (max-width: 767px) {
  .alert span {
    width: 24px;
  }
}

.mv-wrap {
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .mv-wrap {
    padding: 0 23px;
  }
}
@media (max-width: 767px) {
  .mv-wrap {
    padding: 0 23px;
  }
}

.mv-sub {
  font-size: 24px;
  background: #fff;
  padding: 2px 38px;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 1160px;
  margin: 0 auto;
  color: #00112C;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .mv-sub {
    font-size: 16px;
    margin: 0 auto 11px;
    padding: 4px 18px;
  }
}

.mv-ttl {
  margin-top: 25px;
  font-size: 48px;
  line-height: 1;
  font-weight: bold;
}
@media (max-width: 767px) {
  .mv-ttl {
    font-size: 24px;
    margin-top: 25px;
  }
}

.mv-search {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .mv-search {
    margin-top: 40px;
  }
}

.mv-search-form input[type=text] {
  border-radius: 12px;
  background: #fff;
  border: none;
  height: 50px;
  padding: 17px 27px;
  outline: none;
  font-size: 16px;
  font-family: "ヒラギノ角ゴシック", "Noto Sans JP", "Hiragino Sans", sans-serif;
}
@media (max-width: 767px) {
  .mv-search-form input[type=text] {
    font-size: 14px;
    padding: 17px 16px;
    height: 40px;
  }
}

.mv-form {
  display: flex;
  justify-content: center;
}

.search-keyword {
  width: 354px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .search-keyword {
    width: 192px;
  }
}
.search-keyword input[type=text] {
  width: 100%;
}

.search-pass {
  width: 163px;
  max-width: 100%;
  margin: 0 20px;
}
@media (max-width: 767px) {
  .search-pass {
    margin: 0 12px;
    width: 114px;
  }
}
.search-pass input[type=text] {
  width: 100%;
}

.search-submit input[type=submit] {
  background: url(https://p1-1881be70.imageflux.jp/getkeyword/icon-search.svg) no-repeat center center/contain;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 12px;
  outline: none;
}
@media (max-width: 767px) {
  .search-submit input[type=submit] {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .search-submit {
    width: 40px;
    height: 40px;
  }
}

.mv-search-txt {
  margin-top: 25px;
}
.mv-search-txt a {
  color: #fff;
  text-decoration: underline;
}

.mv-hush {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .mv-hush {
    max-width: 350px;
    margin: 40px auto 0;
  }
}
.mv-hush h2 {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .mv-hush h2 {
    font-size: 15px;
  }
}
.mv-hush h2 span {
  margin-right: 12px;
  display: inline-block;
}
@media (max-width: 767px) {
  .mv-hush h2 span {
    width: 16px;
  }
}

.mv-hush-list {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .mv-hush-list {
    flex-wrap: wrap;
  }
}
.mv-hush-list li {
  font-size: 18px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .mv-hush-list li {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .mv-hush-list li {
    font-size: 12px;
  }
}
.mv-hush-list li:not(:first-child) {
  margin-left: 20px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .mv-hush-list li:not(:first-child) {
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  .mv-hush-list li:not(:first-child) {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .mv-hush-list li:not(:nth-child(3n+1)) {
    margin-left: 12px;
  }
  .mv-hush-list li:nth-child(n+4) {
    margin-top: 12px;
  }
}
.mv-hush-list a {
  color: #fff;
}
.mv-hush-list a.keyword_link {
  text-decoration: underline;
  font-weight: bold;
}

/*==============================
worries
==================================================================================*/
.worries {
  padding: 100px 0 156px;
  position: relative;
}
@media (max-width: 767px) {
  .worries {
    padding: 50px 0 78px;
  }
}

.worries-list {
  margin-top: 50px;
  display: flex;
}
@media (max-width: 767px) {
  .worries-list {
    display: block;
  }
}

.worries-item {
  text-align: center;
  width: calc(33.3333% - 46.6666666667px);
}
@media (min-width: 768px) and (max-width: 1279px) {
  .worries-item {
    width: calc(33.3333% - 20px);
  }
}
.worries-item:not(:first-child) {
  margin-left: 70px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .worries-item:not(:first-child) {
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .worries-item:not(:first-child) {
    margin: 50px 0 0;
  }
}
@media (max-width: 767px) {
  .worries-item {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .worries-img {
    max-width: 250px;
    margin: 0 auto;
  }
}

.worries-content {
  font-size: 24px;
  margin-top: 24px;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 600;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .worries-content {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .worries-content {
    font-size: 18px;
  }
}

.colored {
  color: #F23A65;
}

.worries-next {
  position: relative;
}

.worries-next-img {
  position: absolute;
  bottom: -190px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .worries-next-img {
    width: 40px;
    bottom: -100px;
  }
}

/*==============================
resolution
==================================================================================*/
.resolution {
  background: rgba(56, 232, 176, 0.1);
  padding: 134px 0 111px;
}
@media (max-width: 767px) {
  .resolution {
    padding: 67px 0 55px;
  }
}

.resolution-wrap {
  display: flex;
}
@media (max-width: 767px) {
  .resolution-wrap {
    display: block;
  }
}

.resolution-left {
  width: 50%;
}
@media (max-width: 767px) {
  .resolution-left {
    width: 100%;
    margin-top: 50px;
  }
}

.resolution-txt {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .resolution-txt {
    margin-top: 25px;
  }
}

.resolution-btn {
  margin: 50px 0 0;
}
@media (max-width: 767px) {
  .resolution-btn {
    margin: 50px auto 0;
  }
}

.resolution-right {
  width: 50%;
  padding-left: 120px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .resolution-right {
    padding-left: 80px;
  }
}
@media (max-width: 767px) {
  .resolution-right {
    max-width: 250px;
    padding-left: 0;
    margin: 25px auto 0;
  }
}

/*==============================
merit
==================================================================================*/
.merit {
  padding: 100px 0 164px;
  position: relative;
}
@media (max-width: 767px) {
  .merit {
    padding: 50px 0 82px;
  }
}

.merit-list {
  margin: 100px 0;
  display: flex;
}
@media (max-width: 767px) {
  .merit-list {
    margin: 50px 0;
    display: block;
  }
}

.merit-item {
  width: calc(33.3333% - 66.6666666667px);
}
@media (min-width: 768px) and (max-width: 1279px) {
  .merit-item {
    width: calc(33.3333% - 26.6666666667px);
  }
}
@media (max-width: 767px) {
  .merit-item {
    width: 100%;
  }
}
.merit-item:not(:first-child) {
  margin-left: 100px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .merit-item:not(:first-child) {
    margin-left: 40px;
  }
}
@media (max-width: 767px) {
  .merit-item:not(:first-child) {
    margin: 50px 0 0;
  }
}

.merit-img {
  text-align: center;
}
@media (max-width: 767px) {
  .merit-img {
    max-width: 250px;
    margin: 0 auto;
  }
}

.merit-lead {
  text-align: center;
  margin-top: 26px;
  font-size: 24px;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.7083333333;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .merit-lead {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .merit-lead {
    font-size: 18px;
    margin-top: 13px;
  }
}

.merit-next {
  position: relative;
}

.merit-next-img {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .merit-next-img {
    bottom: -100px;
  }
}

/*==============================
reason 
==================================================================================*/
.reason {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .reason {
    padding: 50px 0;
  }
}
.reason .ttl {
  line-height: 1;
}

.reason-wrap {
  max-width: 1040px;
  margin: 0 auto;
}

.reason-item {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .reason-item {
    display: block;
  }
}
.reason-item:not(:first-child) {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .reason-item:not(:first-child) {
    margin-top: 50px;
  }
}

.reason-left {
  width: 50%;
}
@media (max-width: 767px) {
  .reason-left {
    width: 100%;
  }
}

.reason-txt {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .reason-txt {
    margin-top: 25px;
  }
}

.reason-right {
  width: 50%;
  padding-left: 120px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .reason-right {
    padding-left: 60px;
  }
}
@media (max-width: 767px) {
  .reason-right {
    width: 100%;
    margin-top: 25px;
    padding-left: 0;
  }
  .reason-right img {
    width: 100%;
  }
}

.reason-item02 {
  flex-direction: row-reverse;
}
.reason-item02 .reason-right {
  padding: 0 120px 0 0;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .reason-item02 .reason-right {
    padding: 0 60px 0 0;
  }
}
@media (max-width: 767px) {
  .reason-item02 .reason-right {
    padding: 0;
  }
}

.reason-btn {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .reason-btn {
    margin-top: 50px;
  }
}

/*==============================
voice
==================================================================================*/
.voice {
  padding: 100px 0;
  background: rgba(56, 232, 176, 0.1);
}
@media (max-width: 767px) {
  .voice {
    padding: 50px 0;
  }
}
.voice .inner {
  max-width: 1160px;
}

.voice-list {
  max-width: 1160px;
  margin: 100px auto 0;
  display: flex;
}
@media (max-width: 767px) {
  .voice-list {
    margin: 50px 0 0;
    display: block;
  }
}

.voice-item {
  width: calc(33.3333% - 36.6666666667px);
  overflow-y: hidden;
  height: 360px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .voice-item {
    width: calc(33.3333% - 13.3333333333px);
  }
}
@media (max-width: 767px) {
  .voice-item {
    width: 100%;
  }
}
.voice-item:not(:first-child) {
  margin-left: 55px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .voice-item:not(:first-child) {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .voice-item:not(:first-child) {
    margin: 40px 0 0;
  }
}

.twitter-tweet {
  margin: 0 auto;
}

.btn-more {
  margin-top: 100px;
  width: 210px;
}
@media (max-width: 767px) {
  .btn-more {
    margin-top: 50px;
  }
}
.btn-more a {
  font-size: 20px;
  padding: 15px 0;
  background: linear-gradient(90deg, #F23A65, #F56A8A);
}

/*==============================
use
==================================================================================*/
.use {
  padding: 100px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .use {
    padding: 50px 0;
  }
}
.use .ttl {
  font-feature-settings: "palt";
}

.use-wrap {
  margin: 160px auto 0;
  max-width: 1040px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .use-wrap {
    padding: 0 23px;
  }
}
@media (max-width: 767px) {
  .use-wrap {
    margin: 50px auto 0;
    padding: 0 23px;
  }
}

.use-item {
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .use-item {
    display: block;
  }
}
.use-item:not(:first-child) {
  margin-top: 224px;
}
@media (max-width: 767px) {
  .use-item:not(:first-child) {
    margin-top: 100px;
  }
}
.use-item::before {
  position: absolute;
  content: "";
  width: 216px;
  height: 2px;
  bottom: -37%;
  background-image: linear-gradient(to right, #38E8B0, #38E8B0 4px, transparent 4px, transparent 8px);
  /* 幅2の線を作る */
  background-size: 8px 2px;
  /* グラデーションの幅・高さを指定 */
  background-position: left bottom;
  /* 背景の開始位置を指定 */
  background-repeat: repeat-x;
  /* 横向きにのみ繰り返す */
}
.use-item:nth-child(odd)::before {
  left: 38%;
  transform: rotate(-48deg);
}
@media (max-width: 767px) {
  .use-item:nth-child(odd)::before {
    display: none;
  }
}
.use-item:nth-child(odd) .use-left {
  padding-right: 100px;
}
@media (max-width: 767px) {
  .use-item:nth-child(odd) .use-left {
    padding-right: 0;
  }
}
.use-item:nth-child(odd) .use-circle {
  right: -50%;
}
@media (max-width: 767px) {
  .use-item:nth-child(odd) .use-circle {
    right: -180px;
  }
}
.use-item:nth-child(even) {
  flex-direction: row-reverse;
}
.use-item:nth-child(even)::before {
  right: 38%;
  transform: rotate(48deg);
}
@media (max-width: 767px) {
  .use-item:nth-child(even)::before {
    display: none;
  }
}
.use-item:nth-child(even) .use-left {
  padding-left: 100px;
}
@media (max-width: 767px) {
  .use-item:nth-child(even) .use-left {
    padding-left: 0;
  }
}
.use-item:nth-child(even) .use-circle {
  left: -50%;
}
@media (max-width: 767px) {
  .use-item:nth-child(even) .use-circle {
    left: -180px;
  }
}
.use-item:last-child::before {
  display: none;
}

.use-left {
  width: 50%;
}
@media (max-width: 767px) {
  .use-left {
    width: 100%;
  }
}

.use-txt {
  margin-top: 25px;
}

.use-right {
  position: relative;
  width: 50%;
}
@media (max-width: 767px) {
  .use-right {
    width: 100%;
    margin-top: 50px;
  }
}

.use-circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  width: 520px;
}
@media (max-width: 767px) {
  .use-circle {
    width: 290px;
  }
}

.use-heading {
  font-size: 32px;
  text-align: center;
  font-weight: bold;
  margin: 100px 0;
}
@media (max-width: 767px) {
  .use-heading {
    margin: 50px 0;
    font-size: 18px;
  }
}

/*==============================
qa
==================================================================================*/
.qa {
  padding: 100px 0;
  background: rgba(56, 232, 176, 0.1);
}
@media (max-width: 767px) {
  .qa {
    padding: 50px 0;
  }
}
.qa .inner {
  max-width: 1160px;
}

.qa-list {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .qa-list {
    margin-top: 50px;
  }
}

.qa-item {
  padding: 40px 65px 35px;
  background: #fff;
  border-radius: 32px;
}
@media (max-width: 767px) {
  .qa-item {
    padding: 20px 35px;
    border-radius: 25px;
  }
}
.qa-item:not(:first-child) {
  margin-top: 50px;
}

.qa-txt {
  position: relative;
  padding-left: 44px;
}
.qa-txt:not(:first-child) {
  margin-top: 20px;
}
.qa-txt a {
  color: blue;
  text-decoration: underline;
}
.qa-txt span {
  display: inline-block;
  padding: 3px 9px;
  position: absolute;
  left: 0;
  top: -3px;
}
@media (max-width: 767px) {
  .qa-txt span {
    padding: 1px 7px;
    top: -2px;
  }
}

.qa-q {
  background: #00112C;
  color: #fff;
}

.qa-a {
  background: #38E8B0;
}

/*==============================
contact
==================================================================================*/
.contact {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .contact {
    padding: 50px 0;
  }
}

.cnt-wrap {
  display: flex;
}
@media (max-width: 767px) {
  .cnt-wrap {
    display: block;
  }
}

.cnt-left {
  width: 50%;
}
@media (max-width: 767px) {
  .cnt-left {
    width: 100%;
  }
}

.btn-wrap {
  display: flex;
}
@media (max-width: 767px) {
  .btn-wrap {
    display: block;
  }
}
.btn-wrap .btn {
  width: 50%;
}
@media (max-width: 767px) {
  .btn-wrap .btn {
    max-width: 100%;
    width: 280px;
  }
}
.btn-wrap .btn:last-child {
  margin-left: 40px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .btn-wrap .btn:last-child {
    margin-left: 15px;
  }
}
@media (max-width: 767px) {
  .btn-wrap .btn:last-child {
    margin: 25px auto 0;
  }
}
.btn-wrap .btn a {
  font-size: 18px;
  padding: 16px 0;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .btn-wrap .btn a {
    font-size: 14px;
  }
}
.btn-wrap .btn span {
  width: 16px;
  margin-right: 0;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .btn-wrap .btn span {
    width: 14px;
  }
}
.btn-wrap .cnt-btn a {
  background: #00112C;
  color: #fff;
}

.cnt-txt {
  margin: 50px 0;
}
@media (max-width: 767px) {
  .cnt-txt {
    margin: 25px 0;
  }
}

.cnt-btn {
  text-align: left;
}

.cnt-right {
  width: 50%;
  padding-left: 120px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .cnt-right {
    padding-left: 60px;
  }
}
@media (max-width: 767px) {
  .cnt-right {
    width: 100%;
    padding-left: 0;
    margin-top: 50px;
  }
  .cnt-right img {
    width: 100%;
  }
}

/*==============================
footer
==================================================================================*/
.footer {
  background: #00112C;
  color: #fff;
}
@media (max-width: 767px) {
  .footer {
    padding: 20px 0;
  }
}

.footer-inner {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-inner {
    flex-direction: column;
    justify-content: center;
  }
}

.footer-txt {
  height: 80px;
  line-height: 80px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .footer-txt {
    order: 2;
    height: auto;
    line-height: 1;
    margin-top: 30px;
    font-size: 12px;
  }
}
.footer-txt a {
  color: #fff;
  text-decoration: underline;
}

.footer-wrap {
  display: flex;
  margin-left: auto;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-wrap {
    order: 1;
    margin: 0;
  }
}

.footer-lead {
  font-size: 16px;
  padding-right: 25px;
  line-height: 1;
  border-right: 1px solid #fff;
}
@media (max-width: 767px) {
  .footer-lead {
    font-size: 14px;
  }
}

.footer-list {
  display: flex;
}
.footer-list li {
  margin-left: 22px;
}
@media (max-width: 767px) {
  .footer-list li {
    width: 24px;
  }
}

/*==============================
フワッと
==================================================================================*/
/* フェードイン(初期値) */
.js-fadeUp {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(25px);
  /* 下に30pxの位置から */
  transition: opacity 1s, transform 1s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: 0.2s;
  /* フェード開始を0.5秒遅らせる */
}