@charset "UTF-8";

html:before,
html:after,
body:before,
body:after {
  content: "";
  position: fixed;
  background-color: #FFF;
  z-index: 10;
}
html:before,
body:before {
  width: 100%;
  height: 8px;
  left: 0;
}
html:before {
  top: 0;
}
body:before {
  bottom: 0;
}
html:after,
body:after {
  width: 8px;
  height: 100vh;
  top: 0;
}
html:after {
  left: 0;
}
body:after {
  right: 0;
}
.txt-num {
  font-family: 'Hammersmith One', sans-serif;
}

body {
  font-family: 'Marcellus', 'Shippori Mincho', serif;
  letter-spacing: 0.15em;
  font-feature-settings: "palt" 1;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 12px;
  }
}

.txt-eng {
  font-family: 'Marcellus', 'Shippori Mincho', serif;
}
.txt-num {
  font-size: 3rem;
  color: #e3562b;
}
.txt-center {
  text-align: center;
}
.txt-area p {
  line-height: 2.4;
  margin: 40px 0;
}


.blur{
  transition: all 0.75s;
  filter: blur(10px);
  opacity: 0;
}
.blur.scrollin {
  filter: blur(0);
  opacity: 1;
}



.page-wrap {
  padding: 8px;
  background-color: #FFF;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.bg-border {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 1;
  border: 8px solid #FFF;
}

.mainvisual-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.mainvisual-wrap .mainvisual {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #f0f0eb;
  z-index: 0;
  top: 0;
  left: 0;
  overflow: hidden;
}
.mainvisual-wrap .mv-top {
  position: absolute;
  left: 0;
  top: 0;
}
.mainvisual-wrap .mv-btm {
  position: absolute;
  right: 0;
  bottom: 0;
}
.mainvisual-wrap .mv-top,
.mainvisual-wrap .mv-btm {
  animation-name:blurAnime;
  animation-duration:3s;
  animation-fill-mode:forwards;
  transition-timing-function: ease-in-out;
  animation-delay: 0.1s;
  opacity: 0;
  transition: all 0.1s;
}
@keyframes blurAnime{
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

.mainvisual-wrap .txt-bg {
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  width: 1420px;
  animation-name:fadeInAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  transition-timing-function: ease-in-out;
  animation-delay: 0.1s;
  opacity: 0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.chracters {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  display:inline-block;
  width: 80%;
  max-width: 670px;
}
.chracters-top,.chracters-btm {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.chracters-top {
  margin-bottom: 100px;
}
.chracters-btm {
  flex-direction: row-reverse;
}
.chracters span {
  padding: 0 50px;
  box-sizing: border-box;
  animation-name:fadeUpAnime;
  animation-duration:0.25s;
  animation-fill-mode:forwards;
  transition-timing-function: ease-in;
  opacity: 0;
}
.chracters-btm span {
  padding: 0 44px 0 56px;
}
.chracters-top span:nth-child(1) { animation-delay: 0.6s; }
.chracters-top span:nth-child(2) { animation-delay: 0.7s; }
.chracters-top span:nth-child(3) { animation-delay: 0.8s; }
.chracters-top span:nth-child(4) { animation-delay: 0.9s; }
.chracters-btm span:nth-child(1) { animation-delay: 1s; }
.chracters-btm span:nth-child(2) { animation-delay: 1.1s; }
.chracters-btm span:nth-child(3) { animation-delay: 1.2s; }
.chracters-btm span:nth-child(4) { animation-delay: 1.3s; }
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
  	transform: translateY(0);
  }
}

header, .footer-inner {
  width: 94%;
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  padding-left: 4%;
  padding-right: 4%;
  box-sizing: border-box;
}
header nav {
  width: 70%;
}
header nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header nav ul li {
  margin-left: 40px;
}
header nav ul li a {
  font-size: 15px;
  position: relative;
}
header nav ul li a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 99%;
  height: 1px;
  background: #e3562b;
  bottom: -3px;
  left: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
header nav ul li a:hover::after {
  transform: scale(1, 1);
}
.hamburger-wrap {
  display: none;
}


.section-wrapper {
  padding: 10vw 0 0;
}
.section-contact {
  padding: 8vw 0;
}
#special {
  padding-bottom: 10vw;
}
#wwa .bg-map {
  padding-bottom:10vw;
}

