/*
  # 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;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
}

/*
  # 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;
  }
}

picture{
  width: 100%;
}

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

p,h2,h3,h4,h5,h6{
  letter-spacing: .02em;
  margin-left: .02em;
}


/*
  # Layout
---------------------------------------------- */
.l-container{
  width: 88%;
  margin: 0 6%;
}

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

.l-spacer.-xs{
  margin-top: 10px;
}

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

.l-spacer.-onlyPc{
  margin-top: 0;
}

.l-spacer.-xs.-onlyPc{
  margin-top: 0;
}

.l-section{
  padding: 40px 0;
}

.l-section.-pb0{
  padding-bottom: 0;
}

.l-section.-bgWhite{
  background-color: #fff;
}

.l-section.-border{
  padding: 40px 6%;
}

.l-section__title{
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: .02em;
  margin-left: .02em;
}

.l-section__title img{
  display: block;
  margin: 0 auto 10px;
}

.l-section__title.-bg{
  position: relative;
  padding-bottom: 21px;
}

.l-section__title.-bg:after{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 207px;
  height: 12px;
  background-image: url(img/title_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.l-section__title-small{
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.4;
  font-family: 'Noto Serif JP', serif;
  font-weight: bold;
  letter-spacing: .02em;
  margin-left: .02em;
  margin-bottom: 10px;
}

.l-section__title.-white{
  color: #fff;
}

.l-section__title.-navy{
  color: #0F2371;
}


@media screen and (min-width:768px){
  .l-spacer{
    margin-top: 40px;
  }

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

  .l-spacer.-pc_xs{
    margin-top: 10px;
  }

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

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

  .l-spacer.-xs.-pc__midium,.l-spacer.-xl.-pc__midium{
    margin-top: 40px;
  }

  .l-section.-bgWhite{
    width: 84%;
    max-width: 880px;
    margin: 80px auto;
    filter: drop-shadow(0 0 30px rgba(191,218,221,.4));
  }

  .l-section.-bgWhite.-filter_none{
    filter: none;
  }

  .l-section.-border,.l-section.-border_pc{
    padding: 20px;
  }

  .l-container{
    width: 82%;
    margin: 0 9%;
  }

  .l-container.-large{
    max-width: 1280px;
    margin: 0 auto;
  }

  .l-container.-sp{
      width: 100%;
      margin: 0;
  }

  .l-section{
    padding: 80px 0;
  }

  .l-section__title{
    font-size: 2.25rem;
  }

  .l-section__title-small{
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

}

/*
  # Project
---------------------------------------------- */
/* Fade in */
.p-fadeIn {
  opacity: 0;
  visibility: hidden;
  transition: transform 1s, opacity 1s, visibility 1s;
}

.p-fadeIn.-up{
  transform: translateY(50px);
}

.p-fadeIn.js-fadeIn {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Border */
.p-section__border{
  border: 1px solid #06D3EF;
  border-image: linear-gradient(to bottom left, #06D3EF 0%, #0025B2 100%);
  border-image-slice: 1;
  padding: 24px;
}

@media screen and (min-width:768px){
  .p-section__border,.p-section__border_pc{
    border: 3px solid #06D3EF;
    border-image: linear-gradient(to bottom left, #06D3EF 0%, #0025B2 100%);
    border-image-slice: 1;
    padding: 60px;
  }
}

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

.p-text__large{
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-text__large.-navy{
  color: #0F2371;
}

.p-text__large.-mb{
  margin-bottom: 1.8em;
}

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

/* Title */
.p-title__small{
  font-size: 1.25rem;
  font-weight: 500;
}

.p-title__midium{
  font-size: 1.375rem;
  font-weight: bold;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
}

.p-title__midium.-bg{
  position: relative;
  padding-bottom: 21px;
}

.p-title__midium.-bg:after{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 207px;
  height: 12px;
  background-image: url(img/sec08-img01.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width:768px){

  .p-text.-pc__l{
    font-size: 1.125rem;
  }
  .p-title__small{
    font-size: 1.5rem;
  }

  .p-title__midium{
    font-size: 1.75rem;
  }
}


/* Header */

.p-youtube{
  padding: 24px;
  background-color: #D8F0F3;
}

.p-youtube__wrap{
  width: 100%;
  max-width: 960px;
  margin: 20px auto 0;
  background-color: #fff;
  padding: 16px 0 10px;
}

.p-youtube__inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.p-youtube__inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.p-youtube__list{
  display: flex;
  justify-content: space-between;
}

.p-youtube__list li{
  width: 31.25%;
}

.p-youtube__item{
  display: block;
  background: linear-gradient(to bottom left, #06D3EF 0%, #0025B2 100%);
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.p-youtube__item img{
  width: 100%;
  max-width: 100px;
  display: block;
  margin: 0 auto;
}

.p-youtube__title{
  text-align: center;
  width: 33.5%;
  margin: 0 auto;
}

.p-youtube__text{
  font-weight: bold;
  font-size: 1.125rem;
  margin: 14px 0 20px;
  padding: 0 20px;
}

.p-youtube__title img{
  width: 100%;
  display: block;
}

.p-item-opacity{
  opacity: .3;
}

.p-item-opacity-active{
  transition: all .3s;
}

.p-item-opacity06{
  opacity: .6;
  transition: all .3s;
}

.p-item-opacity-active:hover:hover{
  opacity: .7;
}

.p-item-opacity06:hover{
  opacity: .4;
}

.p-band__wrap{
  padding: 20px;
 	background: linear-gradient(to bottom left, #06D3EF 0%, #0025B2 100%);
}

.p-band__text{
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 1.25rem;
}


.p-header_title img{
  width: 100%;
}

.p-header__buttonWrap{
  background-color: #fff;
  padding: 40px 0;
}

.p-bgUnion{
  background-image: url(img/Union-sp@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding: 20px 6% 45px;
  color: #fff;
}

.p-bgUnion__text01{
  font-size: 1.125rem;
}

.p-bgUnion__text02{
  font-size: 1.375rem;
}

  .p-header__buttonWrap-text{
    font-size: 5.6vw;
  }

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


@media screen and (min-width:768px){
  .p-youtube__wrap{
    margin-top: 40px;
    padding: 40px 80px;
  }
  .p-youtube{
    padding: 80px;
  }

  .p-youtube__list{
    padding: 0 60px;
  }

  .p-youtube__item img{
    max-width: 130px;
  }

  .p-youtube__title{
    width: 220px;
  }
  .p-youtube__text{
    font-size: 1.75rem;
  }

  .p-band__text{
    font-size: 2rem;
  }
  .p-header__bg{
    background-image: url(img/header-img-pc-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .p-header__bg-inner{
    max-width: 1440px;
    margin: 0 auto;
  }

  .p-header__buttonWrap-text{
    font-size: 1.75rem;
  }
  .p-bgUnion{
    background-image: url(img/Union.png);
    padding: 40px 6% 45px;
    color: #fff;
  }

  .p-bgUnion__text01{
    font-size: 1.75rem;
  }

  .p-bgUnion__text02{
    font-size: 2.25rem;
  }
}

/* Button */

.p-button__wrap{
  display:inline-block;
  position:relative;
  overflow:hidden;
  vertical-align: bottom;
  width: 100%;
  background-color: #8DCF38;
  background: linear-gradient(170deg, #8DCF38, #2CB529);
  padding: 8px 0;
  border-radius: 100vh;
  filter: drop-shadow(0px 4px 4px rgba(0,0,0,0.25));
}

.p-btn02__wrap{
  display: flex;
  justify-content: center;
}

.p-button__wrap.-btn02{
  width: 90.9090%;
  margin: 0 auto;
}

.p-button__wrap:before{
  position: absolute;
  content: "";
  width: 10px;
  height: 15px;
  background-image: url(img/button_arrow.png);
  top: 50%;
  right: 5.6%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}

.p-button__wrap:after{
  content:"";
  height:100%;
  width:30px;
  position:absolute;
  top:-180px;
  left:0;
  background-color: #fff;
  opacity:0;
  -webkit-transform: rotate(45deg);
  -webkit-animation: p-button__wrap 2.7s ease-in-out infinite;
}

.p-button__wrap img{
  display: block;
  width: 53.4%;
  margin: 0 auto;
}

.p-button__wrap.-btn02 img{
  width: 64.375%;
}

.p-button__wrap.-form{
  margin-top: 40px;
}

.p-button__wrap.-info02 a{
  display: block;
  font-size: 1.25rem;
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding: 16px 0;
  letter-spacing: .04em;
  margin-left: -0.4em;
}

.p-button__wrap input{
  background: none;
  border: none;
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 1.375rem;
  color: #fff;
  padding: 20px 0;
  letter-spacing: .04em;
  margin-left: -0.4em;
}

@keyframes p-button__wrap {
0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.p-button{
  width: 100%;
  vertical-align: bottom;
}

@media screen and (min-width:768px){
  .p-header__buttonWrap{
    padding: 80px 0;
  }
  .p-button__wrap{
    display: block;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    transition: all .3s;
    padding: 20px 0;
  }

  .p-button__wrap:before{
    width: 18px;
    height: 27px;
  }

  .p-button{
    width: 100%;
    max-width: 704px;
    box-sizing: content-box;
  }

  .p-button__wrap:hover,.p-button02:hover{
    opacity: .7;
    filter: none;
    transform: translate3d(0, 5px, 0);
  }

  .p-button__wrap.-info02 a{
    padding: 32px 0;
    font-size: 2rem;
  }

  .p-button__wrap input{
    font-size: 2.375rem;
    padding: 40px 0;
  }
}

/* Sec01 */
.p-sec01__img{
  text-align: center;
}
.p-sec01__img img{
  width: 100%;
  max-width: 600px;
}

/* Sec02 */
.p-sec02{
  padding-top: 50px;
}
.p-sec02__img img{
  width: 100%;
}
@media screen and (min-width:768px){

  .p-sec02{
    padding: 80px 8% 0;
  }

  .p-sec02__img{
    max-width: 1280px;
    margin: 0 auto;
  }
}

/* reserve */

.p-reserve{
  background: linear-gradient(to bottom left, #06D3EF 0%, #0025B2 100%);
  padding: 3vw;
}

.p-reserve__content{
  background-color: #fff;
  padding: 2.5vw 2vw;
  margin: 0 auto;
}

.p-reserve__inner{
  border: 1px solid #06D3EF;
  border-image: linear-gradient(to bottom left, #06D3EF 0%, #0025B2 100%);
  border-image-slice: 1;
  padding: 5vw;
}

.p-reserve__title-sp{
  text-align: center;
  margin-bottom: 5vw;
}

.p-reserve__title-sp img{
  width: 100%;
}

.p-reserve__titleText{
  font-size: 4.7vw;
}

.p-reserve__title{
  font-size: 5.5vw;
}

.p-reserve__text{
  font-size: 4vw;
}

.p-reserve__flex{
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-reserve__img{
  width: 38.88%;
  text-align: center;
}

.p-reserve__textWrap{
  text-align: center;
  width: 60%;
}

.p-reserve__textWrap img{
  margin-top: 14px;
}

.p-reserve__buttonWrap{
  display: flex;
  justify-content: center;
}

.p-reserve .p-button__wrap{
  width: 500px;
  margin: 0 auto;
}
@media screen and (min-width:400px){
  .p-reserve__titleText{
    font-size: 1.2rem;
  }

  .p-reserve__title{
    font-size: 1.375rem;
  }

  .p-reserve__text{
    font-size: 1rem;
  }
}



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

  .p-reserve__inner{
    border: none;
  }

  .p-reserve__content{
    position: relative;
    padding: 20px;
    max-width: 1280px;
    margin: 0 auto;
  }

  .p-reserve__content::after{
    position: absolute;
    content: "";
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 6px solid #06D3EF;
    border-image: linear-gradient(to bottom left, #06D3EF 0%, #0025B2 100%);
    border-image-slice: 1;
    padding: 20px 10px;
    z-index: 0;
  }

  .p-reserve__img{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
  }

  .p-reserve__flex{
    justify-content: flex-end;
    position: relative;
    z-index: 1;
  }

  .p-reserve__textWrap{
    width: 68%;
    margin: 20px 10px 0 0 ;
  }

  .p-reserve__titleText{
    font-size: 1.4rem;
  }

  .p-reserve__title{
    font-size: 1.65rem;
    margin-top: 10px;
  }

  .p-reserve__listImg{
    width: 80%;
    margin: 10px auto 0;
  }

  .p-reserve__textWrap img{
    margin-top: 0;
  }

  .p-reserve__text.-mt{
    margin-top: 20px;
  }
  .p-reserve__text.-mt_s{
    margin-top: 10px;
  }
  .p-reserve__buttonWrap{
    margin-top: 20px;
  }
  .p-reserve .p-button__wrap{
    width: 100%;
  }

  .p-reserve .p-button__wrap img{
    width: 60%;
  }

  .p-reserve__img{
    max-height: 100%;
    overflow: hidden;
  }
}

@media screen and (min-width:1024px){
  .p-reserve-mt{
    margin-top: 2.6vw;
  }
  .p-reserve-mt-s{
    margin-top: 1.3vw;
  }
  .p-reserve__content{
    padding: 0;
  }
  .p-reserve__content::after{
    display: none;
  }
  .p-reserve__inner{
    position: absolute;
    border: 6px solid #06D3EF;
    border-image: linear-gradient(to bottom left, #06D3EF 0%, #0025B2 100%);
    border-image-slice: 1;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    padding: 0;
  }

  .p-reserve__flex{
    height: 100%;
    position: static;
    align-items: center;
  }

  .p-reserve__titleText{
    font-size: 1.866vw;
  }

  .p-reserve__title{
    font-size: 2.4vw;
  }
  .p-reserve__textWrap{
    margin-top: 0;
    width: 62%;
    padding: 60px 10px 60px 0;
  }

  .p-reserve__listImg{
    width: 61.6%;
  }
  .p-reserve__text{
    font-size: 1.2vw;
  }
  .p-reserve__img{
    position: static;
    width: 37.5%;
  }


  .p-reserve__buttonWrap{
    margin-top: 2.6vw;
  }

  .p-reserve .p-button__wrap{
    margin-top: 0;
    width: 92%;
    padding: 20px 0;
  }

  .p-reserve .p-button__wrap img{
    width: 52.7%;
  }
}

@media screen and (min-width:1500px){
  .p-reserve-mt{
    margin-top: 40px;
  }
  .p-reserve__titleText{
    font-size: 1.75rem;
  }

  .p-reserve__title{
    font-size: 2.1rem;
  }
  .p-reserve__textWrap{
    padding: 60px 50px 60px 0;
  }
  .p-reserve__buttonWrap{
    margin-top: 40px;
  }

  .p-reserve__text{
    font-size: 1.125rem;
  }
}

/* Sec03 */
.p-sec03__img img{
  width: 100%;
}
@media screen and (min-width:768px){
  .p-sec03__img.-small img{
    margin: 0 auto;
    display: block;
    max-width: 640px;
  }
}
/* Voice */
.p-koe__item{
  position: relative;
  padding: 36px 24px;
  border: solid 3px #E4DBBA;
  margin-top: 40px;
}

.p-koe__title{
  position: absolute;
  background-color: #E4DBBA;
  padding: 0 20px;
  top: 0;
  left: 50%;
  transform: translate(-50%,-50%);
}

.p-koe__flex{
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}



.p-koe__flex-title{
  font-size: 1.25rem;
  line-height: 1.4;
}

.p-koe_text-flex{
  display: flex;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.p-koe_text-flex p:first-of-type{
  margin-right: 1rem;
}

.p-koe__flex-text{
  font-size: .75rem;
}

.p-koe__flex-img{
  margin: 10px auto 0;
  width: 50%;
  min-width: 150px;
}

.p-koe__flex-img img{
  width: 100%;
}

.p-koe__fz-s{
  font-size: 1.125rem;
}

.p-koe__fz-l,.p-koe_fz-l-sp{
  font-size: 1.375rem;
}

.p-koe__fz-xl{
  font-size: 1.5rem;
}

.p-koe__fz-xl.-sp-l{
  font-size: 1.375rem;
}

.p-koe__fz-xxl{
  font-size: 1.75rem;
  line-height: 1.2;
}

@media screen and (min-width:768px){
  .p-koe__item{
    padding: 40px;
    margin-top: 54px;
  }

  .p-koe__flex{
    text-align: left;
    flex-direction: row;
  }
  .p-koe__flex-left{
  width: 55.5%;
  }

  .p-koe__flex-img{
    margin-top: 0;
    width: 43.75%;
  }

  .p-koe_text-flex{
    display: block;
    margin-top: 20px;
  }

  .p-koe_text-flex p:first-of-type{
    margin-right: 0;
  }

  .p-koe__flex-text{
    font-size: .875rem;
  }

  .p-koe__flex-title,.p-koe_fz-l-sp{
    font-size: 1.75rem;
  }

  .p-koe__fz-s{
    font-size: 1.5rem;
  }

  .p-koe__fz-l{
    font-size: 2rem;
  }

  .p-koe__fz-xl.-sp-l,.p-koe__fz-xl{
    font-size: 2.125rem;
  }

  .p-koe__fz-xxl{
    font-size: 2.25rem;
  }
}


@media screen and (min-width:768px){
  .p-sec03_buttonWrap{
    padding: 80px 0;
  }
  .p-sec03_bgWrap{
    background-image: url(img/sec03_bg-pc.jpg);
    background-position: center center;
    padding: 44px 0 344px;
  }

  .p-sec03_title{
    width: 84%;
    max-width: 880px;
    margin: auto;
  }

  .p-sec03_title img{
    padding:0 16.6% 0 13.6%;
    width: 100%;
  }
}



/* Sec05 */
.p-sec05.l-section.-bgWhite{
  padding-top: 64px;
}

.p-sec05__list{
  margin: 10px 0 20px;
  letter-spacing: .02em;
  margin-left: 0.02em;
}

.p-sec05__list-item{
  position: relative;
  margin-top: 20px;
  font-weight: 500;
  font-size: 1.125rem;
  padding-left: 39px;
}

.p-sec05__list-item:before{
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  background-image: url(img/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.p-sec05__text{
  font-size: 1.25rem;
  line-height: 1.8;
  margin-top: 40px;
}

@media screen and (min-width:768px){
  .p-sec05.l-section.-bgWhite{
    padding: 40px 0;
  }
  .p-sec05__list-item{
    font-size: 1.25rem;
  }

  .p-sec05__list-item:before{
    top: 50%;
    transform: translateY(-50%);
  }

  .p-sec05__text{
    font-size: 1.75rem;
  }
}


/* Sec06 */
.p-sec06{
  padding-top: 20px;
}
.p-recommend__item img{
  width: 100%;
}

.p-koe__item{
  width: 100%;
}
.p-koe__list.moreList{
  display: none;
}

.p-viewMore__wrap{
  display: flex;
  justify-content: center;
}

.viewMore{
  position: relative;
  width: 82.3%;
  max-width: 290px;
  margin: 40px auto 0;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  color: #0F2371;
  background-color: #E4DBBA;
  padding: 1rem 0;
  border: none;
  border-radius: 100vh;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transition: all .3s;
}

.viewMore::after{
  content: "";
  position: absolute;
  top: 51%;
  right: 1.5rem;
  width: 16px;
  height: 10px;
  transform: translateY(-50%);
  background-image: url(img/arrow_bottom.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.viewMore:hover{
  opacity: .7;
}

.viewMore.u-show__none{
  display: none;
}

@media screen and (min-width:768px){
.p-sec06{
    width: 84%;
    max-width: 880px;
    margin: 80px auto;
    padding: 80px 0;
  }
}

/* Sec07 */
.p-spacer_sec07{
  height: 40px;
  background-color: #fff;
}
.p-sec07_bgWrap{
  background-image: url(img/sec07_bg-sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5vw 6vw 5vw 29.5vw;
}

.p-sec07_bgWrap img{
  width: 100%;
}

.p-bubble__list li:first-of-type{
  margin-top: 0;
}

.p-bubble__item{
  position: relative;
  background-color: #E9F0F1;
  padding: 20px 35px;
  border-radius: 90px;
  width: 96%;
  margin: 20px auto 0;
  font-size: 1.125rem;
}

.p-bubble__item::before{
  position: absolute;
  bottom: 8px;
  left: -11px;
  width: 36px;
  height: 38px;
  content: url(img/sec07-img02.svg);
}
.p-bubble__item.-right::before{
  left: unset;
  right: -11px;
  content: url(img/sec07-img03.svg);
}

.sec07-subtitle{
  font-size: 1.25rem;
}

@media screen and (min-width:768px){
  .p-spacer_sec07{
    display: none;
  }
  .p-sec07_bgWrap{
    position: relative;
    background-image: url(img/sec07-bg-bg.jpg);
    background-position: center center;
    padding: 124px 0 78px;
    overflow: hidden;
  }

  .p-sec07_bgWrap::before{
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 0;
    content: "";
    width: 100%;
    height: 100%;
    max-width: 1440px;
    background-image: url(img/sec07-bg.jpg);
    background-position:center center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 0.75rem rgba(0,0,0,0.15));;
  }

  .p-sec07_title{
    position: relative;
    z-index: 1;
    width: 84%;
    max-width: 880px;
    margin: auto;
  }

  .p-sec07_title img{
    padding:0 9.09%  0 23.409%;
    width: 100%;
  }
  .p-bubble__item{
    padding: 20px 30px;
    display: inline-block;
    width: auto;
  }
  .p-bubble__flex{
    display: flex;
    justify-content: flex-end;
  }
  .p-bubble__item.-right{
    margin-right: 0;
  }

  .sec07-subtitle{
    font-size: 1.75rem;
    text-align: left;
  }
  .p-bubble__item::before{
    bottom: 0;
  }
}

/* sec08 */
.p-sec08__contents{
  margin-top: 40px;
}

.l-section__title-small.-sec08{
  color: #0F2371;
  background-image: url(img/sec08-title-bg.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 10px 0;
  margin-bottom: 20px;
}

.p-sec08__text{
  font-weight: 600;
}

.p-sec08__img img{
  width: 100%;
}

.p-sec08__innerWrap{
  background-color: #fff;
  margin-top: 40px;
  padding: 24px;
}

.p-sec08__list{
  margin: 10px 0 20px;
}

.p-sec08__list-item{
  position: relative;
  margin-top: 20px;
  font-weight: 500;
  font-size: 1.125rem;
  padding-left: 39px;
}

.p-sec08__list-item:before{
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  background-image: url(img/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.p-sec08__titleWrap{
  padding: 20px 24px;
  background: linear-gradient(to bottom left, #2B51E2 0%, #0025B2 100%);
}

.p-sec08__titleWrap .l-section__title{
  color: #fff;
}

.p-sec08__contents-title{
  text-align: center;
}

.p-sec08__contents-img img{
  width: 100%;
}

.p-reasonList-container{
  width: 91%;
  margin: 0 auto;
}

.p-reasonList-item{
  background-color: #fff;
  padding: 40px 0 0;
}

.p-reasonList li:last-of-type{
    padding: 40px 0;
}

.p-reasonList-title{
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
}
.p-reasonList-title img{
  font-weight: bold;
  display: block;
  margin: 0 auto 10px;
  width: 100px;
}

.p-reasonList-img img{
  width: 100%;
}

.p-reasonList__link{
  color: #0025B2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-reasonList__link img{
  margin: 2px 0 0 10px;
}
@media screen and (min-width:768px){

  .l-section__title-small.-sec08{
    margin-bottom: 0;
  }

  .l-spacer.p-sec08__text{
    font-size: 1.25rem;
    margin-top: 24px;
  }


  .p-sec08__contents-img{
    text-align: center;
  }
  .p-sec08__innerWrap{
    padding: 40px;
  }
  .p-sec08__contents-img img{
    width: auto;
  }

  .p-sec08__list-item{
    font-size: 1.25rem;
  }

  .p-sec08__list-item:before{
    top: 50%;
    transform: translateY(-50%);
  }

  .p-sec08__titleWrap{
    padding: 40px;
  }

  .p-reasonList-item{
    padding-bottom: 40px;
  }

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

  .p-reasonList-title img{
    width: 120px;
  }
  .p-reasonList-img{
    text-align: center;
  }

  .p-reasonList-img img{
    width: 91%;
    max-width: 640px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.1));
  }
  .p-reasonList-container{
    max-width: 640px;
  }

  .p-reasonList-img.-filter_none img{
    filter: none;
  }

  .p-reasonList li:last-of-type{
    padding: 40px 0 80px;
  }
}


/* Sec09 */
.l-section.-bgWhite.p-sec09{
  padding: 40px 0;
}

.p-sec09__contents{
  background-color: #fff;
  padding: 2.5rem 1rem;
}

.p-sec09__contents img{
  width: 100%;
}

.p-sec09__img img{
  width: 100%;
}

@media screen and (min-width:768px){
  .p-sec09__contents{
    text-align: center;
  }
  .p-sec09__contents img{
    max-width: 440px;
    width: auto;
  }
}

/* Sec10 */
.p-sec10{
  position: relative;
  padding: 6vw 0;
}
.p-sec10::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(img/sec10-bg.jpeg);
  z-index: -1;
  opacity: .5;
}

.p-sec10__container{
  background-color: #fff;
  padding: 40px 6vw;
  width: 88%;
  margin: 0 6%;
}

.p-sec10__container.-blue{
  background-color: #DFF1FD;
}

.p-sec10__photo img{
  width: 100%;
}

.p-sec10__flexText{
  text-align: center;
}

.p-staffList{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-staffList__item{
  width: 23.47%;
}

.p-staffList__item img{
  width: 100%;
}

.p-staffList li:nth-of-type(n+5){
    margin-top: 2.2%;
}

@media screen and (min-width:768px){
  .p-sec10{
    padding: 80px 0;
  }
  .p-sec10__container{
    width: 84%;
    padding: 80px;
    max-width: 880px;
    margin: 0 auto;
  }

  .p-sec10__flex{
    display: flex;
    align-items: flex-end;
  }

  .p-sec10__flexText{
    text-align-last: left;
  }

  .p-sec10__photo{
    width: 44.4%;
  }

  .p-sec10__flexText{
    margin-left: 40px;
  }

  .p-staffList{
    margin-top: 10px;
  }
}

/* sec12 */
.p-people__list{
  display: flex;
  justify-content: space-between;
}

.p-people__item{
  width: 47%;
  display: flex;
  flex-direction: column-reverse;
}

.p-people__item img{
  width: 100%;
}

.p-people__text{
  font-size: 3vw;
  font-weight: 500;
  color: #0F2371;
  margin-top: 1rem;
}
@media screen and (min-width:480px){
  .p-people__text{
    font-size: 1rem;
  }
}

@media screen and (min-width:768px){
  .p-sec12 .l-section__title-small{
    font-size: 1.375rem;
  }

  .p-people__list{
    max-width: 600px;
    margin: 40px auto 0;
  }
  .p-people__item{
    width: 46%;
  }

  .p-people__text{
  font-size: 1.125rem;
  margin-top: 30px;
}
}


/*Sec13 */

.p-overview__item{
  background-color: #E9F8FA;
  padding: 24px;
}

.p-overview__title{
  text-align: center;
  font-size: 1.175rem;
  font-weight: 500;
  color: #0F2371;
}

.p-overview__img img{
  width: 100%;
}

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


/* Sec14 */
.p-sec14{
  padding: 40px 0;
  /* background: linear-gradient(to bottom right, #009BFF 0%, #043FD8 100%); */
}

.p-sec14__inner{
  background-color: #fff;
  width: 88%;
  margin: 0 6%;
  max-width: 1280px;
  padding: 40px 6vw;
}
.p-flow__list li:nth-of-type(n+2){
  margin-top: 40px;
}

.p-flow__item{
  display: flex;
  flex-direction: column;
}

.p-flow__item-img{
  order: 1;
  text-align: center;
  text-align: center;
}

.p-flow__item-img img{
  max-width: 200px;
}

.p-flow__item-title{
  order: 2;
  background-color: #E9F8FA;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.p-flow__item-title-right{
  padding-left: 10px;
}

.p-flow__item-text{
  order: 3;
}

  .p-flow__list{
    max-width: 600px;
    margin: 0 auto;
  }

@media screen and (min-width:768px){
  .p-sec14{
    padding: 80px 0;
    background: linear-gradient(to bottom right, #009BFF 0%, #043FD8 100%);
  }

  .p-sec14__inner{
    margin: 40px auto 0;
    padding: 20px;
  }

  .p-sec14__border{
    padding: 60px;
    border: 3px solid #06D3EF;
    border-image: linear-gradient(to bottom left, #06D3EF 0%, #0025B2 100%);
    border-image-slice: 1;
  }
}

@media screen and (min-width:1024px){
  .p-flow__list,.p-flow__list.u-show__pc{
    display: flex;
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    justify-content: space-between;
  }

  .p-flow__item{
    width: 30%;
  }

  .p-flow__list li:nth-of-type(n+2){
    margin-top: 0;
  }

  .p-flow__item-text{
    text-align: center;
  }
}

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

.accordion_area .accordion_one{
  margin-top: 20px;
}

.accordion_area .accordion_one .ac_header {
  background-color: #E9F8FA;
  padding: 0.625rem 3.5rem 0.625rem 1rem;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition: .2s;
}

.accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 10px;
  right: 1rem;
  width: 30px;
  height: 30px;
}
.accordion_area .accordion_one .ac_header .i_box:before {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.accordion_area .accordion_one .ac_header .i_box:before {
  width: 100%;
  height: 100%;
  background-image: url(img/sec18-open.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.accordion_area .accordion_one .ac_header.open .i_box:before {
  background-image: url(img/sec18-close.svg);
}
.accordion_area .accordion_one .ac_inner {
  display: none;
  padding: .625rem 3.5rem .625rem 1.25rem;
  box-sizing: border-box;
  background: #fff;
}
.accordion_area .accordion_one .ac_inner.-first{
  display: block;
}

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

.p-faq__headinner {
  display: block;
  padding-left: 45px;
  position: relative;
}
.p-faq__headinner::before {
  position: absolute;
  top: 0;
  left: 0;
  content: url(img/sec18-q.svg);
  width: 40px;
  height: 40px;
}
.p-faq__headinner h3.p-faq__q-txt {
  font-size: 1.125rem;
  font-weight: 500;
  color: #0F2371;
}
.p-faq__bodyinner {
  display: block;
  padding-left: 45px;
  position: relative;
}
.p-faq__bodyinner::before {
  position: absolute;
  left: 0;
  top: 0;
  content: url(img/sec18-a.svg);
}
.p-faq__bodyinner p.p-faq__a-txt {
  font-size: 1rem;
  color: #0F2371;
  line-height: 1.8;
}

@media screen and (min-width:768px){
  .accordion_area{
  width: 90.9090%;
  margin: 0 auto;
  }
  .accordion_area .accordion_one{
    margin-top: 40px;
  }

  .accordion_area .accordion_one .ac_header{
    padding-left: 1.25rem;
  }

  .accordion_area .accordion_one .ac_header .i_box{
    top:1rem;
  }
  .p-faq__headinner h3.p-faq__q-txt{
    line-height: 1.8;
    padding: 4px 0;
  }
}

/* Sec19 */
.p-sec19__bg img{
  width: 100%;
}

.p-sec19__img{
  filter: drop-shadow(0 0 1rem rgba(191,218,221,0.4));
}

.p-sec19__footText{
  text-align: right;
  line-height: 1.8;
}

@media screen and (min-width:768px){
  .p-sec19__bg{
    background-image: url(img/sec17-bg.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 465px;
  }
  .p-sec19__bg img{
    display: none;
  }
  .p-sec19__img{
    filter: drop-shadow(0 0 2rem rgba(191,218,221,0.4));
  }

  .p-sec19 .l-section.-bgWhite{
    margin-top: 0;
    filter: none;
  }
}

.l-section.p-form{
  margin-top: 40px;
  background-color: #fff;
  padding-bottom: 80px;
}

.p-form__inner{
  width: 88%;
  margin: 0 auto;
  max-width: 640px;
}

.l-section.p-form.-infocart .p-form__inner{
  max-width: 500px;
}

.p-form__title{
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
}

.p-form__title img{
  max-width: 400px;
  width: 80%;
}

.p-form__title span{
  display: inline-block;
  margin-top: 10px;
}

.p-form__text{
  margin-top: 10px;
}

.p-form__dt{
  font-weight: 500;
  vertical-align: middle;
  margin-top: 20px;
}

.p-form__dt span{
  font-weight: 400;
  display: inline-block;
  font-size: .75rem;
  color: #fff;
  background-color: #F47F5A;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 100vh;
  margin-left: .5rem;
}

.p-form__dd{
  margin-top: 5px;
}

.p-form__dd input,.p-form__dd textarea{
  width: 100%;
  border: solid 3px #9C9C9C;
  border-radius: 5px;
  padding: 10px 20px;
}

.p-form__dd textarea{
  height:3rem;
}

.p-form__dd ::placeholder {
  color: #A7A7A7;
  font-weight: 500;
}

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

.p-form__item{
  padding: 1rem;
}

.p-form__item-img{
  padding: 1rem;
  border: 1px solid #A6F4FF;
  border-image: linear-gradient(to right bottom, #A6F4FF 0%, #57CDFF 100%);
  border-image-slice: 1;
  text-align: center;
}
.p-form__item-img.-standard{
  border: 1px solid #009BFF;
  border-image: linear-gradient(to right bottom, #009BFF 0%, #043FD8 100%);
  border-image-slice: 1;
}
.p-form__item-img.-premium{
  border: 1px solid #069BEF;
  border-image: linear-gradient(to right bottom, #069BEF 0%, #00176C 100%);
  border-image-slice: 1;
}

.p-form__item-img img{
  width: 100%;
}

.p-form__item-title{
  font-size: 1.375rem;
}

.p-form__button{
  margin-top: 10px;
  display: block;
  text-align: center;
  color: #0F2371;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 20px;
  background: linear-gradient(to right bottom, #A6F4FF 0%, #57CDFF 100%);
  border-radius: 100vh;
  filter: drop-shadow(4px 4px 4px rgba(0,0,0,0.1));
  line-height: 1.8;
  transition: all .3s;
}
.p-form__button.-standard{
  color: #fff;
  background: linear-gradient(to right bottom, #009BFF 0%, #043FD8 100%);
}
.p-form__button.-premium{
  color: #fff;
  background: linear-gradient(to right bottom, #069BEF 0%, #00176C 100%);
}

.p-form__list.-infocart02 .p-form__button{
  margin-top: 20px;
}

.p-form__list-pc{
  display: flex;
  justify-content: space-between;
}

.p-form__list-pc-title {
  font-size: 2rem;
}

.p-form__list-pc li{
  width: 30.77%;
}
@media screen and (min-width:768px){
  .l-section.p-form.-infocart .p-form__inner{
    width: 84%;
    max-width: 1040px;
  }
  .l-section.p-form{
    padding-bottom: 160px;
  }
  .p-form__title img{
    max-width: 600px;
    width: 600px;
  }
  .p-form__title{
    font-size: 1.75rem;
  }
  .p-form__button,.p-form__list.-infocart02 .p-form__button{
    margin-top: 20px;
    font-size: 1.8vw;
    padding: 15px 0;
  }

  .p-form__button:hover{
    opacity: .7;
    filter: none;
    transform: translate3d(0, 5px, 0);
  }
}

@media screen and (min-width:1040px){
  .p-form__button,.p-form__list.-infocart02 .p-form__button{
    font-size: 1.25rem;
  }
}


/* Footer */
.p-footer{
  background-color: #070707;
  padding: 40px 0;
  font-size: 12px;
}
.p-footer__logo{
  text-align: center;
}

.p-footer__list{
  display: flex;
  margin-top: 20px;
  justify-content: center;
}

.p-footer__link{
  color: #fff;
  text-decoration: none;
  line-height: 1.8;
  transition: all .3s;
}

.p-footer__link:hover{
  text-decoration: underline;
}

.p-footer__list-line{
  padding: 0 1rem;
  color: #fff;
}

.p-footer__copy{
  text-align: center;
  color: #fff;
  line-height: 1.8;
}

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

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

.u-show__tab{
  display: none;
}

.u-show__pc{
  display: none;
}

.u-show__pc-l{
  display: none;
}
.u-tac{
  text-align: center;
}
.u-tac.-pc{
  text-align: left;
}

.u-fwm{
  font-weight: 500;
}

.u-fwsb{
  font-weight: 600;
}

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

.u-under__blue{
  text-decoration: underline;
  text-decoration-color: #80CDFF;
  text-underline-offset: .3rem;
}

.u-serif{
  font-family: 'Noto Serif JP', serif;
}

.u-marker__marker.-bottom{
    background:linear-gradient(transparent 60%, #E5FD3D 60%);
}

.u-marker__red{
  background:#F9CCD7;
}
.u-marker__blue{
  background:#CCF3F9;
}

.u-color_marker{
  color: #E5FD3D;
}

.u-color_blue01{
  color: #0025B2;
}

.u-color_blue02{
  color: #008EEA;
}

.u-color_white{
  color: #fff;
}

.u-color_learning{
  color: #3BC1D3;
}

.u-color_practice{
  color: #3C9BD9;
}

.u-color_white{
  color: #fff;
}

.u-color_red{
  color: #E02E59;
}

.u-color_gold{
  color: #E4DBBA;
}

.u-fz__l{
  font-size: 1.25rem;
}

.u-fz__xl{
  font-size: 1.5rem;
}

.u-palt{
  font-feature-settings: "palt";
}

@media screen and (min-width:400px){
  .u-show__sp-s{
    display: none;
  }
}

@media screen and (min-width:768px){
  .u-show__sp{
    display: none;
  }
  .u-show__tab{
    display: block;
  }
  .u-show__pc{
    display: block;
  }
  .u-fz__l{
    font-size: 1.75rem;
  }
  .u-fz__xl{
    font-size: 2rem;
  }
  .u-tac.-pc{
    text-align: center;
  }
}

@media screen and (min-width:1024px){
  .u-show__tab{
    display: none;
  }
  .u-show__pc-l{
    display: block;
  }
  .u-none__pc-l{
    display: none;
  }
}
