@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;800&display=swap');
@import url("reset.css");

body {
  opacity: 0;
}
img {
  display: block;
  width: 100%;
  height: auto;
  font-feature-settings: normal;
}
#dorokare {
  overflow: hidden;
}

/* header */
.header-parts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 90px;
  padding: 0 40px;
  background: #fff;
  border-radius: 0 0 40px 0;
  z-index: 100;
}
.header-parts .page-title {
  position: relative;
  width: 130px;
  z-index: 103;
}
.header-parts .menu{
	position: relative;
	cursor: pointer;
  width: 30px;
  height: 28px;
  z-index: 103;
}
.header-parts .menu .inner{
  transition: all .6s;
  width: 30px;
  height: 28px;
}
.header-parts .menu span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 0;
  height: 4px;
  border-radius: 2px;
  background: #000;
  width: 100%;
}
	
.header-parts .menu span:nth-of-type(1) {
	top: 0;	
}
.header-parts .menu span:nth-of-type(2) {
	top: 12px;
}
.header-parts .menu span:nth-of-type(3) {
	top: 24px;
}
.header-parts.open .menu .inner{
	transform: rotate(360deg);
}
.header-parts.open .menu span:nth-of-type(1) {
  top: 3px;
  left: 0;
  transform: translateY(9px) rotate(-45deg);
}
.header-parts.open .menu span:nth-of-type(2) {
	opacity: 0;
}
.header-parts.open .menu span:nth-of-type(3){
  top: 24px;
  left: 0;
  transform: translateY(-12px) rotate(45deg);
}
/* menu open */
.header-parts .menu-modal {
  display: none;
  position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #daf2f7;
	z-index: 100;
  transition: none;
  z-index: 102;
}
.header-parts.open .menu-modal {
  padding: 120px 0 20px;
  overflow-y: auto;
}
.header-parts.open .menu-modal .inner {
  display: none;
  display: flex;
  justify-content: center;
  transition: none;
}
.header-parts.open .menu-modal .list {
  width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  border-radius: 10px;
  background: #fff;
}
.header-parts.open .menu-modal .list li {
  position: relative;
  border-bottom: 1px #daf2f7 solid;
}
.header-parts.open .menu-modal .list li a {
  display: block;
  position: relative;
  padding: 30px 5%;
  color: #333;
  font-weight: 600;
  font-size: 1.5em;
  text-align: center;
}
.header-parts.open .menu-modal .list li:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fffc00;
  opacity: 0;
  transition: .3s;
}
.header-parts.open .menu-modal .list li:hover:before {
  opacity: 1;
}


.sec {
  position: relative;
  margin-top: -200px;
  padding-top: 200px;
  z-index: 10;
}
.sec:before {
  display: block;
  content: "";
  position: absolute;
  top: 200px;
  left: 0;
  width: 100%;
  height: 100%; 
}
.sec.w:before {
  background: #fff;
}
.sec.y:before {
  background: #fdffc2;
}
.wave {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2000px;
  height: 200px;
}
.y .wave img {
  filter: brightness(0) saturate(100%) invert(92%) sepia(20%) saturate(506%) hue-rotate(5deg) brightness(107%) contrast(105%);
}
.w .wave img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(160deg) brightness(102%) contrast(105%);
}
.b .wave img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(91%) saturate(1193%) hue-rotate(175deg) brightness(107%) contrast(98%);
}
.sec .inner {
  position: relative;
  margin-top: -70px;
  z-index: 2;
}
.dotline {
  position: absolute;
  z-index: 1;
}
.sec-ttl {
  position: relative;
  text-align: center;
}
.sec-ttl:before {
  display: block;
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fffc00;
}
.sec-ttl .eng {
  display: block;
  position: relative;
  margin-bottom: 20px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 400;
  font-size: 60px;
}
.sec-ttl .jp {
  font-size: 1.25em;
}
.item {
  position: relative;
}
.item img {
  position: absolute;
}
.btn {
  position: relative;
  overflow: hidden;
  transition: ease .2s;
  width: 500px;
  height: 120px;
  border-radius: 250px;
}
.btn.blue {
  background: #1184c0;
}
.btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  color: #fff;
  font-weight: 600;
  font-size: 25px;
  text-align: center;
  z-index: 3;
}
.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #000;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.btn:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}
.btn a span {
  transition: .3s;
}
.btn:hover a span {
  display: inline-block;
  transform: translateY(-10px);
}
.btn img {
  display: block;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 12px;
}

