﻿@charset "utf-8";
/*====================================================================================================

  Layout

====================================================================================================*/


/*----------------------------------------------------------------------------------------------------

  expression
  
----------------------------------------------------------------------------------------------------*/
.lo {
  min-height: 100vh;
  position: relative;
}
.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width:1284px) {
  .inner {
    width: calc(100% - 84px);
    margin: 0 42px;
  }
}
.section-title {
  font-size: 215%;
  text-align: center;
  margin-bottom: 48px;
}
.section-title .section-title-icon {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width:750px) {
  .section-title {
    font-size: 175%;
  }
}


/*----------------------------------------------------------------------------------------------------

  Main visual
  
----------------------------------------------------------------------------------------------------*/
#mainvisual {
  background-image: url("../image/mainvisual-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100dvh;
  position: relative;
}
#mainvisual .mes_box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 780px;
  height: 424px;
  background-image: url("../image/mainvisual-img01.png");
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
}
#mainvisual .page-title {
  width: 719px;
  margin: -73px auto 0;
}
#mainvisual .intro {
  font-size: 130%;
  letter-spacing: .1ex;
  line-height: 1.8;
  margin-top: 36px;
  max-width: 780px;
}
#mainvisual .intro .open {
  max-width: 600px;
  margin: .5em auto 0;
  padding: .5em 1em;
  background-color: rgba(255,255,255,.25);
  border: 2px solid #ff4c4c;
  border-radius: .75em;
  box-sizing: border-box;
  color: #ff4c4c;
  font-weight: bold;
}


#mainvisual .scrolldown {
  position: absolute;
  left: 50%;
  bottom: 20px;
  height: 80px;
}
#mainvisual .scrolldown span {
  position: absolute;
  left: -1.5em;
  top: -2em;
  color: #ff4c4c;
  font-weight: bold;
}
#mainvisual .scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 60px;
  background: #ff4c4c;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
@media screen and (max-width:810px) {
  #mainvisual .page-title {
    width: 480px;
    margin: -143px auto 0;
  }
  #mainvisual .intro {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width:750px) {
  #mainvisual .intro {
    font-size: 100%;
  }
}


/*----------------------------------------------------------------------------------------------------

  nav
  
----------------------------------------------------------------------------------------------------*/
.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
}
.navCont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 732px;
  height: 84px;
  background-color: #fff;
  border-bottom: 1px solid #eaeaea;
  box-sizing: border-box;
}
.navCont h1 {
  width: 366px;
  margin-left: 36px;
}
.navArea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 960px;
}
.menu {
  position: relative;
  margin: 0 auto;
}
.menu > li {
  list-style: none;
  float: left;
  cursor: pointer;
  margin-right: 3em;
  font-size: 130%;
}
.menu > li a {
  position: relative;
  display: inline-block;
  line-height: 2;
  text-align: center;
  text-decoration: none;
  color: #1b1b1b;
  white-space: nowrap;
}
.menu > li a::after {
  position: absolute;
  left: 0;
  bottom: -18px;
  content: '';
  width: 100%;
  height: 4px;
  background: #ff4c4c;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
.menu > li a:hover::after, .menu > li.active a::after {
  transform: scale(1, 1);
}
.menu li:last-child {
  margin-right: 0;
}
.menu > li a:hover, .menu > li.active a {
  color: inherit;
}
.navArea .inquiry-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 84px;
  background-color: #ff99af;
  box-sizing: border-box;
  text-align: center;
  color: #fff !important;
  font-size: 130%;
  text-decoration: none;
  transition: .3s all;
}
.navArea .inquiry-btn:hover {
  background-color: #FFB2C2;
}
.navArea .inquiry-btn .inquiry-btn-icon {
  display: inline-block;
  width: 25px;
  margin-right: .5em;
}
@media screen and (max-width:1284px) {
  .navCont h1 {
    width: 244px;
    margin-left: 25px;
  }
  .navArea {
    width: 560px;
  }
  .menu > li {
    margin-right: 1em;
    font-size: 100%;
  }
  .menu > li a::after {
    bottom: -25px;
  }
  .navArea .inquiry-btn {
    width: 240px;
    font-size: 100%;
  }
}
@media screen and (max-width:920px) {
  .navArea {
    width: 380px;
  }
  .navArea .inquiry-btn {
    width: 84px;
  }
  .navArea .inquiry-btn .inquiry-btn-icon {
    width: 40px;
    margin-right: 0;
  }
  .navArea .inquiry-btn span {
    display: none;
  }
}
@media screen and (max-width:750px) {
  .navCont h1 {
    line-height: 1;
  }
  .navArea {
    width: 460px;
  }
  .menu > li {
    font-size: 75%;
    letter-spacing: 0.1ex;
  }
}