.section-wrapper {
  background-color: #f9f9f5;
}
.contents-wrap {
  width: 90%;
  max-width: 1125px;
  margin: 0 auto;
}
.contents-wrap2 {
  max-width: 1650px;
  padding: 0;
}
.flex-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-wrap > .w40 {
  width: 43%;
}


.ttl-wrap h2 {
  position: relative;
  font-size: 0.8rem;
}
.ttl-wrap h2 .txt-eng:before {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  background-color: #e3562b;
  position: absolute;
  top:0.8em;
  left: -2em;
}
.ttl-wrap h2 .txt-eng {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.ttl-wrap.ttl-wrap_colorW h2 .txt-eng {
  color: #FFF;
}
.ttl-wrap.ttl-wrap_colorW h2 .txt-eng:before {
  background-color: #FFF;
}

#wwa .bg-map {
  background: url("../image/section01-map.svg") no-repeat bottom -100px left -100px #f9f9f5;
  background-size: 50%;
}
#wwa .bg-map .contents-wrap {
  padding: 0;
}
#wwa .txt-area p {
  line-height: 2.8;
}

.btn {
  display: inline-block;
  background-color: #e3562b;
  padding: 20px;
  padding-right: 60px;
  text-align: left;
  font-size: 0.8rem;
  color: #FFF;
  line-height: 1;
  border-radius: 2px;
  position: relative;
}
.btn:after {
  content: "";
  background: url("../image/arrow-btn.svg") center center no-repeat;
  display: block;
  width: 20px;
  height: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit- transform: translateY(-50%);
  right: 20px;
}

.img-area {
  position: relative;
}
.img-area .img-small {
  width: 43.90243902439025%;
  position: absolute;
  right: -1vw;
  bottom: -4vw;
}

#data ul {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  flex-wrap: wrap;
}
#data ul li {
  width: 33.33333%;
  background-color: #f0f0eb;
  padding: 60px;
  padding-left: 140px;
  box-sizing: border-box;
}
#data ul li:nth-child(even) {
  background-color: #FFF;
}
#data ul li h3 {
  font-size: 0.6rem;
  position: relative;
}
#data ul li h3 .txt-jp {
  display: block;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 0.8rem;  
}
#data ul li h3 .icn {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  -webkit- transform: translateY(-50%);
}
#data ul li p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.6rem;
  line-height: 2.4;
}
#data ul li .txt-num {
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #2f2f2f;
}


#feature {
  padding-bottom: 10vw;
}
#feature ul {
  align-items: flex-start;
}
#feature ul li {
  width: 28.718703976435933%;
}
#feature ul li:nth-child(1) {
  margin-top: 120px;
}
#feature ul li:nth-child(2) {
  margin-top: 60px;
}
#feature ul li:nth-child(3) {
  margin-top: 0;
}
#feature ul li img {
  width: 100%;
}
#feature ul li .txt-area {
  position: relative;
  padding-top: 60px;
}
#feature ul li h2 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
#feature ul li p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8rem;
  line-height: 2.4;
  letter-spacing: 0.1em;
}
#feature ul li .txt-num {
  position: absolute;
  top: -0.85em;
  left: 16px;
}

.section-contact .contact-txt-area {
  width: 90%;
  max-width: 1060px;
  margin: 0 auto;
  background-color: #FFF;
  border-radius: 12px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.section-contact .contact-txt-area h2 {
  color: #db532a;
  font-size: 3rem;
  letter-spacing: 0.2em;
}
.section-contact .contact-txt-area h3 {
  font-size: 0.8rem;
}
.section-contact .contact-txt-area ul {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.section-contact .contact-txt-area ul li {
  font-size: 1.2rem;
}
.section-contact .contact-txt-area ul li:nth-child(2) {
  margin-left: 40px;
}
.section-contact .contact-txt-area .links {
  padding-left: 45px;
  border-left: #ebebe5 solid 2px;
}
.section-contact .contact-txt-area ul li a {
  border-bottom: #db532a 1px solid;
}

#special {
  background: url("../image/section03-img_bg.jpg") no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
#special ul {
  align-items: flex-start;
  margin-top: 40px;
}
#special ul li h3,#special ul li p {
  color: #FFF;
}
#special ul li a {
  position: relative;
}
#special ul li a img {
  z-index: 0;
  width: 100%;
}
#special ul li a h3 {
  font-size: 1rem;
  letter-spacing: 0.05em;
  background-color: #e3562b;
  line-height: 1;
  padding: 16px 12px 12px;
  display: inline-block;
  margin-top: -16px;
  margin-left: -16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