/* fix-bnr */
.fix-bnr {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 200px;
  height: 200px;
  z-index: 10;
  transition: .3s;
}
.fix-bnr:hover {
  transform: translateY(-10px);
}
.fix-bnr a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 6px;
}
.fix-bnr a:before,
.fix-bnr a:after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.fix-bnr a:before {
  top: 10px;
  left: 10px;
  background: #fff;
  z-index: 1;
}
.fix-bnr a:after {
  top: 0;
  left: 0;
  border: 3px #000 solid;
  z-index: 2;
}
.fix-bnr a span {
  display: block;
  position: relative;
  line-height: 1.4;
  font-weight: 600;
  font-size: 1.063em;
  text-align: center;
  z-index: 3;
}
.fix-bnr a img {
  width: 40px;
  margin: 0 auto 15px;
}


/* footer */
.footer-parts {
  position: relative;
  padding: 50px 20px;
  background: #daf2f7;
  text-align: center;
}
.footer-parts dl dt {
  margin-bottom: 25px;
  font-weight: 600;
}
.footer-parts dl .sns-share {
  margin-bottom: 45px;
}
.footer-parts dl ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-parts dl ul li {
  transition: .3s;
}
.footer-parts dl .sns-list li {
  width: 40px;
  height: 40px;
  margin: 0 7px;
  border-radius: 50%;
  background: #000;
}
.footer-parts dl li:hover {
  transform: translateY(-5px);
}
.footer-parts dl .sns-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.footer-parts dl .sns-list li.twitter a img { width: 18px; }
.footer-parts dl .sns-list li.facebook a img { width: 12px; }
.footer-parts dl .sns-list li.line a img { width: 26px; }
.footer-parts dl .relation {
  margin-bottom: 35px;
}
.footer-parts dl .bnr-list li {
  width: 300px;
  margin: 0 6px 12px;
}
.footer-parts .text-link {
  margin-bottom: 50px;
}
.footer-parts .text-link li {
  margin: 14px 0;
}
.footer-parts .text-link li img {
  display: inline-block;
  width: 13px;
  margin-left: 5px;
  filter: brightness(0) saturate(100%) invert(0%) sepia(97%) saturate(0%) hue-rotate(43deg) brightness(91%) contrast(104%);
}

/* contact */
#contact {
  position: relative;
  padding-bottom: 130px;
}
#contact .sec-ttl {
  margin-bottom: 90px;
}
#contact .message {
  margin-bottom: 45px;
  font-size: 1.375em;
  text-align: center;
}
#contact .btn {
  margin: 0 auto;
}


@media all and (max-width: 1350px) {
  /* fix-bnr */
  .fix-bnr {
    bottom: 1.8vw;
    right: 1.8vw;
    width: 14vw;
    height: 14vw;
  }
  .fix-bnr a span {
    font-size: 1.4vw;
  }
  .fix-bnr a img {
    width: 2.85vw;
    margin: 0 auto 1vw;
  }

}

@media all and (max-width: 1000px) {
  /* header */
  .header-parts {
    width: 215px;
    height: 70px;
    padding: 0 30px;
    border-radius: 0 0 30px 0;
  }
  .header-parts .page-title {
    width: 100px;
  }


  .sec {
    margin-top: -100px;
    padding-top: 100px;
  }
  .sec:before {
    top: 100px;
  }
  .wave {
    width: 1000px;
    height: 100px;
  }
  .wave img {
    width: 1000px;
    height: 100px;
  }
  .sec .inner {
    margin-top: 10px;
  }
  .sec-ttl:before {
    top: -40px;
    width: 80px;
    height: 80px;
  }
  .sec-ttl .eng {
    margin-bottom: 20px;
    font-size: 50px;
  }
  .sec-ttl .jp {
    font-size: 1.125em;
  }
  .btn {
    width: 400px;
    height: 100px;
  }
  .btn a {
    font-size: 22px;
  }
  .btn img {
    right: 35px;
  }
  .btn:hover a span {
    transform: translateY(-5px);
  }

  
  /* fix-bnr */
  .fix-bnr {
    bottom: 1.8vw;
    right: 1.8vw;
    width: 18vw;
    height: 18vw;
    transition: none;
  }
  .fix-bnr a:before {
    top: 6px;
    left: 6px;
  }
  .fix-bnr a span {
    font-size: 1.9vw;
  }
  .fix-bnr a img {
    width: 4.5vw;
    margin: 0 auto 1.3vw;
  }
  

  /* footer */
  .footer-parts {
    padding: 50px 20px;
    background: #daf2f7;
    text-align: center;
  }
  .footer-parts dl dt {
    margin-bottom: 25px;
    font-weight: 600;
  }
  .footer-parts dl .sns-share {
    margin-bottom: 45px;
  }
  .footer-parts dl ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-parts dl ul li {
    transition: .3s;
  }
  .footer-parts dl .sns-list li {
    width: 40px;
    height: 40px;
    margin: 0 7px;
    border-radius: 50%;
    background: #000;
  }
  .footer-parts dl li:hover {
    transform: translateY(-5px);
  }
  .footer-parts dl .sns-list li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .footer-parts dl .sns-list li.twitter a img { width: 18px; }
  .footer-parts dl .sns-list li.facebook a img { width: 12px; }
  .footer-parts dl .sns-list li.line a img { width: 26px; }
  .footer-parts dl .relation {
    margin-bottom: 35px;
  }
  .footer-parts dl .bnr-list li {
    width: 280px;
    margin: 0 6px 12px;
  }
  
  /* contact */
  #contact {
    padding-bottom: 100px;
  }
  #contact .sec-ttl {
    margin-bottom: 60px;
  }
  #contact .message {
    margin-bottom: 30px;
    font-size: 1.063em;
  }
}


