@charset "UTF-8";
/*
Theme Name: 
Description:  Web Site
Author: Hiroki Ishiida
Version: 1.0
*/
/*------------ COMMON SETTING ------------ */
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  color: #262626;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Sans", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.08em;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wrapper {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

section {
  padding: 100px 15px;
}

section:nth-child(odd) {
  background-color: #fff;
}

section:nth-child(even) {
  background-color: #f7f7f7;
}

.Pcver {
  display: block;
}

@media screen and (max-width: 768px) {
  .Pcver {
    display: none;
  }
}

.Spver {
  display: none;
}

@media screen and (max-width: 768px) {
  .Spver {
    display: block;
  }
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* ------- Title -------- */
.Title {
  margin-bottom: 80px;
  font-size: 4rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 450px) {
  .Title {
    font-size: 3.2rem;
  }
}

.Title span {
  margin-top: 10px;
  font-size: 2.4rem;
  font-family: 'DIN Alternate';
  color: #009BE0;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 450px) {
  .Title span {
    font-size: 2rem;
  }
}

.SmallTitle {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.8;
}

@media screen and (max-width: 450px) {
  .SmallTitle {
    font-size: 2rem;
  }
}

.YellowLine {
  position: relative;
}

.YellowLine::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  right: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 5px;
  border-radius: 10px;
  background-color: #F5DA08;
}

/* ------- BTN -------- */
.Btn,
.CTA-Btn {
  width: 100%;
  padding: 15px 30px;
  background-color: #fff;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  border-radius: 100px;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
}