#special ul li a p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 2;
  letter-spacing: 0.1em;
}

footer {
  background-color: #2a2a2a;
}
.footer-inner {
  align-items: center;
  justify-content:flex-start;
  padding: 60px 400px 60px 0;
}
.footer-inner .center-area {
  padding-left: 60px;
}
.footer-inner p {
  color: #FFF;
  font-size: 0.55rem;
  margin-top: 10px;
}
.center-area ul {
  display: flex;
  align-items: center;
}
.center-area ul li {
  text-align: center;
  padding: 0 16px;
}
.center-area ul li a {
  color: #FFF;
  font-size: 0.55rem;
}
.center-area ul:first-child {
  margin-bottom: 10px;
}
.center-area ul:first-child li a {
  font-size: 0.75rem;
}

.fix-bnr {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: none;
  z-index: 100;
}
.fix-bnr a {
  display: block;
}


/*lower*/
#lower .mainvisual-wrap {
  height: 55.5vh
}
.mainvisual-ttl {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
.mainvisual-ttl h2 {
  font-size: 0.8rem;
}
.mainvisual-ttl .txt-eng {
  color: #e3562b;
  font-size: 2.6rem;
  display: block;
}
#merit,#qa,#privacy {
  padding-bottom: 10vw;
}
#lower .txt-area ul li .txt-num {
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  font-size: 1rem;
}
#lower #privacy .txt-area ul li .txt-num {
  display: inline;
  padding-right: 20px;
}
#lower .txt-area ul li {
  border-bottom: #ececec 1px solid;
  padding: 40px 0;
}
#lower .txt-area ul li p,
.details-content p{
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  margin-top: 0;
  font-size: 0.8rem;
  line-height: 1.8;
  margin-top: 10px;
  margin-bottom: 0;
}
.qa-wrap {
  margin-top: 40px;
}
.details {
  border-bottom: #ececec 1px solid;
  padding: 40px 0;
}
.details:first-child {
  padding-top: 0;
}
.details-summary {
  position: relative;
  display: block;
  padding: 10px;
  padding-left: 0;
  padding-right: 30px;
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  font-size: 0.9rem;
}
.details-summary:hover {
  cursor: pointer;
  opacity: 0.8;
}
.details-summary .acc-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 18px;
  height: 18px;
  transform-origin: center center;
  transition-duration: 0.2s;
}
.details-summary .acc-btn:before, .details-summary .acc-btn:after {
  content: "";
  background-color: #212121;
  width: 18px;
  height: 1px;
  position: absolute;
  top: 9px;
  left: 0;
  transform-origin: center center;
}
.details-summary .acc-btn:before {
  width: 1px;
  height: 18px;
  top: 0;
  left: 9px;
}
.details-summary.is-active .acc-btn {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
  top: 50%;
}
.details-summary.is-active .acc-btn:before {
  content: none;
}
.details-summary::-webkit-details-marker {
  display: none;
}
.details-content {
  padding: 20px 0 0;
}
.details-content p:last-of-type {
  margin: 0 0 0;
}

#privacy .txt-area ul li:first-child {
  padding-top: 0;
}
#privacy .txt-area ul li p {
  letter-spacing: 0;
}

