@charset "UTF-8";


/* @font-face {
  font-family: 'Noto Sans JP';
  src: url('/font/NotoSansJP-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
} */
@font-face {
  font-family: 'Noto Sans JP';
  src: url('/font/NotoSansJP-Black.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* Specify the box size calculation method */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Improved responsiveness of links and buttons on touch devices */
a,
area,
button,
[role="button"],
input:not([type="range"]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/* --------------------
	Settings
	変数・mixin設定
-------------------- */
/*
	書体
-------------------- */
/*
$font_googleFont02: 'Noto Sans JP', sans-serif;
$font_googleFont03: 'Noto Sans JP', sans-serif;
*/
/*
@mixin font02() {
	font-family: $font_googleFont02;
	font-weight: $font_regular;
	font-style: normal;
}
@mixin font03() {
	font-family: $font_googleFont03;
	font-weight: $font_regular;
	font-style: normal;
}
*/
/*
	カラー
-------------------- */
/*
	その他
-------------------- */
/* --------------------
	Layout
-------------------- */
/* Mixin */
/* common parts */
/* background image */
/* button */
/*
	Base settings
------------------------------------------------------------ */
html {
  font-size: 1.125rem;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 0.875rem;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body a {
  transition: all .2s ease-in-out;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

body a:hover {
  opacity: .7;
}

@media screen and (max-width: 768px) {
  body a:hover {
    opacity: 1;
  }
}

body img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

body em {
  font-style: normal;
}

body li {
  list-style: none;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-weight: inherit;
}

.wrap {
  background: white;
  width: 100%;
  color: #000000;
  padding-top: 5.4vw;
}

.wrap .emphasis {
  color: #FF5647;
}

.wrap .emphasis2 {
  color: #0022A4;
}

.wrap .large {
  font-size: 2.78rem !important;
}

.wrap .large2 {
  font-size: 2.22rem !important;
}

.wrap .sp {
  display: none;
}

.wrap .pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .wrap {
  padding-top: 12vw;
}

  .wrap .sp {
    display: block;
  }

  .wrap .pc {
    display: none;
  }

  .wrap .large {
    font-size: 1.78rem !important;
  }

  .wrap .large2 {
    font-size: 1.22rem !important;
  }
}

/*
	Header
------------------------------------------------------------ */
.header {
  background: white;
  width: 100%;
  color: #000000;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.header__inner {
  padding: .71vw 3.57vw;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
}

.header__heading {
  width: 15.07vw;
}

.header__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__button-item {
  width: 22.29vw;
  border-radius: 10rem;
  font-size: 1.43vw;
  position: relative;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2));
}

.header__button-item::before {
  content: '';
  background-position: center right;
  background-repeat: no-repeat;
  /*画像を繰り返さない*/
  background-size: contain;
  width: 2.05em;
  height: 2.05em;
  display: block;
  position: absolute;
  top: 50%;
  left: 1.8em;
  transform: translateY(-50%);
}

.header__button-item a {
  height: 2.8em;
  padding-left: 4.5em;
  line-height: 2.8em;
  color: #fff;
  font-weight: 700;
  display: block;
}

.header__button-item01 {
  background: #FF5647;
}

.header__button-item01::before {
  background-image: url("../images/button_icon01.svg");
}

.header__button-item02 {
  background: #0022A4;
  margin-left: 1.42vw;
}

.header__button-item02::before {
  background-image: url("../images/button_icon02.svg");
}

@media screen and (max-width: 768px) {
  .header__inner {
    padding: 1.33vw 2.42vw;
  }

  .header__heading {
    width: 34.66vw;
  }

  .header__button {
    justify-content: flex-end;
  }

  .header__button-item01 {
    width: 100%;
    border-radius: 0;
    font-size: 5.8vw;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
  }

  .header__button-item01 a {
    height: 15.22vw;
    padding-left: 2em;
    line-height: 15.22vw;
  }

  .header__button-item01::before {
    left: calc(50% - 5.5em);
  }

  .header__button-item02 {
    width: 53.14vw;
    margin: 0;
    font-size: 3.62vw;
  }

  .header__button-item02 a {
    padding-left: 4em;
  }

  .header__button-item02::before {
    left: 1.3em;
  }
}

/* visual */
.visual {
  background-color: white;
  /* background-image: url("../images/visual.webp");
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;  */
  position: relative;
}

.visual__bg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.visual__bg-pc {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual__inner {
  width: 90vw;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}

.visual__heading {
  margin: 0;
  padding: 0 0 .5rem;
  line-height: 1.6em;
  font-size: 2.7rem;
  font-weight: 700;
}

.visual__heading .sub {
  background: #fff;
  display: inline-block;
  border: 4px solid #092A78;
}

.visual__heading .sub p {
  font-size: 1.56rem;
  color: #092A78;
  padding: 1rem;
  margin: -2.2rem 0;
}

.visual__heading .main {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 180%;
}

.visual__heading .main .gold {
  color: #CABD54;
}

.visual__heading .main .marker {
  background: #092A78;
  padding: .2rem;
}

.visual__text {
  padding: .5rem 0 0;
  line-height: 1.6em;
  letter-spacing: .2rem;
  font-size: 1rem;
  text-align: center;
  font-weight: 700;
}

.visual__title {
  width: 90%;
  margin: 0 0 0 -1rem;
}

.visual__point {
  padding: 1.78rem 0;
  background: #4cabe2;
  background: -webkit-linear-gradient(left, #4cabe2 0%, #387ec7 100%);
  background: -o-linear-gradient(left, #4cabe2 0%, #387ec7 100%);
  background: linear-gradient(to right, #4cabe2 0%, #387ec7 100%);
  position: relative;
  z-index: 2;
}

.visual__point-inner {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.visual__appeal {
  position: relative;
  background: #092A78;
  padding: 1rem;
  margin: 0 0 3rem;
  text-align: center;
  color: #FFFFFF;
}

.visual__appeal:after {
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(0, 153, 255, 0);
  border-top-width: 20px;
  border-bottom-width: 20px;
  border-left-width: 30px;
  border-right-width: 30px;
  margin-left: -10px;
  border-top-color: #092A78;
  top: 100%;
  left: 50%;
}

.visual__appeal .text {
  font-size: 1.67rem;
  font-weight: bold;
  margin: 0 0 3rem;
  position: relative;
}

.visual__appeal .text::after {
  content: "";
  display: inline-block;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: -30px;
  left: 46%;
  width: 10%;
}

.visual__appeal .heading {
  font-size: 3.39rem;
  padding: 0 0 2.44rem;
  color: #CABD54;
  font-weight: bold;
}

.visual .comment {
  font-size: 1.17rem;
  font-weight: 700;
  color: #FF5647;
  position: relative;
  padding: 0 2rem 0 0;
}

.visual .comment::after {
  position: absolute;
  content: '';
  top: 0px;
  right: 10px;
  display: block;
  width: 24px;
  height: 28px;
  background-image: url("../images/button_mark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  /*画像を繰り返さない*/
}

.visual__button {
  margin: 0 auto;
  width: 70%;
  border-radius: 60px;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2));
  background: #FF5647;
  position: relative;
}

.visual__button a {
  display: block;
  padding: 1.67rem 0 1.67rem 0;
  color: #fff;
  font-size: 1.56rem;
  font-weight: 700;
  text-align: center;
}

.visual__button .text {
  font-size: 1.22rem;
  padding: 0 0 .67rem;
}

.visual__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1120px) {
  .visual__heading {
    font-size: 5vw;
  }

  .visual__heading .sub {
    margin: 0 0 0.5rem;
  }

  .visual__heading .sub p {
    font-size: 3vw;
  }

  .visual__heading .main {
    font-size: 5.5vw;
  }

  .visual__heading .main span {
    font-size: 5vw;
  }

  .visual__point-inner {
    width: 90%;
  }

  .visual__appeal .text {
    font-size: 3vw;
  }

  .visual__appeal .heading {
    font-size: 5vw;
  }
}

@media screen and (max-width: 768px) {
  .visual {
    background-image: url("../images/visual-sp.webp");
      background-position: top;
      background-repeat: no-repeat;
      background-size: contain; 
  }

  .visual__bg-pc {
    display: none;
  }

  .visual__inner {
    margin: auto auto 0;
    padding: 4.22rem 0 3rem;
  }

  .visual__inner-sub {
    padding: 1.44rem 0 4rem 0;
  }

  .visual__heading {
    font-size: 2.7rem;
  }

  .visual__heading .sub {
    display: inline-block;
    height: inherit;
  }

  .visual__heading .sub p {
    font-size: .94rem;
    padding: 0 1rem;
    margin: -1rem 0;
  }

  .visual__heading .main span {
    font-size: 1.78rem;
    line-height: 180%;
  }

  .visual__image {
    width: 85%;
    margin: 0 auto;
  }

  .visual__text {
    font-size: 1.11rem;
  }

  .visual__appeal {
    padding: 1rem;
    margin: 0 0 3rem;
  }

  .visual__appeal:after {
    left: 45%;
  }

  .visual__appeal .text {
    font-size: 4.5vw;
    line-height: 160%;
    margin: 0 0 3rem;
  }

  .visual__appeal .text:after {
    bottom: -15px;
  }

  .visual__appeal .heading {
    font-size: 6.5vw;
    padding: 0px 0 1.44rem;
  }

  .visual__title {
    width: 100%;
    margin: 0;
  }

  .visual__point-inner {
    width: 70%;
  }

  .visual .comment {
    font-size: 1.17rem;
    padding: 0 0 1rem 1rem;
    text-align: center;
  }

  .visual .comment::after {
    position: absolute;
    content: '';
    top: 0px;
    right: 60.67vw;
    display: block;
    width: 24px;
    height: 28px;
    background-image: url("../images/button_mark-sp.svg");
    background-size: contain;
    background-repeat: no-repeat;
    /*画像を繰り返さない*/
  }

  .visual__button {
    margin: 0 0.5rem;
    width: 100%;
  }

  .visual__button a {
    padding: 1.5rem 0;
    font-size: 1.56rem;
    text-align: center;
  }

  .visual__box {
    display: block;
  }
}