/*-----------------------------------------------------------------------------------
  SPnav
-----------------------------------------------------------------------------------

html.openNav_on { overflow-y:hidden; }

#openNav-warp {
    width:0;
    height:0;
    position:fixed;
    top:0;
    right:0;
    z-index:2;
    overflow:hidden;
}
#openNav-warp.on {
    width:100%;
    height:100%;
    top:0;
    right:0;
    overflow-y:auto;
    background-color:#fff;
}
.lte-ie8 #openNav-warp {
    display:none !important;
}
.lte-ie8 #openNav-warp.on { min-width:1100px; }

#openNav_sw {
    width:100%;
    height:100vh;
    filter:alpha(opacity=0);
    opacity:0;
    -moz-opacity:0;
    transition:opacity 0.2s ease;
}
#openNav-warp.on #openNav_sw {
    filter:alpha(opacity=100);
    opacity:1;
    -moz-opacity:1;
}
#openNav {
    height:100%;
    background-color:#4d3930;
}
#openNav a { transition:opacity 0.2s ease; }
#openNav a,
#openNav a:visited { color:#fff; text-decoration:none; }
#openNav nav {
    width:100%;
    padding:7rem 1.5rem 2rem 1.5rem;
    font-size:120%;
    display: block;
    box-sizing: border-box;
}
#openNav nav > ul.mnav {
    list-style:none;
}
#openNav nav > ul.mnav > li {
    width:100%;
}
#openNav nav > ul.mnav > li > a {
    border-bottom:1px solid rgba(255,255,255,0.2);
    width:100%;
    padding:0.7rem 1rem;
    display:block;
    font-size:118.8%;
    transition: 0.2s;
    box-sizing: border-box;
}
#openNav nav > ul.mnav > li:first-child a {
    border-top:1px solid rgba(255,255,255,0.2);
}
#openNav nav > ul.mnav > li.active > a,
#openNav nav > ul.mnav > li > a:hover {
    background-color:rgba(255,255,255,0.2);
}
#openNav .nav_info {
    width: calc(100% - 3em);
    padding: 1.5rem 2rem;
    margin: 1.5em;
    font-size: 112.5%;
    box-sizing: border-box;
    text-align: center;
    background-color: rgba(255,255,255,1.00);
}

/* ボタン ----------------------------------------

#openNav_btn {
    display: none;
    cursor:pointer;
    float: right;
    width:80px;
    height:80px;
    text-align:center;
    color:#fff;
    background-color:#4d3930;
    transition: 0.2s all;
}

#openNav_btn:hover {
    background-color:#765b4f;
}

#openNav_btn.close {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
}

#openNav_btn.fixed { top:0; }
#openNav-warp.on #openNav_btn { position:absolute; }

.lte-ie8 #openNav_btn {
    display:none !important;
}

.openNav_btn_ic,
.openNav_btn_ic span,
.openNav_btn_ic span:before,
.openNav_btn_ic span:after {
    display:inline-block;
    transition:transform .4s, opacity .4s;
    box-sizing:border-box;
}
.openNav_btn_ic {
    position:relative;
    width:26px;
    height:20px;
    margin-top:22px;
}
  
.openNav_btn_ic span,
.openNav_btn_ic span:nth-of-type(2),
.openNav_btn_ic span:nth-of-type(3) {
    position:absolute;
    left:0;
    width:100%;
    height:2px;
    background-color:#fff;
}
.openNav_btn_ic span:nth-of-type(1) {
    top:0;
}
.openNav_btn_ic span:nth-of-type(2) {
    top:9px;
}
.openNav_btn_ic span:nth-of-type(3) {
    bottom:0;
}
  
#openNav_btn.close .openNav_btn_ic span:nth-of-type(1) {
    -webkit-transform:translateY(9px) rotate(-315deg);
    transform:translateY(9px) rotate(-315deg);
}
#openNav_btn.close .openNav_btn_ic span:nth-of-type(2) {
    opacity:0;
}
#openNav_btn.close .openNav_btn_ic span:nth-of-type(3) {
    -webkit-transform:translateY(-9px) rotate(315deg);
    transform:translateY(-9px) rotate(315deg);
}

.preload .openNav_btn_ic,
.preload .openNav_btn_ic span,
.preload .openNav_btn_ic span:before,
.preload .openNav_btn_ic span:after {
    -webkit-transition:none !important;
    -moz-transition:none !important;
    -ms-transition:none !important;
    -o-transition:none !important;
    transition:none !important;
}

@media print {
    #openNav_btn { display:none !important; }
}


/*----------------------------------------------------------------------------------------------------

  greeting
  
----------------------------------------------------------------------------------------------------*/
#greeting {
}
#greeting .greeting-bg {
  padding: 84px 0;
  background-image: url("../image/about-bg01.png"), url("../image/about-bg02.png"), url("../image/about-bg03.png");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: right 20px top, left center, right 240px bottom;
}
#greeting p {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 112.5%;
  line-height: 2;
  letter-spacing: .1ex;
}
#greeting .greeting-info {
  width: 100%;
  border-spacing: 0;
  margin-top: 36px;
}
#greeting .greeting-info th{
  border-bottom: solid 2px #ff99af;
  padding: 10px 0;
}
#greeting .greeting-info td{
  border-bottom: solid 2px #ddd;
  text-align: center;
  padding: 10px 0;
}
@media screen and (max-width:900px) {
  #greeting p {
    text-align: left;
  }
  #greeting p .txt-id {
    display: inline;
  }
}