.Btn:hover,
.CTA-Btn:hover {
  -webkit-filter: unset;
          filter: unset;
  -webkit-transform: scale(0.99, 0.99) translateY(3px);
          transform: scale(0.99, 0.99) translateY(3px);
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.CTA-Btn {
  max-width: 800px;
  padding: 60px 0;
  margin: 0 auto;
  font-size: 3.2rem;
  background: -webkit-gradient(linear, left top, right top, from(#0F9CD9), to(#663FCE));
  background: linear-gradient(90deg, #0F9CD9 0%, #663FCE 100%);
  border: 5px solid #fff;
}

@media screen and (max-width: 768px) {
  .CTA-Btn {
    font-size: 3rem;
  }
}

@media screen and (max-width: 450px) {
  .CTA-Btn {
    padding: 40px 0;
    font-size: 2.4rem;
  }
}

/*----------------- HEADER ----------------- */
header {
  width: 100%;
  position: absolute;
  top: -60px;
}

header .Header__inner {
  width: 100%;
  height: 100px;
  margin: 0 auto;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all 1s;
  transition: all 1s;
}

@media screen and (max-width: 1130px) {
  header .Header__inner {
    padding: 20px 15px;
  }
}

.Logo {
  max-width: 160px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .Logo {
    max-width: 130px;
  }
}

.is-animation {
  background-color: #ffffff80;
  -webkit-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.is-animation img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.is-animation .Menu__list {
  color: #262626;
}

/*------------------- NAV ------------------ */
@media screen and (max-width: 1130px) {
  nav {
    width: 100%;
    height: 100vh;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    background: #000000e6;
    text-align: center;
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: hidden;
  }
  nav.panelactive {
    visibility: visible;
    opacity: 1;
  }
}

@media screen and (max-width: 1130px) {
  .Menu__content {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.Menu__content .Menu__list {
  padding: 0 15px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1130px) {
  .Menu__content .Menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.Menu__content .Menu__list .Menu__item {
  margin-left: 40px;
  font-weight: 600;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 1130px) {
  .Menu__content .Menu__list .Menu__item {
    margin-bottom: 80px;
    margin-left: unset;
    font-size: 4rem;
    color: #fff;
  }
  .Menu__content .Menu__list .Menu__item:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .Menu__content .Menu__list .Menu__item {
    margin-bottom: 40px;
    font-size: 3.2rem;
  }
}

.Menu__content .Menu__list .Menu__item:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.Menu__content .Menu__list .ContactBtn {
  margin-top: 0;
  color: #fff;
  background-color: #F213A4;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 51, 82, 0.2));
          filter: drop-shadow(0 3px 6px rgba(0, 51, 82, 0.2));
}

@media screen and (max-width: 1130px) {
  .Menu__content .Menu__list .ContactBtn {
    max-width: unset;
    padding: 40px;
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 768px) {
  .Menu__content .Menu__list .ContactBtn {
    padding: 30px;
    font-size: 3rem;
  }
}

.Header__inner.is-animation .Menu__list {
  color: #262626;
}

/*------------- HAMBERGER MENU ------------ */
.OpenBtn {
  display: none;
}

@media screen and (max-width: 1130px) {
  .OpenBtn {
    width: 50px;
    height: 29px;
    position: relative;
    z-index: 1000;
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .OpenBtn span {
    width: 100%;
    height: 3px;
    background: #fff;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    border-radius: 50px;
  }
  .OpenBtn span:nth-of-type(2) {
    top: 13px;
  }
  .OpenBtn span:nth-of-type(3) {
    bottom: 0;
  }
  .OpenBtn.active span {
    background-color: #fff;
  }
  .OpenBtn.active span:nth-of-type(1) {
    top: 14px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  .OpenBtn.active span:nth-of-type(2) {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  .OpenBtn.active span:nth-of-type(3) {
    bottom: 12px;
    -webkit-transform: rotate(150deg);
            transform: rotate(150deg);
  }
}

.Header__inner.is-animation .OpenBtn span {
  background: #262626;
}

.Header__inner.is-animation .OpenBtn.active span {
  background-color: #fff;
}

/*----------------- KEY-VISUAL ------------------ */
.KeyVisual {
  padding-top: 100px;
  background: url(../img/background.png) no-repeat center center/cover;
}

.KeyVisual .wrapper {
  padding: 60px 15px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .KeyVisual .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.KeyVisual .KeyVisualTextBox {
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .KeyVisual .KeyVisualTextBox {
    margin-right: unset;
    margin-bottom: 40px;
  }
}

.KeyVisual .KeyVisualTextBox p {
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: .1em;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
  opacity: 0;
}

.KeyVisual .KeyVisualTextBox p span {
  color: #FFFF00;
}

.KeyVisual .KeyVisualTextBox p:first-child {
  font-size: 2.8vw;
  margin-bottom: 40px;
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  .KeyVisual .KeyVisualTextBox p:first-child {
    font-size: 7vw;
  }
}

.KeyVisual .KeyVisualTextBox p:nth-child(2) {
  font-weight: 700;
}

.KeyVisual .KeyVisualTextBox p:nth-child(3) {
  margin-bottom: 5px;
}

.KeyVisual .KeyVisualTextBox p:nth-child(4) {
  margin-bottom: unset;
}

.KeyVisual .KeyVisualTextBox p:nth-child(4) span {
  font-size: 2vw;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .KeyVisual .KeyVisualTextBox p:nth-child(4) span {
    font-size: 5vw;
  }
}

.KeyVisual .KeyVisualTextBox .Btn {
  margin-top: 40px;
  padding: 30px;
  font-size: 2rem;
  background-color: #F213A4;
  opacity: 0;
}

.KeyVisual .imgBox {
  max-width: 500px;
  width: 100%;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .KeyVisual .imgBox {
    max-width: unset;
  }
}

.readTitle {
  padding: 100px 0 0;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .readTitle {
    font-size: 1.8rem;
  }
}

.readTitle p {
  opacity: 0;
}

/*----------------- Section01 ------------------ */
#Section01 .Section01ListTop li,
#Section01 .Section01ListBottom li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
}

#Section01 .Section01ListTop li img,
#Section01 .Section01ListTop li .Secton01ItemText,
#Section01 .Section01ListBottom li img,
#Section01 .Section01ListBottom li .Secton01ItemText {
  width: calc(100% / 2 - 40px);
}

@media screen and (max-width: 1000px) {
  #Section01 .Section01ListTop li img,
  #Section01 .Section01ListTop li .Secton01ItemText,
  #Section01 .Section01ListBottom li img,
  #Section01 .Section01ListBottom li .Secton01ItemText {
    width: 100%;
  }
}

#Section01 .Section01ListTop li img,
#Section01 .Section01ListBottom li img {
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}

@media screen and (max-width: 1000px) {
  #Section01 .Section01ListTop li img,
  #Section01 .Section01ListBottom li img {
    max-width: 500px;
  }
}

@media screen and (max-width: 1000px) {
  #Section01 .Section01ListTop li .Secton01ItemText,
  #Section01 .Section01ListBottom li .Secton01ItemText {
    text-align: center;
    display: block;
  }
}

#Section01 .Section01ListTop li p,
#Section01 .Section01ListBottom li p {
  line-height: 2;
}

@media screen and (max-width: 1000px) {
  #Section01 .Section01ListTop li p,
  #Section01 .Section01ListBottom li p {
    margin-bottom: 80px;
    display: inline-block;
    text-align: left;
  }
}

@media screen and (max-width: 1000px) {
  #Section01 .Section01ListTop li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media screen and (max-width: 1000px) {
  #Section01 .Section01ListBottom li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#Section01 .SmallTitle {
  margin-bottom: 80px;
}

/*----------------- Section02 ------------------ */
#Section02 .SmallTitle {
  margin-bottom: 40px;
  line-height: 2;
}

@media screen and (max-width: 1000px) {
  #Section02 .SmallTitle {
    margin-bottom: 80px;
  }
}

#Section02 .SmallTitle span {
  font-size: 3.2rem;
  color: #009BE0;
}

#Section02 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 1000px) {
  #Section02 ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#Section02 ul li {
  width: calc(100% / 3 - 40px);
  text-align: center;
}

@media screen and (max-width: 1000px) {
  #Section02 ul li {
    width: 100%;
    margin-bottom: 80px;
  }
}