@media all and (max-width: 820px) {
  /* menu open */
  .header-parts.open .menu-modal {
    padding: 80px 0 20px;
  }
  .header-parts.open .menu-modal .list {
    max-width: 600px;
    width: 90%;
  }
  .header-parts.open .menu-modal .list li a {
    padding: 25px 5%;
    font-size: 1.125em;
  }

}

@media all and (max-width: 520px) {
  /* header */
  .header-parts {
    width: 150px;
    height: 50px;
    padding: 0 20px;
    border-radius: 0 0 20px 0;
  }
  .header-parts .menu {
    width: 25px;
    height: 20px;
   }
  .header-parts .menu .inner {
    transition: all .6s;
    width: 25px;
    height: 20px;
  }
  .header-parts .menu span {
    height: 2px;
  }
  .header-parts .menu span:nth-of-type(2) {
    top: 9px;
  }
  .header-parts .menu span:nth-of-type(3) {
    top: 18px;
  }
  .header-parts.open .menu span:nth-of-type(1) {
    top: -1px;
  }
  .header-parts.open .menu span:nth-of-type(3) {
    top: 20px;
  }
  .header-parts .page-title {
    width: 65px;
  }

  
  .sec {
    margin-top: -60px;
    padding-top: 60px;
  }
  .sec:before {
    top: 60px;
  }
  .sec .inner {
    margin-top: 40px;
  }
  .wave {
    width: 600px;
    height: 60px;
  }
  .wave img {
    width: 600px;
    height: 60px;
  }
  .sec-ttl .eng {
    margin-bottom: 15px;
    font-size: 45px;
  }
  .sec-ttl .jp {
    font-size: 1em;
  }
  .btn {
    width: 280px;
    height: 70px;
  }
  .btn a {
    font-size: 16px;
  }
  .btn img {
    right: 20px;
    width: 10px;
  }
  
  
  /* fix-bnr */
  .fix-bnr {
    bottom: 5px;
    right: 5px;
    width: calc(100% - 10px);
    height: 60px;
    border-radius: 30px;
    border: 2px #000 solid;
    background: #fff;
  }
  .fix-bnr a:before {
    display: none;
  }
  .fix-bnr a:after {
    display: none;
  }
  .fix-bnr a span {
    display: block;
    line-height: normal;
    font-size: 1.125em;
  }
  .fix-bnr a span br {
    display: none;
  }
  .fix-bnr a img {
    display: inline-block;
    width: 30px;
    margin: 0 10px 0 0 ;
    vertical-align: -3px;
  }

  
  /* footer */
  .footer-parts {
    padding: 40px 0 30px;
  }
  .footer-parts dl {
    padding: 0 5%;
  }
  .footer-parts dl dt {
    margin-bottom: 20px;
    font-size:0.875em;
  }
  .footer-parts dl .bnr-list li {
    width: 250px;
    margin: 0 0 10px;
  }
  .footer-parts .text-link {
    margin-bottom: 50px;
  }
  .footer-parts .text-link li {
    margin: 14px 0;
    font-size: 0.875em;
  }
  .footer-parts .text-link li img {
    width: 11px;
  }
  .footer-parts small {
    font-size: 0.75em;
  }
  
  /* contact */
  #contact {
    padding-bottom: 80px;
  }
  #contact .sec-ttl {
    margin-bottom: 60px;
  }
  #contact .message {
    margin-bottom: 20px;
    font-size: 0.938em;
  }
  
}


