/*----------------------------------------------------------------------------------------------------

  info
  
----------------------------------------------------------------------------------------------------*/
#info {
  padding: 60px 0 84px;
  background-color: #fffaf7;
}
#info a, #info a:visited, #info a:hover {
  color: inherit;
  text-decoration: none;
}
#info .info-list {
  list-style: none;
}
#info .info-list li {
  border-bottom: 1px solid #ccc;
}
#info .info-list li a, #info .info-list li .nolink {
  display: flex;
  justify-content: flex-start;
  padding: .75em 0;
}
#info .info-list li .date {
  display: block;
  width: 10em;
  text-align: center;
  margin-right: 1em;
  font-size: 0.88em;
}
#info .info-list li .date span {
  width: 10em;
  display: inline-block;
  background-color: #ff99af;
  color: #fff;
}
#info .info-list li .ttl {
  display: block;
  width: calc(100% - 11em);
  transition: .3s all;
}
#info .info-list li a:hover .ttl {
  color: #ff99af;
}
@media screen and (max-width:750px) {
  #info .info-list li a, #info .info-list li .nolink {
    flex-wrap: wrap;
  }
  #info .info-list li .date {
    margin-right: 0;
    margin-bottom: .5em;
  }
  #info .info-list li .ttl {
    width: 100%;
  }
}


/*----------------------------------------------------------------------------------------------------

  about
  
----------------------------------------------------------------------------------------------------*/

#about {
  padding: 168px 0 84px;
  margin-top: -84px;
}

#about .about-content {
  padding: 36px;
  background-color: #fffaf7;
}
#about .about-content h3 {
  border-bottom: 2px solid #ff99af;
  margin: 0 0 1em;
}

#about .soudan {
  margin-bottom: 60px;
}

#about .problem {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
#about .problem::after {
  display: none;
}
#about .problem-desc {
  width: calc(100% - 386px);
}
#about .problem-desc ul {
  list-style: none;
  margin: .5em 0;
}
#about .problem-desc ul li::before {
  content: "●";
  color: #ff99af;
  margin-right: .5em;
}
#about .problem-img {
  width: 350px;
}