#Section02 ul li img {
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}

@media screen and (max-width: 1000px) {
  #Section02 ul li img {
    max-width: 300px;
  }
}

#Section02 ul li .Secton02ItemTitle {
  margin: 40px 0 30px;
  font-size: 2.4rem;
  font-weight: 600;
}

@media screen and (max-width: 1000px) {
  #Section02 ul li .Secton02ItemTitle {
    margin: 20px 0 30px;
  }
}

@media screen and (max-width: 450px) {
  #Section02 ul li .Secton02ItemTitle {
    font-size: 2rem;
  }
}

#Section02 ul li p {
  line-height: 2;
}

#Section02 ul li p span {
  font-size: 1.4rem;
  color: #666;
}

/*----------------- Section03 ------------------ */
#Section03 img {
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}

/*----------------- Section04 ------------------ */
#Section04 {
  text-align: center;
  line-height: 1.8;
  font-weight: 600;
}

#Section04 .Secton04ItemTitle {
  font-size: 2rem;
  line-height: 2;
}

@media screen and (max-width: 450px) {
  #Section04 .Secton04ItemTitle {
    font-size: 1.8rem;
  }
}

#Section04 .Section04TextBox {
  max-width: 800px;
  width: 100%;
  margin: 40px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 30px;
  font-size: 2.4rem;
}

@media screen and (max-width: 450px) {
  #Section04 .Section04TextBox {
    font-size: 2rem;
  }
}

#Section04 .Section04TextBox p:first-child {
  color: #FF0000;
  line-height: 1;
}

#Section04 .Section04TextBox p:nth-child(2) {
  margin: 20px 0;
}

#Section04 .Section04TextBox span {
  font-size: 4rem;
  font-weight: 700;
}

@media screen and (max-width: 450px) {
  #Section04 .Section04TextBox span {
    font-size: 3.2rem;
  }
}

#Section04 .Section04TextBox p:last-child {
  padding: 0 5px 5px;
  font-weight: 600;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(0%, #FFF500));
  background: linear-gradient(transparent 40%, #FFF500 0%);
  display: inline;
}

#Section04 p:last-child {
  font-weight: 300;
}

/*----------------- Section05 ------------------ */
#Section05 ul {
  margin-bottom: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1000px) {
  #Section05 ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#Section05 ul li {
  width: calc(100% / 2 - 20px);
  text-align: center;
}

@media screen and (max-width: 1000px) {
  #Section05 ul li {
    width: 100%;
    margin-bottom: 80px;
  }
}

#Section05 ul li p {
  margin-top: 30px;
  font-size: 2.4rem;
  font-weight: 600;
}

@media screen and (max-width: 1000px) {
  #Section05 ul li p {
    margin-top: 40px;
  }
}

@media screen and (max-width: 450px) {
  #Section05 ul li p {
    font-size: 2rem;
  }
}

#Section05 ul li a {
  margin-top: 30px;
  display: inline-block;
  font-weight: 200;
  color: #0d57ff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#Section05 ul li a:hover {
  opacity: .5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#Section05 .interview {
  padding: 30px;
  background-color: #fff;
  border-radius: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 180px 1fr;
      grid-template-columns: 180px 1fr;
  -ms-grid-rows: 50px 1fr;
      grid-template-rows: 50px 1fr;
  gap: 20px;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
  line-height: 1.5;
}

