@charset "UTF-8";
/*
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;
}
*/
/*
	カラー
-------------------- */
/*
	その他
-------------------- */
/* --------------------
	Base
	基本設定
-------------------- */
html {
  font-size: 1.8vw; }
  @media screen and (min-width: 1000px) {
    html {
      font-size: 18px; } }
  @media screen and (max-width: 768px) {
    html {
      font-size: 3.86vw; } }

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal; }
  body a {
    color: inherit;
    text-decoration: none; }
  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; }

/* --------------------
	Layout
-------------------- */
/* Mixin */
/* common parts */
/* background image */
/* button */
/*
	Wrap
------------------------------------------------------------ */
body a {
  transition: all .2s ease-in-out;
  cursor: pointer; }
  body a:hover {
    opacity: .7; }
  @media screen and (max-width: 768px) {
    body a:hover {
      opacity: 1; } }

.wrap img {
  width: 100%;
  height: auto; }

/*
	Header
------------------------------------------------------------ */
.header {
  background: white;
  width: 100%;
  color: #000000;
  position: fixed;
  top: 0;
  z-index: 1000; }
  .header__inner {
    padding: .5rem 1rem;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between; }
  .header__heading {
    width: 12%; }
  .header__text {
    line-height: 1.8em; }
  .header__button {
    width: 17%; }
    .header__button a {
      color: #cc2929;
      font-size: 2.4vw;
      font-weight: 700; }
  @media screen and (max-width: 768px) {
    .header__inner {
      padding: .3rem 1rem; }
    .header__heading {
      width: 32%;
      margin: 0; }
    .header__button {
      width: 62%; }
      .header__button a {
        font-size: 8.5vw; } }

/* visual */
.visual {
  background-color: white;
  background-image: url("../images/visual.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .visual {
      background-image: url("../images/visual@2x.jpg"); } }
  .visual__inner {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 2vw 0 3vw;
    position: relative; }
  .visual__heading {
    width: 60%; }
  .visual__catch {
    width: 40%;
    padding: 1rem 0; }
  .visual__text {
    width: 54%; }
  .visual__bottom {
    position: absolute;
    bottom: 0;
    right: 0; }
    @media screen and (max-width: 1280px) {
      .visual__bottom {
        width: 34%; } }
  .visual__top {
    position: absolute;
    top: 2rem;
    right: 0; }
    @media screen and (max-width: 1280px) {
      .visual__top {
        width: 42%; } }
  .visual__image {
    position: absolute;
    bottom: 0;
    right: -2rem;
    width: 55%; }
    @media screen and (max-width: 1280px) {
      .visual__image {
        width: 50%; } }
  @media screen and (max-width: 768px) {
    .visual__inner {
      padding: 5rem 0 0; }
    .visual__heading {
      width: 100%;
      margin: 0 auto; }
    .visual__catch {
      width: 68%;
      padding: 1.5rem 0; }
    .visual__text {
      width: 44%;
      padding: 0 0 5rem; }
    .visual__bottom {
      width: 60%; }
    .visual__top {
      display: none; }
    .visual__image {
      right: -1rem;
      width: 82%; } }

/*
	Contents
------------------------------------------------------------ */
.contents {
  background: transparent;
  color: #000000;
  /* 埋め込み地図・動画 レスポンシブ対応用 */ }
  .contents .video,
  .contents .map {
    width: 100%;
    max-width: 1000px;
    height: 0;
    margin: 0 auto;
    padding-top: 56.25%;
    position: relative;
    overflow: hidden; }
    .contents .video iframe,
    .contents .map iframe {
      width: 100% !important;
      height: 100% !important;
      position: absolute;
      top: 0;
      left: 0; }