@media only screen and (max-width: 1440px) {
  .footer-inner {
    flex-flow: column;
  }
  .footer-inner .left-area {
    order: 2;
    margin-top: 2vw;
  }
  .footer-inner .center-area {
    order: 1;
    padding-left: 0;
  }
  .footer-inner .left-area,
  .footer-inner .center-area {
    width: 100%;
  }
  .center-area ul li:first-child {
    padding-left: 0;
  }
}
@media only screen and (max-width: 1040px) {
  header nav {
    position: fixed;
    right: -75%;
    top: 0;
    width: 75%;
    height: 100vh;
    padding-top: 100px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto;
  }
  header nav ul {
    flex-flow: column;
  }
  header nav ul li {
    margin: 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid #CCC;
    padding: 20px 0;
  }
  header nav ul li:last-child {
    border-bottom: 1px solid #CCC;
  }
  header nav ul li a {
    padding: 10px 0;
    display: block;
  }
  header nav ul li a:hover::after {
    display: none;
  }
  .hamburger-wrap {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
  }
  .hamburger {
    position: absolute;
    right: 10px;
    top: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2500;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
  }
  .nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
  }
  .nav_item a:hover {
    background-color: #eee;
  }
  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background-color: #333;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 20px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }
  .nav-open nav {
    z-index: 2000;
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
  .chracters {
    width: 80%;
  }
  .chracters span {
    padding: 0 5vw;
  }
  #data ul li h3 .icn {
    margin-bottom: 20px;
    display: block;
    top: inherit;
    left: inherit;
    position: relative;
    transform: inherit;
  }
}

@media only screen and (max-width: 768px) {
  
  #data ul li .txt-num{
    font-size: 1.8rem;
  }
  .mainvisual-ttl .txt-eng {
    font-size: 1.4rem;
  }
  .ttl-wrap h2 .txt-eng,
  .section-contact .contact-txt-area h2,
  #merit ul li h3,
  #privacy ul li h3
  {
    font-size: 1.2rem;
  }
  .txt-area p,
  #feature ul li h2,
  .section-contact .contact-txt-area h3,
  .section-contact .contact-txt-area ul li a,
  #special ul li a h3{
    font-size: 0.85rem;
  }
  .ttl-wrap h2,
  .btn,
  #data ul li h3 .txt-jp,
  .center-area ul:first-child li a,
  .mainvisual-ttl h2{
    font-size: 0.7rem;
  }
  #feature ul li p,
  #special ul li a p{
    font-size: 0.6rem;
  }
  
  .mainvisual-wrap .txt-bg {
    width: 110%;
  }
  .section-wrapper {
    padding: 20vw 0 0;
  }
  .section-contact {
    padding: 20vw 0;
  }
  #wwa .bg-map,
  #feature,
  #special {
    padding-bottom: 14vw;
  }
  .contents-wrap {
    width: 84%;
  }
  .flex-wrap {
    flex-flow: column;
  }
  .flex-wrap > .w40 {
    width: 100%;
  }
  .flex-wrap > .w40:nth-child(even) {
    margin-top: 10vw;
    padding-bottom: 10vw
  }
  .contents-wrap2 {
    max-width: inherit;
  }
  #wwa .bg-map {
    background-position: center top;
    background-size: 100%;
  }
  .img-area figure img {
    width: 90%;
  }
  .img-area .img-small {
    right: -5vw;
    bottom: -5vw;
  }
  #data ul {
    flex-flow: column;
  }
  #data ul li {
    padding: 40px;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items:center;
  }
  #feature ul li,
  #feature ul li:nth-child(1),
  #feature ul li:nth-child(3){
    width: 100%;
    margin-top: 10vw;
  }
  #data ul li h3 {
    width: 36%;
  }
  #data ul li p {
    width: 60%;
  }
  #data ul li p {
    padding-left: 10vw;
    text-align: right;
  }
  
  .section-contact .contact-txt-area {
    flex-flow: column;
  }
  .section-contact .contact-txt-area h2,
  .section-contact .contact-txt-area .links {
    width: 100%;
  }
  .section-contact .contact-txt-area h2 {
    padding-bottom: 2vw;
    margin-bottom: 8vw;
    border-bottom: #ebebe5 solid 2px;
  }
  .section-contact .contact-txt-area .links {
    padding-left: 0;
    border: none;
  }
  .section-contact .contact-txt-area ul {
    flex-flow: column;
  }
  .section-contact .contact-txt-area ul li {
    width: 100%;
  }
  .section-contact .contact-txt-area ul li:first-child {
    margin-bottom: 2vw;
  }
  .section-contact .contact-txt-area ul li:nth-child(2) {
    margin-left: 0;
  }
  footer{
    padding-bottom: 30vw;
  }
  .footer-inner {
    padding: 0;
  }
  .footer-inner .left-area,
  .footer-inner .center-area {
    width: 90%;
    margin-top: 5vw;
  }
  .center-area ul {
    justify-content: center;
  }
  .footer-inner h2,
  .footer-inner p {
    text-align: center;
  }
  .center-area ul li:first-child {
    padding-left: 16px;
  }
  .fix-bnr {
    width: 100%;
    bottom: 0;
    right: inherit;
    left: 0;
    padding: 5vw;
  }
  .fix-bnr a {
    margin: 0 auto;
    width: fit-content;
  }
  
  #lower .mainvisual-wrap {
    height: 53vh;
  }
  
  
}
@media only screen and (max-width: 520px) {
  header h1 {
    width: 60%;
  }
  .mainvisual-wrap .mv-top,
  .mainvisual-wrap .mv-btm {
    max-width: 200%;
  }
  .chracters {
    width: 74%;
  }
  .chracters-top {
    margin-bottom: 50px;
  }
  .ttl-wrap h2 .txt-eng {
    margin-bottom: 10px;
  }
  .ttl-wrap h2 .txt-eng:before {
    left: -2.5em;
  }
  #wwa .txt-area p {
    margin: 30px 0;
  }
  #feature ul li p {
    margin: 0;
  }
  #special {
    background-attachment: inherit;
    background-position: center center;
  }
  .btn {
    width: 100%;
  }
  .section-contact .contact-txt-area {
    padding: 10vw;
  }
  .footer-inner .center-area {
    margin-top: 10vw;
  }
  .center-area ul {
    flex-flow: column;
  }
  .center-area ul li {
    padding-bottom: 10px;
  }
  .footer-inner h2 {
    width: 50%;
    margin: 0 auto;
  }
  .mainvisual-ttl {
    top: 54%;
  }
}