@media screen and (max-width: 1000px) {
  #Section05 .interview {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: 50px 180px 1fr;
        grid-template-rows: 50px 180px 1fr;
    gap: 40px;
  }
}

#Section05 .interview img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
}

@media screen and (max-width: 1000px) {
  #Section05 .interview img {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
    margin: 0 auto;
  }
}

#Section05 .interview .interviewTitle {
  font-size: 2rem;
  font-weight: 600;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 /3;
}

@media screen and (max-width: 1000px) {
  #Section05 .interview .interviewTitle {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    text-align: center;
  }
}

#Section05 .interview .interviewText {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 /3;
}

@media screen and (max-width: 1000px) {
  #Section05 .interview .interviewText {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / 4;
  }
}

/*----------------- Section06 ------------------ */
#Section06 {
  text-align: center;
}

#Section06 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1000px) {
  #Section06 ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#Section06 ul li {
  width: calc(100% / 5 - 30px);
}

@media screen and (max-width: 1000px) {
  #Section06 ul li {
    width: 100%;
    margin-bottom: 120px;
  }
  #Section06 ul li:last-child {
    margin-bottom: 0;
  }
}

#Section06 ul li .imgBox {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

@media screen and (max-width: 1000px) {
  #Section06 ul li .imgBox {
    margin: 0 auto;
  }
}

#Section06 ul li .imgBox img {
  max-width: 180px;
  width: 100%;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}

@media screen and (max-width: 1000px) {
  #Section06 ul li .imgBox img {
    max-width: 300px;
  }
}

#Section06 ul li .imgBox .imgNumber {
  font-size: 7rem;
  font-weight: 600;
  color: #00B3FF;
  position: absolute;
  top: -30px;
  left: 0px;
  z-index: 1;
}

@media screen and (max-width: 1000px) {
  #Section06 ul li .imgBox .imgNumber {
    font-size: 16rem;
    top: -60px;
    left: -30px;
  }
}

#Section06 ul li .YellowLine {
  margin: 20px 0 30px;
  font-size: 2rem;
  font-weight: 600;
}

@media screen and (max-width: 1000px) {
  #Section06 ul li .YellowLine {
    margin: 30px 0 30px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 450px) {
  #Section06 ul li .YellowLine {
    font-size: 2rem;
  }
}

#Section06 ul li p:last-child {
  font-size: 1.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 1000px) {
  #Section06 ul li p:last-child {
    font-size: 1.6rem;
  }
}

#Section06 .discriptionText {
  margin-top: 80px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 450px) {
  #Section06 .discriptionText {
    font-size: 1.8rem;
  }
}

/*----------------- Section07 ------------------ */
#Section07 ul li {
  margin-bottom: 30px;
}

#Section07 ul li .questionInner {
  padding: 30px;
  background-color: #E8F8FF;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  position: relative;
}

#Section07 ul li .questionInner::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 30px;
  height: 3px;
  background-color: #009BE0;
  -webkit-transition: .2s;
  transition: .2s;
  transform: rotate(90deg), translateY(-50%);
  -webkit-transform: rotate(90deg);
}

#Section07 ul li .questionInner::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 30px;
  height: 3px;
  background-color: #009BE0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: .3s;
  transition: .3s;
}

#Section07 ul li .questionInner.active::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

#Section07 ul li .questionInner.active::after {
  background-color: transparent;
}

#Section07 ul li .questionInner .questionText {
  font-size: 2.4rem;
  font-weight: 600;
  margin-right: 40px;
  line-height: 1.5;
}

@media screen and (max-width: 450px) {
  #Section07 ul li .questionInner .questionText {
    font-size: 1.8rem;
  }
}

#Section07 ul li .questionInner .questionTitle {
  color: #009BE0;
}

#Section07 ul li .answerInner {
  padding: 30px;
  margin-top: 20px;
  line-height: 1.5;
  display: none;
}

#Section07 ul li .answerInner .answerTitle {
  color: #E03C00;
}

#Section07 ul li .answerInner .answerInnerFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#Section07 ul li .questionTitle,
#Section07 ul li .answerTitle {
  font-size: 3.2rem;
  font-weight: 600;
  margin-right: 20px;
  line-height: 1;
  font-family: 'DIN Alternate';
}

/*----------------- Section08 ------------------ */
#Section08 .Section--Text__Inner {
  text-align: center;
  display: block;
}

#Section08 .Section--Text {
  line-height: 2;
  text-align: left;
  display: inline-block;
}