/*
	Contents	主な編集箇所
------------------------------------------------------------ */
/* 全ブロック共通 */
.appeal,
.alert,
.point,
.case,
.area,
.price,
.step,
.voice,
.faq {
  padding: 4rem 0;
  padding: 2rem 0; }
  @media screen and (max-width: 768px) {
    .appeal,
    .alert,
    .point,
    .case,
    .area,
    .price,
    .step,
    .voice,
    .faq {
      padding: 8vw 0; } }
  .appeal .sp,
  .alert .sp,
  .point .sp,
  .case .sp,
  .area .sp,
  .price .sp,
  .step .sp,
  .voice .sp,
  .faq .sp {
    display: none; }
  .appeal__inner,
  .alert__inner,
  .point__inner,
  .case__inner,
  .area__inner,
  .price__inner,
  .step__inner,
  .voice__inner,
  .faq__inner {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto; }
  .appeal__heading,
  .alert__heading,
  .point__heading,
  .case__heading,
  .area__heading,
  .price__heading,
  .step__heading,
  .voice__heading,
  .faq__heading {
    padding: 0 0 2rem;
    line-height: 1.8em;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    color: #0b50b8; }
    .appeal__heading-left,
    .alert__heading-left,
    .point__heading-left,
    .case__heading-left,
    .area__heading-left,
    .price__heading-left,
    .step__heading-left,
    .voice__heading-left,
    .faq__heading-left {
      text-align: left; }
    .appeal__heading-center,
    .alert__heading-center,
    .point__heading-center,
    .case__heading-center,
    .area__heading-center,
    .price__heading-center,
    .step__heading-center,
    .voice__heading-center,
    .faq__heading-center {
      text-align: center; }
    .appeal__heading-right,
    .alert__heading-right,
    .point__heading-right,
    .case__heading-right,
    .area__heading-right,
    .price__heading-right,
    .step__heading-right,
    .voice__heading-right,
    .faq__heading-right {
      text-align: right; }
    .appeal__heading .small,
    .alert__heading .small,
    .point__heading .small,
    .case__heading .small,
    .area__heading .small,
    .price__heading .small,
    .step__heading .small,
    .voice__heading .small,
    .faq__heading .small {
      font-size: 1.33rem;
      display: block; }
    @media screen and (max-width: 768px) {
      .appeal__heading,
      .alert__heading,
      .point__heading,
      .case__heading,
      .area__heading,
      .price__heading,
      .step__heading,
      .voice__heading,
      .faq__heading {
        padding: 0 0 5vw;
        font-size: 1.5rem; }
        .appeal__heading .small,
        .alert__heading .small,
        .point__heading .small,
        .case__heading .small,
        .area__heading .small,
        .price__heading .small,
        .step__heading .small,
        .voice__heading .small,
        .faq__heading .small {
          font-size: 1rem; } }
    .appeal__heading .sub,
    .alert__heading .sub,
    .point__heading .sub,
    .case__heading .sub,
    .area__heading .sub,
    .price__heading .sub,
    .step__heading .sub,
    .voice__heading .sub,
    .faq__heading .sub {
      font-family: 'Anton', sans-serif;
      font-size: 1rem;
      position: relative; }
      .appeal__heading .sub::after,
      .alert__heading .sub::after,
      .point__heading .sub::after,
      .case__heading .sub::after,
      .area__heading .sub::after,
      .price__heading .sub::after,
      .step__heading .sub::after,
      .voice__heading .sub::after,
      .faq__heading .sub::after {
        content: "";
        display: block;
        width: 100px;
        height: 3px;
        background-color: #0b50b8;
        position: absolute;
        bottom: .5rem;
        left: 0;
        right: 0;
        margin: 0 auto; }
    .appeal__heading .main,
    .alert__heading .main,
    .point__heading .main,
    .case__heading .main,
    .area__heading .main,
    .price__heading .main,
    .step__heading .main,
    .voice__heading .main,
    .faq__heading .main {
      font-weight: bold; }
  .appeal__text,
  .alert__text,
  .point__text,
  .case__text,
  .area__text,
  .price__text,
  .step__text,
  .voice__text,
  .faq__text {
    line-height: 1.8em; }
    @media screen and (max-width: 768px) {
      .appeal__text,
      .alert__text,
      .point__text,
      .case__text,
      .area__text,
      .price__text,
      .step__text,
      .voice__text,
      .faq__text {
        /*br {
        	display: none;
        }*/ } }
  .appeal__image,
  .alert__image,
  .point__image,
  .case__image,
  .area__image,
  .price__image,
  .step__image,
  .voice__image,
  .faq__image {
    text-align: center; }
    .appeal__image img.circle,
    .alert__image img.circle,
    .point__image img.circle,
    .case__image img.circle,
    .area__image img.circle,
    .price__image img.circle,
    .step__image img.circle,
    .voice__image img.circle,
    .faq__image img.circle {
      border-radius: 100%;
      overflow: hidden; }
  @media screen and (max-width: 768px) {
    .appeal .sp,
    .alert .sp,
    .point .sp,
    .case .sp,
    .area .sp,
    .price .sp,
    .step .sp,
    .voice .sp,
    .faq .sp {
      display: block; }
    .appeal__heading .sub,
    .alert__heading .sub,
    .point__heading .sub,
    .case__heading .sub,
    .area__heading .sub,
    .price__heading .sub,
    .step__heading .sub,
    .voice__heading .sub,
    .faq__heading .sub {
      font-size: 3.5vw; }
    .appeal__heading .main,
    .alert__heading .main,
    .point__heading .main,
    .case__heading .main,
    .area__heading .main,
    .price__heading .main,
    .step__heading .main,
    .voice__heading .main,
    .faq__heading .main {
      font-size: 5.5vw;
      line-height: 1.4em; } }

/* 各ブロック個別 */
.appeal {
  background: #0b50b8; }
  .appeal__inner {
    color: white;
    text-align: center; }
  .appeal__text {
    margin: 2rem 0 0; }
    .appeal__text .note {
      font-size: .68rem; }
  .appeal__box {
    display: flex;
    justify-content: space-between; }
    .appeal__box-item {
      width: calc((100% - 2rem) / 3); }
  @media screen and (max-width: 768px) {
    .appeal__text {
      margin: 0;
      font-size: 3.5vw; }
      .appeal__text .note {
        font-size: 2.5vw; }
    .appeal__box {
      display: block; }
      .appeal__box-item {
        width: 100%;
        margin: 0 0 1rem; } }

.point {
  background-color: #effeff;
  background-image: url("../images/contents.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .point {
      background-image: url("../images/contents@2x.png"); } }
  .point__heading {
    width: 50%;
    margin: 0 auto 1rem; }
  .point__wrap {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap; }
    .point__wrap .box {
      width: calc((100% - 1rem) / 2);
      display: flex;
      justify-content: space-between;
      flex-flow: wrap;
      background: white;
      border-radius: 10px;
      align-items: flex-start;
      margin: 0 0 2rem;
      padding: 2rem 1rem; }
      .point__wrap .box01 {
        position: relative; }
        .point__wrap .box01::after {
          content: "";
          position: absolute;
          background-image: url("../images/point_no01.png");
          background-size: 53px;
          background-repeat: no-repeat;
          top: -1.5rem;
          margin: auto;
          left: 0px;
          right: 0px;
          width: 53px;
          height: 53px; }
          @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .point__wrap .box01::after {
              background-image: url("../images/point_no01@2x.png"); } }
      .point__wrap .box02 {
        position: relative; }
        .point__wrap .box02::after {
          content: "";
          position: absolute;
          background-image: url("../images/point_no02.png");
          background-size: 53px;
          background-repeat: no-repeat;
          top: -1.5rem;
          margin: auto;
          left: 0px;
          right: 0px;
          width: 53px;
          height: 53px; }
          @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .point__wrap .box02::after {
              background-image: url("../images/point_no02@2x.png"); } }
      .point__wrap .box03 {
        position: relative; }
        .point__wrap .box03::after {
          content: "";
          position: absolute;
          background-image: url("../images/point_no03.png");
          background-size: 53px;
          background-repeat: no-repeat;
          top: -1.5rem;
          margin: auto;
          left: 0px;
          right: 0px;
          width: 53px;
          height: 53px; }
          @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .point__wrap .box03::after {
              background-image: url("../images/point_no03@2x.png"); } }
      .point__wrap .box04 {
        position: relative; }
        .point__wrap .box04::after {
          content: "";
          position: absolute;
          background-image: url("../images/point_no04.png");
          background-size: 53px;
          background-repeat: no-repeat;
          top: -1.5rem;
          margin: auto;
          left: 0px;
          right: 0px;
          width: 53px;
          height: 53px; }
          @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .point__wrap .box04::after {
              background-image: url("../images/point_no04@2x.png"); } }
      .point__wrap .box05 {
        position: relative; }
        .point__wrap .box05::after {
          content: "";
          position: absolute;
          background-image: url("../images/point_no05.png");
          background-size: 53px;
          background-repeat: no-repeat;
          top: -1.5rem;
          margin: auto;
          left: 0px;
          right: 0px;
          width: 53px;
          height: 53px; }
          @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .point__wrap .box05::after {
              background-image: url("../images/point_no05@2x.png"); } }
      .point__wrap .box06 {
        position: relative; }
        .point__wrap .box06::after {
          content: "";
          position: absolute;
          background-image: url("../images/point_no06.png");
          background-size: 53px;
          background-repeat: no-repeat;
          top: -1.5rem;
          margin: auto;
          left: 0px;
          right: 0px;
          width: 53px;
          height: 53px; }
          @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .point__wrap .box06::after {
              background-image: url("../images/point_no06@2x.png"); } }
      .point__wrap .box-item01 {
        width: 16%;
        margin: 2rem auto; }
      .point__wrap .box-item02 {
        width: 78%; }
      .point__wrap .box-item .heading {
        font-size: 1.3rem;
        font-weight: bold;
        color: #0b50b8; }
      .point__wrap .box-item .text {
        line-height: 1.5em;
        padding: 1em 0 0; }
  @media screen and (max-width: 768px) {
    .point__heading {
      width: 90%; }
    .point__wrap {
      display: block; }
      .point__wrap .box {
        width: 100%;
        margin: 0 0 2rem; }
        .point__wrap .box-item .heading {
          font-size: 4.5vw;
          margin: 1rem 0 0; } }

.case {
  padding: 2rem 0 0; }
  .case__box {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap; }
    .case__box-item {
      width: calc((100% - 4rem) / 3);
      margin: 0 0 2rem; }
  .case__text {
    font-size: .7rem;
    text-align: center; }
  @media screen and (max-width: 768px) {
    .case {
      padding: 2rem 0 0; }
      .case__box-item {
        width: 80%;
        margin: 0 auto 1rem; }
      .case__text {
        font-size: 2.5vw; } }

.area {
  background-color: #effeff;
  background-image: url("../images/case.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .area {
      background-image: url("../images/case@2x.jpg"); } }
  .area__inner {
    padding: 9rem 0 0; }
  .area__box {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    align-items: center;
    padding: 2rem 0 4rem;
    position: relative; }
    @media screen and (max-width: 1280px) {
      .area__box {
        padding: 0 0 4rem; } }
    .area__box .heading {
      text-align: center;
      color: white;
      font-weight: 700;
      font-size: 2rem;
      line-height: 1.6em; }
      .area__box .heading .large {
        font-size: 3rem; }
      .area__box .heading .yellow {
        color: #fffc00; }
      @media screen and (max-width: 1280px) {
        .area__box .heading {
          font-size: 2.8vw; }
          .area__box .heading .large {
            font-size: 4vw; } }
    .area__box .text {
      text-align: center;
      color: white;
      font-size: 1.2rem;
      line-height: 1.6em;
      margin: 2rem 0 0; }
      @media screen and (max-width: 1280px) {
        .area__box .text {
          font-size: 1.8vw; } }
    .area__box-item02 {
      position: absolute;
      bottom: 0;
      right: -6rem; }
      @media screen and (max-width: 1280px) {
        .area__box-item02 {
          right: 0;
          width: 35vw; } }
  @media screen and (max-width: 768px) {
    .area__inner {
      padding: 7rem 0 0; }
    .area__box {
      display: block; }
      .area__box .heading {
        font-size: 5vw;
        margin: 2rem 0 0; }
        .area__box .heading .large {
          font-size: 7vw; }
      .area__box .text {
        font-size: 3.5vw;
        margin: 2rem 0 16rem; }
      .area__box-item02 {
        width: 100%; } }

.price {
  background: #effeff; }
  .price .marker {
    background: linear-gradient(transparent 60%, #ffea39 60%);
    font-size: 2.5rem; }
  @media screen and (max-width: 768px) {
    .price .marker {
      font-size: 6.5vw; } }

.step {
  background: #effeff; }
  .step__inner {
    max-width: 800px; }
  .step__box {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    align-items: flex-start;
    border-bottom: 1px solid #0b50b8;
    position: relative; }
    .step__box::before {
      content: "";
      position: absolute;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border-top: 15px solid #0b50b8;
      border-right: 15px solid transparent;
      border-left: 15px solid transparent; }
    .step__box04 {
      border-bottom: none; }
      .step__box04::before {
        display: none; }
    .step__box01 {
      padding: 0 0 2rem; }
    .step__box02, .step__box03, .step__box04 {
      padding: 2rem 0; }
    .step__box-item01 {
      width: 40%; }
    .step__box-item02 {
      width: 54%; }
    .step__box .text {
      line-height: 1.5em;
      text-align: justify; }
    .step__box .heading {
      font-size: 1.8rem;
      font-weight: 700;
      line-height: 1.4em;
      color: #0b50b8; }
    .step__box .red {
      color: #ff5216; }
    .step__box .number {
      color: #000000;
      vertical-align: middle;
      font-size: 1.1rem; }
    .step__box .image02 {
      margin: 1rem 0 0; }
  @media screen and (max-width: 768px) {
    .step__box-item01 {
      width: 30%; }
    .step__box-item02 {
      width: 64%; }
    .step__box .text {
      line-height: 1.5em;
      margin: 1rem 0 0; }
    .step__box .heading {
      font-size: 5vw;
      line-height: 1em; }
    .step__box .number {
      font-size: 3vw; } }

.voice {
  background: #0b50b8; }
  .voice__heading {
    color: white; }
    .voice__heading .sub::after {
      background-color: white; }
  .voice__box {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    align-items: center;
    background: white;
    padding: 1.8rem 1.6rem;
    margin: 0 0 1rem; }
    .voice__box-item01 {
      width: 12%; }
    .voice__box-item02 {
      width: 85%; }
    .voice__box .prof {
      margin: 0 0 1rem; }
    .voice__box .text {
      text-align: justify;
      font-weight: 600;
      line-height: 1.5em; }
    .voice__box .orange {
      color: #ff5216; }
    .voice__box .blue {
      color: #0b50b8; }
  @media screen and (max-width: 768px) {
    .voice__box {
      display: flex;
      justify-content: space-between;
      flex-flow: wrap;
      align-items: flex-start;
      background: white;
      padding: 1.8rem 1.6rem;
      margin: 0 0 1rem; }
      .voice__box-item01 {
        width: 16%; }
      .voice__box-item02 {
        width: 81%; } }

.faq {
  background: #effeff; }
  .faq .accordion {
    margin: 0 auto;
    max-width: 800px;
    background-color: #ffffff; }
    .faq .accordion .box {
      transform: translateY(-10px);
      opacity: 0;
      margin: 0;
      padding: 2em 2.5rem;
      color: #333333;
      transition: transform .5s, opacity .5s;
      display: flex; }
      .faq .accordion .box .icon-a {
        color: #0b50b8;
        font-size: 1.18rem;
        font-weight: 700;
        padding: 0 1em 0 0; }
      .faq .accordion .box .text {
        text-align: justify;
        line-height: 1.5em; }
    .faq .accordion summary {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      padding: 1em 2em;
      background-color: #0b50b8;
      color: #fff;
      font-weight: 700;
      font-size: 1.18rem;
      cursor: pointer; }
      .faq .accordion summary::-webkit-details-marker {
        display: none; }
      .faq .accordion summary::before, .faq .accordion summary::after {
        width: 3px;
        height: .9em;
        border-radius: 5px;
        background-color: #fff;
        content: ''; }
      .faq .accordion summary::before {
        position: absolute;
        right: 2em;
        rotate: 90deg; }
      .faq .accordion summary::after {
        transition: rotate .3s; }
  .faq .accordion:not([open]) {
    margin-bottom: .8rem; }
  .faq .accordion[open] summary::after {
    rotate: 90deg; }
  .faq .accordion[open] .box {
    transform: none;
    opacity: 1;
    margin: 0 0 2rem; }
  @media screen and (max-width: 768px) {
    .faq .accordion .box {
      padding: 1.5em; }
      .faq .accordion .box .icon-a {
        font-size: 3.3vw;
        padding: 0 .3em 0 0; }
      .faq .accordion .box .text {
        text-align: justify;
        line-height: 1.5em;
        font-size: 3.3vw; }
    .faq .accordion summary {
      padding: 1em;
      font-size: 3.3vw; }
      .faq .accordion summary::before {
        position: absolute;
        right: 1em;
        rotate: 90deg; } }

/*
	Footer
------------------------------------------------------------ */
.footer {
  padding: 2rem 0 10rem;
  background: #0b50b8;
  color: white;
  text-align: center; }
  .footer__button {
    border-radius: 50px;
    border: none;
    padding: 0; }
  .footer a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    margin: 0 auto;
    padding: .9em 2em;
    border: none;
    border-radius: 50px;
    background-color: #ffffff;
    color: #0b50b8;
    font-weight: 600;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .03em; }
    .footer a::after {
      transform: rotate(45deg);
      width: 10px;
      height: 10px;
      margin-left: 10px;
      border-top: 2px solid #0b50b8;
      border-right: 2px solid #0b50b8;
      content: ''; }
    .footer a:hover {
      background-color: #efefef; }
  @media screen and (max-width: 768px) {
    .footer {
      padding: 2rem 0 7rem; }
      .footer a {
        width: 350px;
        padding: .5em 2em .5em 2.7em;
        font-size: 3vw; }
        .footer a::after {
          transform: rotate(45deg);
          width: 6px;
          height: 6px;
          margin-left: 10px;
          border-top: 2px solid #0b50b8;
          border-right: 2px solid #0b50b8;
          content: ''; } }

.footer02 {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 0; }

.copyright {
  background: transparent;
  padding: 2rem 0; }
  .copyright__text {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8em;
    text-align: center; }
  @media screen and (max-width: 768px) {
    .copyright__text {
      font-size: 2.5vw; } }

.contents2 {
  background: #effeff; }

.company {
  padding: 200px 0 0; }
  .company__heading {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto;
    width: 1000px;
    font-size: 2.22rem;
    font-weight: 700;
    margin: 0 0 2rem; }
  .company__list {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 4rem 2rem;
    width: 1000px;
    font-size: 1.2rem;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between; }
    .company__list-01, .company__list-02, .company__list-03, .company__list-04, .company__list-05 {
      width: calc(50% - 15px);
      display: flex;
      flex-flow: wrap;
      justify-content: space-between;
      text-align: left; }
    .company__list-01 {
      width: 100%; }
    .company__list .heading,
    .company__list .text {
      padding-top: 30px; }
    .company__list .heading {
      width: calc(7em + 15px); }
    .company__list .text {
      width: calc(100% - (7em + 15px)); }
    .company__list-01 .heading, .company__list-02 .heading, .company__list-04 .heading, .company__list-06 .heading {
      width: calc(4em + 15px); }
    .company__list-01 .text, .company__list-02 .text, .company__list-04 .text, .company__list-06 .text {
      width: calc(100% - (4em + 15px)); }
  .company__button {
    width: 940px;
    margin: 0 auto;
    padding: 2rem 0 6rem; }
    .company__button a {
      transition: all .2s ease-in-out;
      background: #0b50b8;
      width: 50%;
      height: 80px;
      margin: 0 auto;
      border-radius: 50px;
      line-height: 80px;
      color: white;
      font-size: 1.4rem;
      text-align: center;
      position: relative;
      display: block;
      box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3); }
      .company__button a::before {
        background-image: url("../images/arrow.svg");
        background-position: calc(100% - 30px) 50%;
        background-repeat: no-repeat;
        background-size: auto 1em;
        width: 100%;
        height: 100%;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2; }
      .company__button a:hover {
        opacity: 0.7; }
  .company .sp {
    display: none; }
  @media screen and (max-width: 768px) {
    .company {
      padding: 100px 1rem 0; }
      .company .sp {
        display: block; }
      .company__heading {
        width: auto;
        font-size: 6vw;
        margin: 0; }
      .company__list {
        width: 90vw;
        max-width: 1000px;
        margin: 0 auto;
        padding: 2rem 1rem;
        width: auto;
        font-size: 3.5vw; }
        .company__list .heading {
          width: 8em; }
        .company__list .text {
          width: 16em; }
        .company__list-01, .company__list-02, .company__list-03, .company__list-04, .company__list-05 {
          width: 100%; }
      .company__button {
        padding: 3rem 0 18rem;
        width: 80%; }
        .company__button a {
          width: 80%;
          font-size: 3.5vw;
          height: auto;
          line-height: 50px; } }

/* Floating area */
.floating {
  background: #00b4ff;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  position: fixed;
  z-index: 10000;
  bottom: 0;
  width: 100%;
  padding: .7rem;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.1)); }
  .floating__text {
    width: 14%; }
  .floating__button {
    position: relative;
    width: 33%;
    margin: 0 0 0 2rem; }
  .floating a {
    position: absolute;
    color: #cc2929;
    font-size: 3.6vw;
    font-weight: 700;
    right: 1.5vw;
    bottom: 1.5vw; }
  @media screen and (max-width: 768px) {
    .floating {
      filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.1)); } }
  @media screen and (max-width: 768px) {
    .floating {
      align-items: center; }
      .floating__text {
        width: 30%; }
      .floating__button {
        width: 69%;
        margin: 0 auto; }
      .floating a {
        font-size: 7vw;
        right: 0;
        left: 3.7rem;
        bottom: .7rem; } }

.alert {
  background-color: white;
  background-image: url("../images/alert.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .alert {
      background-image: url("../images/alert@2x.jpg"); } }
  .alert .sp {
    display: none; }
  .alert__inner {
    padding: 0 0 2rem; }
    .alert__inner .text {
      font-size: 1.2rem;
      font-weight: 600;
      line-height: 1.5em;
      margin: 0 0 2rem; }
    .alert__inner .heading {
      font-size: 1.6rem;
      color: #db0f2f;
      font-weight: 700; }
    .alert__inner .number {
      font-size: 1.3rem;
      background: #db0f2f;
      color: white;
      margin-right: .7em;
      padding: .2em .5em;
      border-radius: 50px; }
    .alert__inner .explanation {
      font-size: 1.2rem;
      font-weight: 600;
      line-height: 1.5em;
      margin: 1.5rem 0; }
  @media screen and (max-width: 768px) {
    .alert .sp {
      display: block; }
    .alert__inner {
      padding: 0; }
      .alert__inner .text {
        font-size: 4vw;
        line-height: 1.7em; }
      .alert__inner .heading {
        line-height: 2em;
        font-size: 5vw; }
      .alert__inner .number {
        font-size: 3.5vw;
        line-height: 1.5em; }
      .alert__inner .explanation {
        font-size: 4vw;
        font-weight: 600;
        margin: 1.5rem 0 2rem; } }

.s_05 .accordion_one .accordion_header {
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s; }

.s_05 .accordion_one .accordion_header:hover {
  opacity: .8; }

.s_05 .accordion_one .accordion_inner {
  display: none;
  padding: 2rem;
  background: white; }

.s_05 .accordion_one .accordion_inner .closeArea .close_box a.close_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #db0f2f;
  padding: 15px 15px 15px 20px;
  text-decoration: none;
  line-height: 1.3;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  transition-duration: 0.2s; }

.s_05 .accordion_one .accordion_inner .closeArea .close_box a.close_btn:hover {
  opacity: .8; }

.s_05 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 10%;
  width: 30px;
  height: 30px;
  margin-top: -15px; }

.s_05 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 18px;
  height: 18px; }

.s_05 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i:before, .s_05 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i:after {
  content: '';
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(45deg);
  transform-origin: center center; }

.s_05 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px; }

@media screen and (max-width: 768px) {
  .s_05 .accordion_one .accordion_header {
    padding: 0; } }