/*special*/
#page-special {
}
#page-special .mainvisual-wrap,
#page-special .mainvisual-wrap .mainvisual {
  height: 64vh;
}
#page-special .mainvisual-wrap .mainvisual img {
  max-height: 64vh;
  width: 100%;
  min-width: 1485px;
}
.txt-pagettl {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  width: 90%;
}
.txt-pagettl h1 {
  text-align: center;
  font-size: 2rem;
}
.txt-pagettl h1 .txt-eng {
  display: block;
  color: #e3562b;
  font-size: 4.6rem;
  letter-spacing: 0.25em;
}
#page-special article {
  background: url("/image/special/bg.png") repeat-y #FFF;
  background-size: contain;
  padding-bottom: 16vw;
}
#page-special article * {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  line-height: 1.9 !important;
}
#page-special .contents-wrap {
  max-width: 1340px;
}
#page-special .section-intro .contents-wrap {
  max-width: 1125px;
}
#page-special .section-intro .contents-wrap2 {
  width: 96%;
  max-width: 1650px;
}
#page-special .section-wrapper {
  background: none;
  padding-top: 16vw;
}
#page-special .section-intro {
  text-align: center;
  padding-top: 10vw;
}
#page-special .section-intro .txt-center {
  font-weight: 600;
}
#page-special .section-wrapper .contents-wrap h2 {
  font-size: 2.6rem;
  position: relative;
  text-align: center;
  margin-top: 5vw;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  line-height: 1 !important;
}
#page-special .section-wrapper .contents-wrap .txt-bg {
  font-size: 6.4rem;
  font-style: italic;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit- transform: translateX(-50%);
  top: 0;
  z-index: 0;
  line-height: 1.4 !important;
  color: #fcdca3;
  white-space: nowrap;
  margin-top: -0.8em;
}
#page-special .section-wrapper .contents-wrap h2 .txt-bg .color-gr {
  color: #ddedd2;
  line-height: 1.4 !important;
}
#page-special .section-wrapper .contents-wrap h2 .txt-bg.txt-bg-color_w {
  color: #f9e89e;
} 
#page-special .section-wrapper .contents-wrap .txt-jp {
  position: relative;
  z-index: 5;
  line-height: 1.4 !important;
}
#page-special .section-intro .contents-wrap h2 {
  font-size: 1.9rem;
  margin-top: 0;
}
#page-special .section-intro .contents-wrap .txt-center {
  font-size: 1.6rem;
}
.list-baloon {
  margin: 7.5vw 0;
  align-items:stretch;
}
.list-baloon li {
  background-color: #413e3d;
  width: 26%;
  padding: 50px 30px;
  box-sizing: border-box;
  color: #FFF;
  display: flex;
  align-items: center;
  position: relative;
}
.list-baloon li span {
  width: 100%;
  color: #FFF;
  font-weight: 600;
}
.list-baloon li:before{
  content: "";
  display: block;
  background-color: #413e3d;
  height: calc(60px / 2);
  width: 60px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit- transform: translateX(-50%);
  bottom: -29px;
}
.intro-flex-box {
  margin-top: 10vw;
  justify-content: flex-start;
}
.intro-flex-box .img-area,
.intro-flex-box .txt-area {
  width: 50%;
  box-sizing: border-box;
}
.intro-flex-box .img-area {
  padding-right: 4%;
}
.intro-flex-box .txt-area {
  width: 38%;
  padding-left: 5%;
  text-align: left;
}
#page-special article .intro-flex-box .txt-area h3 {
  font-size: 1.6rem;
}
.intro-flex-box .txt-area img {
  display: block;
  margin-bottom: 20px;
}
#page-special article .btn {
  width: 100%;
  text-align: center;
  padding: 30px;
  background: linear-gradient(to right, #f7ae00, #fcc700);
  font-size: 1.4rem;
  color: #221815;
}
#page-special article .btn:after {
  display: none;
}

