@charset "UTF-8";
:root{
  --color-daiichi-life-blue: #1746FF;
  --color-dark-blue: #000064;
  --color-blue: #0091ff;
  --color-light-blue: #4edaff;
}
/* ------------------------------ reset css */
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ------------------------------ custom css */
/* Common */
body{
  color: #333;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック体", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Noto Sans JP", Arial, sans-serif;
	font-size: 16px;
  font-weight: 500;
	line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
*, :before, :after {
  box-sizing: border-box;
}
img{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
@media screen and (min-width: 769px) {
	.sp{
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.pc{
		display: none;
	}
}
/* Header */
.header{
  background: #FFF;
}
.header .logo{
  padding: 3px 0;
  margin: 0 auto;
  max-width: 960px;
  width: 94vw;
}
.header .logo img{
	max-width: 340px;
  width: 59vw;
}
/* futureLine */
.line-container{
  display: grid;
  height: 2.0512820513vw;
  background-image: linear-gradient(to right, var(--color-daiichi-life-blue) 50%, var(--color-light-blue) 50%);
  place-items: stretch start;
  overflow-x: hidden;
  width: 100%;
}
.line-container > .svg > path:nth-child(1) {
  fill: var(--color-light-blue);
}
.line-container > .svg > path:nth-child(2) {
  fill: var(--color-daiichi-life-blue);
}
.line-container > .svg > path:nth-child(3) {
  fill: var(--color-blue);
}
.line-container > .svg > path:nth-child(4) {
  fill: var(--color-dark-blue);
}
@media screen and (min-width: 769px) {
  .line-container{
      height: 0.8333333333vw;
  }
  .line-container .no-pc{
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .line-container .no-sp{
    display: none;
  }
}
/* Main */
.main{
  background: url(../img/bg.jpg) left 45% bottom 5px / 1000px auto no-repeat;
  flex: 1;
  padding: 30px 0;
  width: 100%;
}
.main .inner{
  margin: 0 auto;
  max-width: 700px;
  width: 100%;
  height: calc(100vh - 420px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main .text{
  font-weight: bold;
  font-size: 22px;
  line-height: 1.8;
  text-align: center;
  width: 100%;
}
.btn{
  background: #FFF;
  border: 1px solid #333;
  border-radius: 100vh;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  margin: 30px auto 0;
  padding: 13px 20px;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  width: fit-content;
}
.btn:hover{
  background-color: #eee;
}
.btn::after{
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
}
.btn_inner{
  flex: 1;
  padding-inline: 10px;
}
/* Footer */
footer{
	padding: 0 0 8px;
	font-size: 10px;
	text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .btn{
    min-width: 370px;
  }
}
@media screen and (max-width: 768px) {
  .main{
    background-size: 177%;
    background-position: left 45% bottom 17%;
  }
  .main .inner{
    height: 43vh;
  }
  .main .text{
    font-size: 18px;
  }
  .btn{
    max-width: 300px;
    width: 90%;
  }
}