@charset "UTF-8";

/* ----------------------------------------------------
	Reset
---------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  min-height: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.15;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  margin: 0;
  clear: both;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  color: inherit;
}

pre {
  font-size: inherit;
  font-family: monospace, monospace;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-size: inherit;
  font-family: monospace, monospace;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  vertical-align: middle;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

select::-ms-expand {
  display: none;
}

option {
  padding: 0;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  display: table;
  max-width: 100%;
  padding: 0;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable] {
  outline: none;
}

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

caption {
  text-align: left;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* ----------------------------------------------------
	Base
---------------------------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-font-kerning: none;
  height: 100%;
  font-size: 2.6666vw;
  font-kerning: none;
}

body {
  position: relative;
  background-color: #fff;
  color: #042c40;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

/* ----------------------------------------------------
	Header
---------------------------------------------------- */
.l-header {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.l-header.js-fixed {
  -webkit-animation: slidedown 0.3s ease-in-out;
  position: fixed;
  background-image: linear-gradient(to right, #042c40 0%, #3d83b5 100%);
  animation: slideDown 0.3s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 5.6rem;
  padding-right: 1.6rem;
  padding-left: 1.6rem;
}

.l-header__logo {
  margin-top: -0.6rem;
}

.l-header__logo img {
  width: 15.2rem;
}

.l-header__button ul {
  display: flex;
  gap: 0.8rem;
}

.l-header__button--item {
  letter-spacing: 0;
}

.l-header__button--item a {
  display: block;
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

/* ----------------------------------------------------
	Footer
---------------------------------------------------- */
.l-footer {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  background-image: linear-gradient(to right, #042c40 0%, #3d83b5 100%);
  color: #fff;
}

.l-footer__navi {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.4rem;
  gap: 1.6rem;
}

.l-footer__naviItem a {
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

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

.l-footer__copyright small {
  font-size: 1.2rem;
}

/* ----------------------------------------------------
	Main
---------------------------------------------------- */
.l-rootContainer {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  overflow: hidden;
}

.l-main {
  flex: 1;
}

/* ----------------------------------------------------
	Link
---------------------------------------------------- */
.c-link {
  transition: opacity 0.3s linear;
}

/* ----------------------------------------------------
	button
---------------------------------------------------- */
.c-button01 {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 2rem 4rem 2.1rem;
  border: solid 0.2rem #fff;
  border-radius: 0.8rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}

.c-button01::after {
  position: absolute;
  top: 50%;
  right: 2.9rem;
  width: 2.2rem;
  height: 2.2rem;
  transform: translateY(-50%);
  background: url("../images/icon_arrow01.svg") no-repeat center/cover;
  content: "";
}

.c-button02 {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 2.2rem 4rem 2.3rem;
  border-radius: 0.8rem;
  background-image: linear-gradient(to right, #17a3d7, #1e68d1);
  background-color: #1e68d1;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}

.c-button02::after {
  position: absolute;
  top: 50%;
  right: 2.9rem;
  width: 2.2rem;
  height: 2.2rem;
  transform: translateY(-50%);
  background: url("../images/icon_arrow01.svg") no-repeat center/cover;
  content: "";
}

/* ----------------------------------------------------
	CTA area
---------------------------------------------------- */
.c-ctaArea {
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
  background: url("../images/bg_cta.jpg") no-repeat center left calc(50% - 26rem)/cover;
  color: #fff;
}

.c-ctaArea__heading {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
}

.c-ctaArea__buttonWrapper {
  display: flex;
  flex-direction: column;
  margin-top: 3.2rem;
  gap: 1.6rem;
}

/* ----------------------------------------------------
	Top Common Section
---------------------------------------------------- */
.c-topSection {
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
}

/* ----------------------------------------------------
	Component
---------------------------------------------------- */

/* コンテンツ枠 */
.c-contentBlock01 {
  z-index: 1;
  position: relative;
  width: 100%;
  padding-right: 1.6rem;
  padding-left: 1.6rem;
}

/* Heading */
.c-topHeading {
  margin-bottom: 4rem;
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
}

/* ----------------------------------------------------
	Project
---------------------------------------------------- */

/* mainVisual */
.p-mainVisual {
  position: relative;
  min-height: 66.7rem;
  padding-top: 10rem;
  padding-bottom: 8rem;
  background: url("../images/mv.jpg") no-repeat top left calc(50% - 9.6rem)/cover;
}

.p-mainVisual__textWrapper {
  color: #fff;
}

.p-mainVisual__title {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.94;
  letter-spacing: -0.005em;
}

.p-mainVisual__title .--bgWhite {
  display: inline-block;
  margin-right: 0.6rem;
  padding: 0.2rem 0.8rem 0.4rem;
  background-color: #fff;
  color: #042c40;
  line-height: 1.5;
}

.p-mainVisual__title .--large {
  font-weight: bold;
  font-size: 3.2rem;
}

.p-mainVisual__text {
  margin-top: 1.2rem;
}

.p-mainVisual__buttonWrapper {
  display: flex;
  flex-direction: column;
  margin-top: 5.6rem;
  gap: 1.6rem;
}

.p-mainVisual__button::after {
  right: 1.7rem;
}

/* section 01 */
.p-section-01 {
  background: url("../images/bg_01.png") no-repeat top center/cover;
}

.p-section-01__boxWrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.p-section-01__box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-section-01__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 14rem;
  height: 14rem;
  margin-bottom: 1.6rem;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0.8rem 4rem 0 rgba(4, 44, 64, 0.1);
}

.p-section-01__image img {
  width: 9.6rem;
}

.p-section-01__title {
  margin-bottom: 1.2rem;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}

.p-section-01__text {
  text-align: center;
}

/* section 02 */

.p-section-02__boxWrapper {
  display: flex;
  flex-direction: column;
  margin-top: 1.6rem;
  gap: 3.2rem;
}

.p-section-02__box img {
  width: 100%;
}

/* flow */
.p-section-flow__boxWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6.5rem;
}

.p-section-flow__box {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
}

.p-section-flow__box::after {
  position: absolute;
  width: 1.8rem;
  height: 2.2rem;
  background: url("../images/icon_arrow02.svg") no-repeat top center/cover;
  content: "";
}

.p-section-flow__box:last-of-type::after {
  display: none;
}

.p-section-flow__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 12rem;
  margin-bottom: 1.6rem;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0.8rem 4rem 0 rgba(4, 44, 64, 0.1);
}

.p-section-flow__image img {
  width: 6.4rem;
}

.p-section-flow__text {
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}

/* FAQ */
.p-section-faq {
  background: url("../images/bg_01.png") no-repeat top center/cover;
}

.p-section-faq__box {
  padding: 2.7rem 3.2rem 2.4rem;
  border-radius: 0.8rem;
  background-color: #fff;
  box-shadow: 0 0.8rem 4rem 0 rgba(4, 44, 64, 0.1);
}

.p-section-faq__box:not(:first-of-type) {
  margin-top: 2.4rem;
}

.p-section-faq__question {
  position: relative;
  margin-bottom: 1.2rem;
  padding-left: 2.6rem;
  font-weight: bold;
  font-size: 1.8rem;
}

.p-section-faq__question::before {
  position: absolute;
  top: -0.2rem;
  left: 0;
  content: "Q.";
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
}

/* ----------------------------------------------------
	Utility
---------------------------------------------------- */
.u-bold {
  font-weight: bold;
}

.u-bg-lightGray {
  background-color: #fafbfe;
}

.u-objectFit {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----------------------------------------------------
	以下、PC用・スマホ用のメディアクエリ
---------------------------------------------------- */

@media screen and (min-width: 768px) and (hover: hover) {
  .c-link:hover {
    opacity: 0.7;
    transition: opacity 0.3s linear;
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
  body {
    font-size: 1.6rem;
  }
  .l-header__inner {
    width: 144rem;
    max-width: 100%;
    height: 7.2rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: 4rem;
    padding-left: 4rem;
  }
  .l-header__logo {
    margin-top: -0.2rem;
  }
  .l-header__logo img {
    width: 21.1rem;
  }
  .l-header__button ul {
    margin-top: 0.4rem;
    gap: 2.4rem;
  }
  .l-footer {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .l-footer__navi {
    flex-direction: row;
    margin-bottom: 3.2rem;
    gap: 3.2rem;
  }
  .l-footer__copyright small {
    font-size: 1.4rem;
  }
  .c-link:focus {
    opacity: 0.7;
    transition: opacity 0.3s linear;
  }
  .c-button01 {
    min-width: 26.2rem;
    padding: 2.1rem 4.8rem 2rem 4.8rem;
  }
  .c-button02 {
    min-width: 26.2rem;
    padding: 2.3rem 4.8rem 2.2rem 4.8rem;
  }
  .c-ctaArea {
    padding-top: 8.2rem;
    padding-bottom: 8rem;
    background-position: center;
    background-size: auto 100%;
  }
  .c-ctaArea__heading {
    font-size: 3.6rem;
  }
  .c-ctaArea__buttonWrapper {
    flex-direction: row;
    justify-content: center;
    margin-top: 5.7rem;
    gap: 3.2rem;
  }
  .c-topSection {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .c-contentBlock01 {
    width: 96rem;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
  }
  .c-topHeading {
    margin-bottom: 6.4rem;
    font-size: 3.6rem;
  }
  .p-mainVisual {
    height: 60rem;
    min-height: 60rem;
    padding-top: 12.4rem;
    padding-bottom: 10rem;
    background-position: top center;
    background-size: auto 100%;
  }
  .p-mainVisual__title {
    font-size: 4rem;
  }
  .p-mainVisual__title .--bgWhite {
    margin-right: 1.2rem;
    padding: 0.4rem 1.4rem 0.8rem 1.2rem;
  }
  .p-mainVisual__title .--large {
    font-size: 4.8rem;
  }
  .p-mainVisual__text {
    font-size: 1.8rem;
  }
  .p-mainVisual__buttonWrapper {
    flex-direction: row;
    width: 44rem;
    margin-top: 5.7rem;
    gap: 2.4rem;
  }
  .p-mainVisual__button {
    width: 26.2rem;
  }
  .p-section-01__boxWrapper {
    flex-direction: row;
    gap: 7.2rem;
  }
  .p-section-01__box:nth-of-type(2) {
    margin-left: -1.8rem;
  }
  .p-section-01__image {
    width: 24rem;
    height: 24rem;
    margin-bottom: 2.4rem;
  }
  .p-section-01__image img {
    width: 12rem;
  }
  .p-section-01__title {
    font-size: 2.2rem;
  }
  .p-section-02__text {
    margin-top: 6.5rem;
    font-size: 2rem;
    text-align: center;
  }
  .p-section-02__boxWrapper {
    flex-direction: row;
    margin-top: 3.9rem;
    gap: 4rem;
  }
  .p-section-02__box img {
    width: 46rem;
  }
  .p-section-flow__boxWrapper {
    flex-direction: row;
  }
  .p-section-flow__box::after {
    top: 5.9rem;
    right: -4.3rem;
  }
  .p-section-flow__image {
    width: 14rem;
    height: 14rem;
    margin-bottom: 2.4rem;
  }
  .p-section-flow__text {
    font-size: 2rem;
  }
  .p-section-faq__question {
    padding-left: 3rem;
    font-size: 2rem;
  }

  .p-section-faq__question::before {
    font-size: 2.2rem;
  }
  /* スマホのみ表示 */
  .u-sp-only {
    display: none;
  }
}

@media not all and (min-width: 768px) {
  .l-header__button--item {
    font-size: 1.2rem;
  }
  .l-header__button--item a {
    color: #fff;
  }
  .p-mainVisual__text {
    line-height: 1.9;
  }
  .p-mainVisual__button.c-button01 {
    background-color: rgba(4, 44, 64, 0.5);
  }
  .p-section-flow__box::after {
    top: calc(100% + 2rem);
    right: 0;
    left: 0;
    margin: auto;
    transform: rotate(90deg);
  }
  /* PCのみ表示 */
  .u-pc-only {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}

@media (min-width: 2881px) {
  .c-ctaArea {
    background-size: cover;
  }
  .p-mainVisual {
    background-size: cover;
  }
}

@media (hover: none) {
  .c-link:active {
    opacity: 0.7;
  }
}