.section-about .flex-wrap {
  margin-top: 6vw;
}
.section-about .img-area,
.section-about .txt-area {
  width: 46%;
}
.section-about .txt-area {
  width: 42%;
}
#page-special .section-about .flex-wrap:nth-child(even) .img-area {
  order: 1;
}

#page-special article .section-about .txt-area .txt-num {
  display: block;
  line-height: 1 !important;
  margin-bottom: 20px;
  color: #fcdca3;
  font-style: italic;
  font-size: 6.4rem;
  margin-left: -40px;
}
#page-special article .section-about .txt-area h3 {
  font-size: 1.6rem;
  line-height: 1.7 !important;
}
#page-special .section-wrapper.section-method {
  background-color: #f2ca1c;
  margin-top: 14vw;
  padding: 14vw 0 10vw;
}
#page-special .section-wrapper .txt-intro {
  margin: 4vw 0 !important;
  font-weight: 700 !important;
  font-size: 1.2rem;
}
#page-special .section-wrapper .txt-intro.txt-intro2 {
  margin: 2vw 0 !important;
}
.bg-bl,.bg-wh {
  background: url("/image/special/bg_ttl_bk.png") no-repeat center center;
  background-size: cover;
  padding: 20px;
  text-align: center;
  color: #FFF;
  margin-top: 5vw;
}
.bg-wh {
  background: url("/image/special/bg_ttl_wh.png") no-repeat center center;
  background-size: cover;
  color: #2f2f2f;
}
#page-special .section-wrapper p {
  font-weight: 400;
  margin: 3vw 0;
}
#page-special .section-wrapper.section-about p {
  font-weight: 600;
}
#page-special .section-wrapper p:last-child {
  margin-bottom: 0;
}
#page-special .section-wrapper .txt-bg-y {
  font-size: 2.3rem;
  font-style: italic;
  background-color: #f2ca1c;
  color: #f9e89e;
  padding: 5px 10px;
  line-height: 1 !important;
  margin-top: 8vw;
}
#page-special .section-wrapper .txt-bg-y.txt-bg-g {
  background-color: #c4daaa;
  color: #dde9ca;
}
#page-special .section-wrapper h4 {
  margin: 3vw 0 1vw;
  font-size: 1.7rem;
}
#page-special .section-wrapper.section-merit p {
  margin-top: 0;
}
h3.bg-line {
  border-left: #333 2px solid;
  padding: 10px 20px 12px 40px;
  font-size: 1.6rem;
  position: relative;
}
h3.bg-line:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #333;
  position: absolute;
  left: 0;
  bottom: 0;
}
#page-special .section-wrapper .contents-wrap .txt-bg.txt-bg-num {
  font-size: 5.4rem;
  left: 40px;;
  top: 50%;
  color: #fde8c1;
  transform: none;
  -webkit- transform: none;
}
#page-special ol {
  list-style: decimal;
  padding-left: 1.8em;
}

