/*
  # Global
---------------------------------------------- */
/**
 * Default box-sizing
 */
*,
::before,
::after {
  box-sizing: inherit;
}

/**
 * Resetting margins, paddings, and borders
 */
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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

/**
 * Resetting HTML5 Elements for older browsers
 */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/*
  # Document & Sections
---------------------------------------------- */
html {
  overflow-y: scroll;
  box-sizing: border-box;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  -webkit-overflow-scrolling: touch;
  min-height: 100%;
  text-rendering: optimizeLegibility;
  font: 1em/1.5 sans-serif;
}

/*
  # Grouping content
---------------------------------------------- */
blockquote,
q {
  quotes: none;
}

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

hr {
  overflow: visible;
}

ol,
ul {
  list-style: none;
}

pre {
  font-size: 1em;
  font-family: monospace, monospace;
}

/*
  # Text-level semantics
---------------------------------------------- */
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
  outline-width: 0;
}

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

b,
strong {
  font-weight: bolder;
}

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

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 1em;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

/*
  # Embedded content
---------------------------------------------- */
audio,
canvas,
progress,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img,
video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg:not([fill]) {
  fill: currentColor;
}

svg:not(:root) {
  overflow: hidden;
}

/*
  # Tabular data
---------------------------------------------- */
table {
  border-spacing: 0;
  border-collapse: collapse;
}

/*
  # Forms
---------------------------------------------- */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
}

button,
select {
  text-transform: none;
}

button,
input {
  overflow: visible;
}

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

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

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

optgroup {
  font-weight: bold;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type='checkbox'],
[type='radio'] {
  padding: 0;
}

[type='search'] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

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

/*
  # Interactive & Misc
---------------------------------------------- */
summary {
  display: list-item;
}

template,
[hidden] {
  display: none;
}

/*
  # Accessibility
---------------------------------------------- */
[disabled],
[aria-disabled='true'] {
  cursor: not-allowed;
}

[aria-busy='true'] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-hidden='false'][hidden] {
  display: initial;
}

[aria-hidden='false'][hidden]:not(:focus) {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

:focus:not(:focus-visible),
::before:focus:not(:focus-visible),
::after:focus:not(:focus-visible) {
  outline: none;
}

/**
 * Prettier ignore
 */
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
            animation: none !important;
    scroll-behavior: auto !important;
  }
}

body{
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
  line-height: 1.4;
}

img{
  width: 100%;
}

/*
  Layout
---------------------------------------------- */
body{
  background-repeat: repeat;
  letter-spacing: 0.02em;
  text-indent: 0.02em;
}

.p-content__bg{
  background-image: url(img/pc-bg.jpg);
}

.l-content__wrap{
  max-width: 800px;
  margin: 0 auto;
  background-color: #F1F5F9;
}

.l-container{
  width: 88%;
  margin: 0 auto;
}

.l-section{
  margin-top: 40px;
}

.l-section.-mtLarge{
  margin-top: 60px;
}

.l-spacer{
  margin-top: 20px;
}

.l-spacer.-large{
  margin-top: 40px;
}

.l-spacer.-xlarge{
  margin-top: 60px;
}

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

.l-img__wrap img{
  width: unset;
}

@media screen and (min-width:768px){
  .p-content__bg{
    padding: 0 50px;
  }

  .l-content__wrap{
    filter: drop-shadow(0 0 40px rgba(0,0,0,0.25));
  }

  .l-spacer{
    margin-top: 40px;
  }

  .l-spacer.-large{
    margin-top: 80px;
  }

  .l-spacer.-xlarge{
    margin-top: 120px;
  }

  .l-section{
    margin-top: 80px;
  }

  .l-section.-mtLarge{
    margin-top: 120px;
  }
}

.p-text{
  line-height: 1.8;
  margin-bottom: 1.8em;
}

.p-text.-mb0{
  margin-bottom: 0;
}

.p-text.-mb2{
  margin-bottom: 3.6em;
}

.p-text.-white{
  color: #fff;
}

@media screen and (min-width:768px){
  .p-text{
    font-size: 1.5rem;
  }
}

.p-btn__section{
  background-color: #E3FF35;
  padding: 20px 24px 40px;
}

.p-btn{
  display: block;
  width: 78%;
  max-width: 640px;
  margin: 10px auto 0;
  transition: ease-in .3s;
}