#about .approach h4 {
  color: #D84B6A;
  margin-bottom: .5em;
}
#about .approach-list {
  display: flex;
  justify-content: space-between;
}
#about .approach-list::after {
  display: none;
}
#about .approach dl {
  width: calc(33.33% - 16px);
  padding: 1em;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #ff99af;
  border-radius: .75em;
  text-align: center
}
#about .approach dl:last-of-type {
  margin-bottom: 0;
}
#about .approach dt {
  font-weight: bold;
  margin-bottom: .5em;
}
#about .approach dd {
  line-height: 1.4;
}
#about .approach .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
#about .approach .tel img {
  display: inline-block;
  width: 22px;
  margin-right: .5em;
}
#about .approach .mailform-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  margin: 0 auto;
  background-color: #ff99af;
  border-radius: 12px;
  color: #fff;
  font-size: 115%;
  font-weight: bold;
  text-decoration: none;
  transition: .3s all;
}
#about .approach .mailform-btn:hover {
  background-color: #FFB2C2;
}
#about .approach .mailform-btn .mailform-btn-icon {
  display: inline-block;
  width: 24px;
  margin-right: .5em;
}
@media screen and (max-width:1100px) {
  #about .soudan {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 48px;
  }
  #about .problem {
    flex-wrap: wrap;
  }
  #about .problem-desc {
    width: 100%;
    margin-bottom: 24px;
  }
  #about .problem-img {
    display: none;
  }
  #about .approach-list {
    flex-wrap: wrap;
  }
  #about .approach dl {
    width: 100%;
    margin-bottom: 24px;
  }
  #about .approach dl:last-of-type {
    margin-bottom: 0;
  }
  #about .approach .mailform-btn {
    max-width: 480px;
  }
}
@media screen and (max-width:750px) {
  #about .approach .tel img {
    width: 28px;
  }
  #about .approach .mailform-btn {
    height: 80px;
  }
  #about .approach .mailform-btn .mailform-btn-icon {
    width: 36px;
  }
}


/*----------------------------------------------------------------------------------------------------

  donation
  
----------------------------------------------------------------------------------------------------*/
#donation {
  padding: 84px 0;
  text-align: center;
  background-image: url("../image/donation_bg.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
}
#donation p {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 200%;
}
#donation .donation-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 80px;
  margin: 24px auto 84px;
  background-color: #ff4c4c;
  border-radius: 12px;
  color: #fff;
  font-size: 130%;
  font-weight: bold;
  text-decoration: none;
  transition: .3s all;
}
#donation .donation-btn:hover {
  background-color: #FF6868;
}
#donation .donation-btn .donation-btn-icon {
  display: inline-block;
  width: 24px;
  margin-right: .75em;
}
@media screen and (max-width:750px) {
  #donation p {
    font-size: 175%;
  }
  #donation .donation-btn {
    font-size: 115%;
    margin-bottom: 0;
  }
  #donation .donation-btn .donation-btn-icon {
    width: 30px;
  }
}


/*----------------------------------------------------------------------------------------------------

  profile
  
----------------------------------------------------------------------------------------------------*/
#profile {
  padding: 168px 0 84px;
  margin-top: -84px;
  background-image: url("../image/prof_bg.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
}
#profile .profile-wrap {
  display: flex;
  justify-content: flex-start;
}
#profile .profile-img {
  display: block;
  width: 420px;
  height: auto;
  margin-right: 48px;
}
#profile .profile-content {
  width: calc(100% - 468px);
}
@media screen and (max-width:1100px) {
  #profile .profile-wrap {
    flex-wrap: wrap;
  }
  #profile .profile-img {
    margin: 0 auto 48px;
  }
  #profile .profile-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
}


/*----------------------------------------------------------------------------------------------------

  mailform
  
----------------------------------------------------------------------------------------------------*/
#mailform {
  padding: 84px 0;
  text-align: center;
  background-image: url("../image/mailform_bg.jpg");
  background-position: bottom right;
  background-repeat: no-repeat;
}
#mailform p {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 200%;
}
#mailform .mailform-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 80px;
  margin: 24px auto 0;
  background-color: #ff99af;
  border-radius: 12px;
  color: #fff;
  font-size: 130%;
  font-weight: bold;
  text-decoration: none;
  transition: .3s all;
}
#mailform .mailform-btn:hover {
  background-color: #FFB2C2;
}
#mailform .mailform-btn .mailform-btn-icon {
  display: inline-block;
  width: 24px;
  margin-right: .75em;
}
@media screen and (max-width:750px) {
  #mailform p {
    font-size: 150%;
    line-height: 1.6;
  }
  #mailform .mailform-btn {
    font-size: 115%;
  }
  #mailform .mailform-btn .mailform-btn-icon {
    width: 32px;
  }
}