#privacy .date-txt {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8rem;
  margin: 0;
  line-height: 2;
  font-weight: 300;
}

@media only screen and (max-width: 768px) {
  #page-special .mainvisual-wrap .mainvisual img {
    height: 100%;
    min-width: 100%;
    object-fit: cover;
  }
  .txt-pagettl h1 .txt-eng {
    font-size: 1.6rem;
  }
  .txt-pagettl h1 {
    font-size: 1rem;
  }
  #page-special .section-intro .contents-wrap h2 {
    line-height: 1.5 !important;
    font-size: 0.9rem;
    padding-left: 20px;
    padding-right: 20px;
  }
  #page-special article .txt-area p,
  #page-special article .section-point p,
  #page-special .section-wrapper.section-method p,
  #page-special .section-wrapper.section-merit p{
    font-size: 0.6rem;
  }
  #page-special article .section-point p.txt-intro,
  #page-special .section-wrapper.section-method p.txt-intro,
  #page-special .section-wrapper.section-merit p.txt-intro{
    font-size: 0.65rem;
  }
  .list-baloon li {
    width: 100%;
    margin-bottom: 40px;
    padding: 30px;
    font-size: .9rem;
  }
  .list-baloon li br {
    display: none;
  }
  #page-special .section-wrapper {
    padding-top: 30vw;
  }
  #page-special .section-intro .contents-wrap .txt-center {
    font-size: .9rem;
  }
  #page-special .section-intro .contents-wrap .txt-center br {
    display: none;
  }
  .intro-flex-box .img-area, .intro-flex-box .txt-area {
    width: 100%;
    padding: 0;
  }
  #page-special article .intro-flex-box .txt-area h3 {
    text-align: center;
    font-size: 1rem;
  }
  .intro-flex-box .txt-area img {
    margin-bottom: 0;
  }
  #page-special article .btn {
    margin-top: 30px;
    font-size: 0.9rem;
  }
  #page-special .section-wrapper .contents-wrap .txt-bg,
  #page-special article .section-about .txt-area .txt-num{
    font-size: 2rem;
  }
  #page-special .section-wrapper .contents-wrap h2 {
    font-size: 1rem;
  }
  #page-special .img-area,
  #page-special .txt-area{
    width: 100%;
  }
  #page-special .txt-area {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  #page-special .flex-wrap:last-child .txt-area {
    margin-bottom: 0;
  }
  #page-special article .section-about .txt-area h3,
  #page-special .section-wrapper h4 {
    font-size: 0.9rem;
  }
  #page-special .section-wrapper .contents-wrap h2 {
    width: 90vw;
    margin: 0 calc(50% - 45vw);
  }
  #page-special article .section-point h3 {
    margin-top: 30px;
  }
  #page-special .section-wrapper .contents-wrap .txt-jp {
    font-size: 0.9rem;
    line-height: 1.4 !important;
  }
  #page-special article .section-point .contents-wrap .txt-jp {
    line-height: 0 !important;
  }
  #page-special article .section-about .txt-area .txt-num {
    margin-left: 0;
  }
  #page-special .section-about .flex-wrap:nth-child(even) .img-area {
    order: 0;
  }
  #page-special .section-wrapper .txt-intro {
    line-height: 1.6 !important;
    font-size: 0.7rem;    
  }
  #page-special .section-wrapper .txt-intro br {
    display: none;
  }
  #page-special article .bg-bl, 
  #page-special article .bg-wh {
    font-size: 0.9rem;
    line-height: 1.4 !important;
  }
  #page-special article h3.bg-line {
    padding: 20px;
    line-height: 1.1 !important;
    padding-top: 0;
  }
  #page-special .section-wrapper .contents-wrap .txt-bg.txt-bg-num {
    font-size: 2.4rem;
    left: 20px;
  }
  #page-special ol {
    width: 100%;
    order: 1;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #page-special ol li {
    width: 50%;
    padding: 10px 0 0;
  }
}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