.p-btn:hover{
  opacity: .7;
}


.p-btn__text{
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width:768px){
  .p-btn__section{
    background-color: #E3FF35;
    padding: 40px 48px 80px;
  }

  .p-btn__text{
    font-size: 32px;
  }

  .p-btn{
    width: 80%;
    width: 640px;
    margin: 20px auto 0;
  }
}

.p-sec01__text{
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
}

.p-sec01__title{
  margin-top: 33px;
}

@media screen and (min-width:768px){
  .p-sec01__text{
    font-size: 2.25rem;
    margin-top: 32px;
  }

  .p-sec01__title{
    margin-top: 66px;
  }
}

.p-sec02__list{
  background-image: url(img/sec02-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10px 6% 40px;
}

.p-sec02__list li:nth-of-type(n+2){
  margin-top: 10px;
}

@media screen and (min-width:768px){
  .p-sec02__list{
    padding: 10px 6% 80px;
  }

  .p-sec02__list li:nth-of-type(n+2){
    margin-top: 20px;
  }
}

.p-sec05__title{
  text-align: center;
  font-size: 8.25vw;
}

.p-sec05__title span{
  display: inline-block;
  margin-bottom: 20px;
}

.p-sec05__content-title{
  color: #E43017;
  font-size: 7vw;
}


@media screen and (min-width:400px){
  .p-sec05__title{
    font-size: 2.0625rem;
  }

  .p-sec05__content-title{
    font-size: 1.75rem;
  }
}

@media screen and (min-width:768px){
  .p-sec05__title{
    font-size: 4.125rem;
  }
  .p-sec05__content-title{
    font-size: 2.5rem;
  }
}

.p-sec07__title{
  color: #E43017;
  font-size: 7vw;
}

.p-sec07__title span{
  display: block;
  font-size: 14.5vw;
}

@media screen and (min-width:400px){
  .p-sec07__title{
    font-size: 1.75rem;
  }

  .p-sec07__title span{
    font-size: 3.625rem;
  }
}

@media screen and (min-width:768px){
  .p-sec07__title{
    font-size: 6.1vw;
  }

  .p-sec07__title span{
    font-size: 12.7vw;
  }
}

@media screen and (min-width:910px){
  .p-sec07__title{
    font-size: 3.5rem;
  }

  .p-sec07__title span{
    font-size: 7.25rem;
  }
}

.p-sec09{
  background-color: #B14233;
}

.p-sec09__bg{
  padding: 20px 0 40px;
}

.p-sec09__content{
  margin-top: 40px;
  position: relative;
  background-color: #fff;
  padding: 40px 6%;
}

.p-sec09__content::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 33px 20px 33px;
  border-color: transparent transparent #ffffff transparent;
}


@media screen and (min-width:768px){
  .p-sec09__bg{
    padding: 40px 0 80px;
  }

  .p-sec09__content{
    padding: 80px 40px;
  }
}

.p-sec12{
  margin-top: 40px;
}

.p-sec12__bg{
  background-size: cover; /*--背景画像のサイズ--*/
  background-repeat: no-repeat; /*--背景画像の繰り返し--*/
  background-position: center center; /*--背景画像の位置--*/
  padding: 40px 0;
  background-image: url(img/12-bg@2x.png);
}

.p-sec13{
  padding: 40px 0 40px;
  background-color: #E7E9D4;
}

@media screen and (min-width:768px){
  .p-sec12__bg{
    position: relative;
    min-height: 100%;
    background-size: cover; /*--背景画像のサイズ--*/
    background-attachment: fixed; /*--背景画像の固定--*/
    background-repeat: no-repeat; /*--背景画像の繰り返し--*/
    background-position: center center; /*--背景画像の位置--*/
    z-index: 2;
    padding: 80px 0;
    background-image: url(img/12-bg@4x.png);
  }

}

/*=========
accordion
=========*/

.accordion_area {}
.accordion_area .accordion_one .ac_header {

  cursor: pointer;
  transition: .2s;
}


.accordion_area .accordion_one .ac_inner {
  display: none;
}

/*=========
faq
=========*/

.p-faq__headinner,.p-faq__bodyinner {
  position: relative;
  display: block;
  padding:20px 30px 20px 40px;
  font-size: 1.125rem;
  font-weight: 500;
}

.p-faq__bodyinner{
  padding-top: 0;
}