#Section08 .Section--Text p {
  margin-bottom: 20px;
}

#Section08 .Section--Text .Section--Text__Bold {
  font-weight: 600;
}

/*----------------- CTA ------------------ */
.CTA {
  text-align: center;
  background: url(../img/CTA.jpeg) center center/cover;
  color: #fff;
}

.CTA .Backdrop-Filter {
  width: 100%;
  padding: 100px 15px;
  -webkit-backdrop-filter: brightness(0.4);
          backdrop-filter: brightness(0.4);
}

.CTA p {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 80px;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}

@media screen and (max-width: 768px) {
  .CTA p {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

/*----------------- FOOTER ------------------ */
footer {
  padding: 40px 30px;
  background-color: #262626;
}

@media screen and (max-width: 1130px) {
  footer {
    padding: 80px 15px 15px;
  }
}

footer .Footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1130px) {
  footer .Footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

footer .Menu__content {
  position: unset;
  -webkit-transform: unset;
          transform: unset;
}

footer .Menu__content .Menu__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 0;
  padding: 0 0;
}

@media screen and (max-width: 1130px) {
  footer .Menu__content .Menu__list {
    margin: 80px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (max-width: 1130px) {
  footer .Menu__content .Menu__list .ContactBtn {
    width: 100%;
  }
}

@media screen and (max-width: 1130px) {
  footer .Menu__content .Menu__list .Menu__item {
    margin-left: 0;
  }
  footer .Menu__content .Menu__list .Menu__item:last-child {
    margin-bottom: 0;
  }
}

footer .copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 1.2rem;
  color: #fff;
  font-family: 'DIN Alternate';
  font-weight: 300;
}

/*----------------- CONTACT PAGE ------------------ */
.lowKeyVisual {
  padding-top: 100px;
  background: url(../img/background.png) no-repeat center center/cover;
}

.lowKeyVisualTitle {
  font-size: 6rem;
  font-weight: 700;
  font-family: 'DIN Alternate';
  color: #fff;
  padding: 40px 15px 80px;
  text-align: center;
  letter-spacing: 0.05em;
}

.contactText {
  margin-top: 80px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contactText {
    font-size: 2rem;
  }
}

@media screen and (max-width: 450px) {
  .contactText {
    font-size: 1.6rem;
  }
}

/*-------------- パンクズリスト ------------- */
.breadcrumb-trail {
  background-color: #f7f7f7;
}

.breadcrumb-trail p a {
  color: #125E9F;
  cursor: pointer;
}

.breadcrumb-trail .fbc-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background-color: #f7f7f7;
}

.fbc-page .fbc-wrap .fbc-items {
  padding: 0 0 !important;
}

/*----------------- FORM ------------------ */
form {
  width: 100%;
  margin: 0 auto !important;
}

form .contact7 dt .must {
  font-size: 1.2rem;
  font-weight: 300;
  margin-left: 20px;
  color: #ed1541;
}

form .contact7 dt {
  font-size: 2rem;
  font-weight: 600;
}

form .contact7 dd {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
}

form .contact7 dd:last-child {
  padding-bottom: 0;
}

form .contact7 input[type="text"],
form .contact7 input[type="tel"],
form .contact7 input[type="email"],
form .contact7 select,
form .contact7 textarea {
  font-size: 2rem;
  font-weight: normal;
  background-color: #DDD;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
}

form .contact7 select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url(../img/Icon/BottomArrow.png);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 20px;
  cursor: pointer;
}

form .contact7 textarea {
  height: 200px;
}

form .contact7 .contact_p {
  margin-bottom: 80px;
  line-height: 2;
}

form .contact7 .wpcf7-not-valid-tip {
  margin-top: 20px;
}

form .contact7 .form_check {
  width: auto;
  margin-top: -3px;
  padding: 0;
}

form .contact7 .form_check .check_p {
  margin-left: 10px;
  font-size: 1.5rem;
  font-weight: normal;
}

form .contact7 .form_check .wpcf7-list-item {
  margin: 0 0 !important;
}

form .contact7 p {
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
}

form .contact7 p:nth-child(3),
form .contact7 p:nth-child(4) {
  margin-bottom: 0;
}

form .contact7 .CTA-Btn {
  max-width: 600px;
  padding: 40px 0;
  font-size: 2.4rem;
  margin-top: 80px;
}
/*# sourceMappingURL=style.css.map */