/*----------------------------------------------------------------------------------------------------

  Footer
  
----------------------------------------------------------------------------------------------------*/
footer {
  width: 100%;
  background: url("../image/footer_bg.jpg") repeat center top;
  padding: 60px 0 36px;
  text-align: center;
}
footer a, footer a:visited, footer a:hover, .ua-pc footer a:hover {
  color: inherit;
  text-decoration: none;
}
footer .page-title {
  width: 472px;
  margin: 0 auto 36px;
}
footer .contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 130%;
  margin-bottom: 36px;
}
footer .contact-info .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 48px;
}
footer .contact-info .tel img {
  display: inline-block;
  margin-right: 1em;
}
footer .contact-info .opentime {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.2;
  text-align: left;
}
footer .contact-info .opentime img {
  display: block;
  margin-right: 1em;
}
footer .contact-info .opentime .mail {
  font-size: 75.0%;
}
footer .copyright {
  font-size: 87.5%;
}
@media screen and (max-width:820px) {
  footer .contact-info {
    flex-wrap: wrap;
  }
  footer .contact-info .tel {
    width: 100%;
    margin: 0 auto 24px;
  }
}
@media screen and (max-width:750px) {
  footer .contact-info {
    font-size: 115%;
  }
}


/*--------------------------------------------------------------------------------
  side-donation-btn
--------------------------------------------------------------------------------*/
.side-donation-btn {
  position: fixed;
  right: 0;
  top: 8.5vh;
  width: 54px;
  height: 200px;
  padding: 1.25em .75em;
  margin: 24px auto 0;
  background-color: #ff4c4c;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  box-sizing: border-box;
  color: #fff !important;
  font-size: 112.5%;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: .3s all;
}
.side-donation-btn:hover {
  background-color: #FF6868;
}
.side-donation-btn img {
  display: inline-block;
  width: 1em;
  margin-bottom: .5em;
}
@media screen and (max-width:750px) {
  .side-donation-btn {
    width: 60px;
    height: 240px;
    padding: 1em .5em;
    margin: 24px auto 0;
    font-size: 100%;
  }
  .side-donation-btn img {
    width: 24px;
  }
}


/*--------------------------------------------------------------------------------
  back to top
--------------------------------------------------------------------------------*/
.l-backtoTop-wrap {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 90;
  width: 100%;
  min-width: 700px;
  pointer-events: none;
  text-align: right;
}
.l-backtoTop {
  display: inline-block;
  pointer-events: auto;
  width: 88px;
  height: 88px;
  cursor: pointer;
}
.l-backtoTop-wrap.is-noFix {
  position: absolute;
  bottom: inherit;
  left: 0 !important;
}
.l-backtoTop__icon {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.l-backtoTop__icon:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-top: 7px;
  border-top: 1px solid #ff4c4c;
  border-right: 1px solid #ff4c4c;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.l-backtoTop__icon:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-top: 7px;
  border-top: 1px solid #ff4c4c;
  border-right: 1px solid #ff4c4c;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: border 0.2s ease-out;
}
.l-backtoTop-wrap.is-scrFt .l-backtoTop__icon:after {
  border-top-color: #fff;
  border-right-color: #fff;
}
@media screen and (max-width:640px) {
  .l-backtoTop-wrap {
    display: none !important;
  }
}


/*--------------------------------------------------------------------------------
  side-insta-btn
--------------------------------------------------------------------------------*/
.side-insta-btn {
  background:url("../image/ic-instagram.png") top no-repeat;
  position: fixed;
  left:30px;
  bottom: 30px;
  z-index: 90;
  width: 80px;
  height: 80px;
  cursor: pointer;
  display:block;
  text-indent:100%;
  white-space:nowrap;
  overflow:hidden;
}
.side-insta-btn:hover {
  opacity:0.7;
  transition:0.7;
}
/*--------------------------------------------------------------------------------
  fancybox
--------------------------------------------------------------------------------*/
.fancybox-slide {
  overflow: hidden !important;
  height: 85vh !important;
}
.fancybox-content {
  max-height: 85vh !important;
}
.compensate-for-scrollbar {
  margin-right: 0 !important;
}
.fancybox-button {
  background-color: #FF6868 !important;
  color: #fff !important;
}