.p-faq__bodyinner .p-text{
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
}

.p-faq__headinner::before,.p-faq__bodyinner::before {
  position: absolute;
  left: 0;
  top: 20px;
  content: "";
  width: 30px;
  height: 45px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.p-faq__headinner::before{
  background-image: url(img/Q.svg);
}

.p-faq__bodyinner::before{
  top: 0;
  background-image: url(img/A.svg);
}

.p-faq__headinner::after{
  position: absolute;
  right: 0;
  top: 20px;
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(img/plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}


.ac_header.open .p-faq__headinner::after{
  background-image: url(img/minus.svg);
}


.p-faq__headinner p.p-faq__q-txt {
  font-size: 1.125rem;
}

.p-sec14__bg{
  background-position: center center; /*--背景画像の位置--*/
  background-repeat: repeat-y;
  padding: 40px 0;
  background-image: url(img/sec14-bg@2x.jpg);
}

.p-sec14__title{
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

@media screen and (min-width:768px){
  .p-sec14__bg{
    position: relative;
    min-height: 100%;
    background-size: cover; /*--背景画像のサイズ--*/
    background-attachment: fixed; /*--背景画像の固定--*/
    background-repeat: no-repeat; /*--背景画像の繰り返し--*/
    background-position: center center; /*--背景画像の位置--*/
    z-index: 2;
    padding: 80px 0;
    background-image: url(img/sec14-bg@4x.jpg);
  }
}

/* Footer */
.p-footer{
  background-color: #000000;
  padding: 31px 20px;
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.8;
}



@media screen and (min-width:768px){
  .p-footer{
    margin: 0 auto;
    max-width: 800px;
    padding: 80px 0;
    font-size: 1.5rem;
  }
}

.p-modal__open{
  cursor: pointer;
}

.p-modal__open02{
  cursor: pointer;
}

/* Modal */

.p-modal__container,.p-modal__container02{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(62,76,92,80%);
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
  box-sizing: border-box;
  z-index:10;
}

.p-modal__container:before,.p-modal__container02:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}

.p-modal__container.is-active,.p-modal__container02.is-active{
	opacity: 1;
	visibility: visible;
}

.p-modal__body,.p-modal__body02{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 98%;
  border: solid 19px #3E4C5C;
  z-index:100;
}

.p-modal__close,.p-modal__close02{
	position: absolute;
	display: flex;
    align-items: center;
    justify-content: center;
	top: 18px;
	right: 18px;
	width: 10px;
	height: 10px;
	font-size: 20px;
  font-weight: bold;
	color: #3E4C5C;
	cursor: pointer;
}

.p-modal__content{
	background: #fff;
	text-align: left;
	padding: 20px;
}

.p-modal__title{
  font-size: 18px;
  letter-spacing: .05em;
  margin-top: 20px;
  color: #3E4C5C;
}

.p-modal__text,.p-modal__list{
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .05em;
  color: #3E4C5C;
}

.p-modal__text{
  margin-top: 14px;
}

.p-modal__list dt{
  margin-top: 24px;
}

.p-modal__list.-law dt:first-of-type{
  margin-top: 16px;
}

@media screen and (min-width:768px){
  .p-modal__content{
    padding: 40px;
  }

  .p-modal__title{
    font-size: 20px;
  }

  .p-modal__text,.p-modal__list{
    font-size: 18px;
  }
  .p-modal__list dt{
    margin-top: 48px;
  }

  .p-modal__list.-law{
    display: flex;
    flex-wrap: wrap;
  }
  .p-modal__list.-law dt{
    width: 25%;
    padding-right: 5%;
  }
  .p-modal__list.-law dd{
    width: 70%;
    margin-top: 48px;
  }
  .p-modal__list.-law dd:first-of-type{
    margin-top: 16px;
  }

  .p-modal__close,.p-modal__close02{
    width: 20px;
    height: 20px;
    font-size: 40px;
  }
}


.u-color__blue{
  color: #4690FF;
}

.u-color__red{
  color: #E24A35;
}

.u-color__yellow{
  color: #E3FF35;
}

.u-fwb{
  font-weight: bold;
}

.u-tdu{
  text-decoration: underline;
}

.u-fzl{
  font-size: 1.25em;
}

.u-show__pc{
  display: none;
}

@media screen and (min-width:768px){
  .u-show__pc{
    display: block;
  }
}
