/*
Theme Name: dosakudo_theme
Author: Lis
Version: 1.01
*/


/*--------------------------------------------------------------
Basic
--------------------------------------------------------------*/
:root{
 --white01: #F0EFEA;
 --lime01: #D9FF1F;
 --lime02: #C9DF0A;
 --green01: #24646C;
 --green02: #D4E1E2;
 --green03: #A8C2C5;
 --green04: #7BA1A6;
 --green05: #51848A;
 --green06: #29565B;
 --navy01: #182A41;
 --darkgray01: #343434;
 --darkgray02: #696561;
 --black01: #13121B; 
}
body{
 min-height: 100vh;
 font-size: 1.6rem;
 line-height: 1.6;
 font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
 -webkit-font-smoothing: antialiased;
 -ms-overflow-style: none;
 scrollbar-width: none;
 background: var(--black01);
}
body::-webkit-scrollbar{
 display: none;
}
hr{
 box-sizing: content-box;
 margin: 10px 0;
}
a{
 text-decoration: none;
 background-color: transparent;
 color: currentColor;
 -webkit-text-decoration-skip: objects;
 transition: all .4s;
}
a:active,
a:hover{
 cursor: pointer;
}
input,
textarea{
 border: solid var(--white01) 2px;
 background-color: var(--white01);
}
input:focus,
textarea:focus{
 border: solid var(--green04) 2px;
 outline: none;
}
b,
strong{
 font-weight: 700;
 font-style: normal;
}
h1{
 font-weight: 700;
 font-size: 4rem;
 font-style: normal;
 margin: 1.5rem 0;
}
h2{
 font-weight: 500;
 font-size: 2.4rem;
 font-style: normal;
 margin: 1.2rem 0;
}
h3{
 font-weight: 700;
 font-size: 1.47rem;
 font-style: normal;
 margin: 1rem 0;
}
h4{
 font-weight: 700;
}
main{
 display: block;
 width: 100%;
 overflow-x: hidden;
}
.fo34{
 font-size: 3.4rem;
 font-weight: 700;
}



/*--------------------------------------------------------------
Header
--------------------------------------------------------------*/
#header-wrapper{
 position: fixed;
 width: 100%;
 height: 88px;
 z-index: 100;
}
.header-inner{
 width: 93vw;
 height: 68px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 background: rgba(19, 18, 27, 0.6);
 -webkit-backdrop-filter: blur(10px);
 backdrop-filter: blur(10px);
 margin: 10px auto;
 border-radius: 35px;
}
.site-logo{
 padding-left: 35px ;
}
.site-logo img{
 width: 90px;
 transition: .4s;
}
.site-logo img:hover{
 opacity: .7;
}
.header-inner ul{
 display: flex;
 width: 300px;
 gap: 10px;
 align-items: center;
 justify-content: flex-end;
 padding-right: 30px;
}
.contact-btn{
 display: flex;
 width: 185px;
 height: 41px;
 background: var(--lime01) url("/wp-content/uploads/2025/01/mail_b.svg") 31px no-repeat;
 background-size: 24px;
 border-radius: 100px;
 align-items: center;
 color: var(--black01);
 transition: .4s;
 font-size: 1.4rem;
 font-weight: 700;
 padding-left: 69px;
 transition: .4s;
}
@media (any-hover: hover){
 .contact-btn:hover{
  color: var(--white01);
  background: var(--green01) url("/wp-content/uploads/2025/01/mail_w.svg") 31px no-repeat;
  background-size: 24px;
 }
}
.contact-icon{
 display: none;
}
.open-btn{
 display: inline;
 position: relative;
 width: 50px;
 height: 50px;
 cursor: pointer;
 background: transparent;
}
.open-btn span{
 display: inline-block;
 transition: all .4s;
 position: absolute;
 left: 0;
 height: 2px;
 background-color: var(--white01);
}
.open-btn span:first-of-type{
 top: 22px;
 left: 13px;
 width: 60%;
}
.open-btn span:nth-of-type(2){
 top: 29px;
 left: 23px;
 width: 40%;
}
.open-btn.active span:first-of-type{
 top: 20px;
 left: 16px;
 transform: translateY(6px) rotate(-45deg);
 width: 50%;
}
.open-btn.active span:nth-of-type(2){
 top: 32px;
 left: 16px;
 transform: translateY(-6px) rotate(45deg);
 width: 50%;
}
.nav-menu{
 display: none;
}
.nav-menu.panel-active{
 display: block;
 position: fixed;
 z-index: 99;
 width: 380px;
 top: 88px;
 right: 3.5vw;
 padding: 45px 50px 23px;
 background: rgba(19, 18, 27, 0.8);
 -webkit-backdrop-filter: blur(5px);
 backdrop-filter: blur(5px);
 overflow-y: auto;
}
.nav-menu.panel-active ul li{
 display: flex;
 color: var(--white01);
 align-items: center;
 gap: 10px;
 margin-bottom: 22px;
}
.menu-midashi{
 position: relative;
 width: 97px;
 font-family: "Edu AU VIC WA NT Pre", cursive;
 font-size: 1.4rem;
 padding-left: 25px;
}
.menu-midashi::before{
 display: inline;
 position:absolute;
 top: 4px;
 left: 0;
 content:'';
 width: 15px;
 height: 15px;
 background: var(--lime01);
 clip-path: polygon(15% 15%, 50% 0, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0 50%);
}
.menu-link{
 font-size: 1.8rem;
 font-weight: 700;
 padding-bottom: 5px;
 position: relative;
}
.menu-link::before{
 background: var(--lime01);
 content: '';
 width: 100%;
 height: 1px;
 position: absolute;
 left: 0;
 bottom: 0;
 margin: auto;
 transform-origin: right top;
 transform: scale(0, 1);
 transition: transform .3s
}
@media (any-hover: hover){
 .menu-link:hover::before{
  transform-origin: left top;
  transform: scale(1, 1);
 }
}
.menu-line{
 width: 380px;
 height: 1px;
 background: var(--darkgray02);
 margin: 45px -50px;
}
.menu-sns img{
 height: 24px;
 margin-right: 15px;
 transition: .4s;
}
@media (any-hover: hover){
 .menu-sns img:hover{
  opacity: .6;
 }
}
@media (max-width: 570px){
 .site-logo{
  padding-left: 25px ;
 }
 .header-inner ul{
  gap: 5px;
  padding-right: 20px;
 }
 .contact-btn{
 display: none;
 }
 .contact-icon{
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background:no-repeat center/100% url("/wp-content/uploads/2025/01/contact-icon_l.svg");
  transition: .4s;
 }
 @media (any-hover: hover){
  .contact-icon:hover{
   background:no-repeat center/100% url("/wp-content/uploads/2025/01/contact-icon_g.svg");
  }
 }
}
@media (max-width: 430px){
 .nav-menu.panel-active{
  width: 93vw;
  padding: 40px 35px 18px;
 }
 .menu-line{
  width: 93vw;
  margin: 40px -35px 18px;
 }
}



/*--------------------------------------------------------------
Key Visual
--------------------------------------------------------------*/
#kv{
 width: 100%;
 background: var(--navy01);
}
.kv-box{
 display: flex;
 justify-content: center;
 align-items: center;
 padding: 0 0 4rem;
}
.kv-image{
 animation: zoomOut 1s ease-in-out forwards;
 margin: 75px 5px auto auto;
 flex-basis: 45%;
}
@keyframes zoomOut{
 0% {
  transform: scale(1.3);
  opacity: 0
 }
 100% {
  transform: scale(1);
  opacity: 1
 }
}
.kv-image img{
 width: 100%;
 object-fit: cover;
}
.kv-catch{
 color: var( --white01);
 font-size: 16px;
 line-height: 1.8;
 letter-spacing: 2px;
 margin: 70px auto 0;
 z-index: 3;
 flex-basis: 40%;
}
.kv-catch img{
 width: 450px;
}
.kv-catch p{
 margin: 40px 0;
}
.kv-br{
 display: block;
}
@media (max-width: 1305px){
 .kv-br{
  display: none;
 }
}
@media (max-width: 1126px){
 .kv-catch{
  flex-basis: 35%;
 }
 .kv-catch img{
  width: 95%;
 }
}
@media (max-width: 960px){
 .kv-box{
  display: block;
  padding-top: 75px;
 }
 .kv-image{
  margin: 0 auto;
 }
 .kv-image img{
  width: 100vw;
 }
 .kv-catch{
  width: 80vw;
  margin: 6rem auto 0;
 }
 .kv-catch img{
  width: 60%;
 }
}
@media (max-width: 580px){
 .kv-catch{
  width: 93vw;
  margin: 4rem auto 0;
 }
 .kv-catch img{
  width: 100%;
 }
}


/*--------------------------------------------------------------
Works
--------------------------------------------------------------*/
#works{
 width: 100%;
 background: var(--navy01);
}
.works-midashi{
 display: flex;
 justify-content: center;
 padding: 13rem 0 23rem;
 margin: 0;
}
.works-midashi h1{
 position: relative;
 color: var(--white01);
}
.works-midashi h1 span{
 position: absolute;
 bottom: 60px;
 right: 4px;
 font-family: "Edu AU VIC WA NT Pre", cursive;
 font-weight: 500;
 font-size: 2rem;
 transform: rotate(-15deg);
 color: var(--lime02);
}
.works-container{
 width: 100vw;
 display: flex;
 justify-content: center;
 gap: 21rem 3rem;
 background: var(--black01);
 flex-wrap: wrap;
 padding-bottom: 16rem;
}
.works-box{
 width: 320px;
 display: flex;
 flex-direction: column;
 align-items: center;
 color: var(--white01);
 font-size: 1.4rem;
 transition: .4s;
 margin-top: -15rem;
}
.works-image{
 width: 320px;
 overflow: hidden;
 border-radius: 20px;
 margin-bottom: 5px;
}
.works-image img{
 width: 100%;
 transition: .3s;
}
@media (any-hover: hover){
 .works-image a:hover img{
  transform: scale(1.05);
 }
 .works-box a:hover{
 color: var(--lime01);
 }
}
@media (max-width: 350px){
 .works-box,
 .works-image{
  width: 85vw
 }
}



/*--------------------------------------------------------------
About
--------------------------------------------------------------*/
#about{
 width: 100%;
 background: var(--black01);
 padding-bottom: 6rem;
}
.about-midashi{
 display: flex;
 justify-content: center;
 padding: 6.5rem 0 8rem;
 margin: 0;
}
.about-midashi h1{
 position: relative;
 color: var(--white01);
}
.about-midashi h1 span{
 position: absolute;
 bottom: 58px;
 right: 14px;
 font-family: "Edu AU VIC WA NT Pre", cursive;
 font-weight: 500;
 font-size: 2rem;
 transform: rotate(-15deg);
 color: var(--green01);
}
.about-intro{
 width: 628px;
 color: var(--white01);
 margin: 0 auto;
 padding: 0 0 7.8rem;
 text-align: center;
}
.about-container{
 width: 93vw;
 margin: 0 auto 8rem;
 display: flex;
 justify-content: center;
 align-items: center;
 flex-wrap: wrap;
 gap: 3rem;
}
.about-container:nth-child(even){
 flex-direction: row-reverse;
}
.about-container ul{
 color: var(--white01);
 list-style-type: none;
 flex-basis: 45%;
}
.about-container ul h2{
 padding-bottom: 4.6rem;
}
.about-container ul li{
 position: relative;
 color: var(--white01);
 font-size: 1.5rem;
 padding: 0 0 25px 25px;
}
.about-container ul li::before{
 position:absolute;
 top: 0;
 left: 0;
 content:'';
 width: 15px;
 height: 15px;
 background: var(--lime01);
 clip-path: polygon(15% 15%, 50% 0, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0 50%);
 margin: 5px 10px 0 0;
}
.about-image{
 flex-basis: 50%;
}
.about-image img{
 width: 100%;
 object-fit: cover;
}
@media (max-width: 1100px){
 .about-container ul h2{
  padding-bottom: 2rem;
 }
.about-container ul li{
 padding: 0 0 20px 25px;
}
}
@media (max-width: 896px){
 .about-container{
  flex-direction: column;
  align-items: center;
 }
 .about-container:nth-child(even){
  flex-direction: column;
  align-items: center;
 }
 .about-container ul{
  width: 80%;
  flex-basis: auto;
 }
 .about-image{
  width: 80%;
  flex-basis: auto;
 }
}
@media (max-width: 712px){
 .about-container ul{
  width: 100%;
 }
 .about-image{
  width: 100%;
 }
}
@media (max-width: 627px){
 .about-intro{
  width: 93vw;
 }
}



/*--------------------------------------------------------------
Flow
--------------------------------------------------------------*/
#flow{
 width: 100%;
 background: var(--black01);
}
.flow-midashi{
 padding: 6.8rem 0 7.2rem;
 margin-left: 5vw;
}
.flow-midashi h1{
 position: relative;
 color: var(--white01);
}
.flow-midashi h1 span{
 position: absolute;
 bottom: 60px;
 left: 2px;
 font-family: "Edu AU VIC WA NT Pre", cursive;
 font-weight: 500;
 font-size: 2rem;
 transform: rotate(-15deg);
 color: var(--green01);
}
.flow-wrapper{
 width: 93vw;
 padding-bottom: 10rem;
 margin: 0 auto;
}
.flow-container{
 width: 860px;
 height: 885px;
 position: relative;
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 9rem;
 margin: 0 auto;
}
.flow-box{
 width: 860px;
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 1rem;
}
.flow-process{
 width: 270px;
 color: var(--white01);
 text-align: center;
 flex-shrink: 0;
}
.flow-number{
 display: flex;
 width: 105px;
 height: 105px;
 clip-path: polygon(15% 15%, 50% 0, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0 50%);
 justify-content: center;
 align-items: center;
 z-index: 3;
 flex-shrink: 0;
}
.flow-number span{
 color: var(--black01);
 font-family: "Edu AU VIC WA NT Pre", cursive;
 font-size: 3.2rem;
 font-weight: 700;
 z-index: 4;
}
 dl:first-of-type .flow-number{
 background: var(--green02);
}
 dl:nth-of-type(2) .flow-number{
 background: var(--green03);
}
 dl:nth-of-type(3) .flow-number{
 background: var(--green04);
}
 dl:nth-of-type(4) .flow-number{
 background: var(--green05);
}
 dl:last-of-type .flow-number{
 background: var(--green06);
}
.flow-description{
 width: 485px;
 padding-left: 55px;
 font-size: 1.4rem;
 color: var(--white01);
 flex-shrink: 0;
}
.flow-line{
 width: 1px;
 height: 0;
 background: var(--white01);
 position:absolute;
 top: 0;
 left: 322px;
}
@media (max-width: 924px){
 .flow-container,
 .flow-box{
  width: 93vw;
  display: block;
 }
 .flow-container{
 height: 106.3rem;
}
 .flow-line{
  top: 0;
  left: 52px;
 }
 .flow-process{
  position:absolute;
  width: calc(95% - 105px);
  text-align: left;
  left: 125px;
 }
 .flow-number{
  position:absolute;
  left: 0;
 }
 .flow-description{
  position:absolute;
  width: calc(95% - 105px);
  left: 125px;
  padding-left: 0;
 }
 dl:first-of-type .flow-process{
  top: 22.5px;
 }
 dl:first-of-type .flow-number{
  top: 0;
 }
 dl:first-of-type .flow-description{
  top: 90px;
 }
 dl:nth-of-type(2) .flow-process{
  top: calc(22.5px + 240px);
 }
 dl:nth-of-type(2) .flow-number{
  top: 240px;
 }
 dl:nth-of-type(2) .flow-description{
  top: calc(90px + 240px);
 }
 dl:nth-of-type(3) .flow-process{
  top: calc(22.5px + calc(240px * 2));
 }
 dl:nth-of-type(3) .flow-number{
  top: calc(240px + 240px);
 }
 dl:nth-of-type(3) .flow-description{
  top: calc(90px + calc(240px * 2));
 }
 dl:nth-of-type(4) .flow-process{
  top: calc(22.5px + calc(240px * 3));
 }
 dl:nth-of-type(4) .flow-number{
  top: calc(240px + calc(240px * 2));
 }
 dl:nth-of-type(4) .flow-description{
  top: calc(90px + calc(240px * 3));
 }
 dl:last-of-type .flow-process{
  top: calc(22.5px + calc(240px * 4));
 }
 dl:last-of-type .flow-number{
  top: calc(240px + calc(240px * 3));
 }
 dl:last-of-type .flow-description{
  top: calc(90px + calc(240px * 4));
 }
}
@media (max-width: 379px){
 .flow-process h2{
 font-size: 1.8rem;
 }
}



/*--------------------------------------------------------------
Price
--------------------------------------------------------------*/
#price{
 width: 100%;
 position: relative;
 overflow: hidden;
}
#price::before{
 content: '';
 position: absolute;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
 background: var(--navy01);
 transform: skewY(3.6deg) translateY(10rem);
 z-index: -1;
}
.price-midashi{
 display: flex;
 justify-content: center;
 padding: 24rem 0 11rem;
 margin: 0;
}
.price-midashi h1{
 position: relative;
 color: var(--white01);
}
.price-midashi h1 span{
 position: absolute;
 bottom: 60px;
 left: 2px;
 font-family: "Edu AU VIC WA NT Pre", cursive;
 font-weight: 500;
 font-size: 2rem;
 transform: rotate(-15deg);
 color: var(--lime02);
}
.price-container{
 width: 93vw;
 margin: 0 auto;
 padding-bottom: 12rem;
}
.price-container ul{
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 3rem;
}
.price-container ul li{
 width: 350px;
 display: flex;
 flex-direction: column;
 background: var(--white01);
 color: var(--black01);
 align-items: center;
}
.price-container ul li h2{
 padding-top: 5rem;
}
.price-img{
 width: 350px;
 margin: 0.5rem 0 2rem;
}
.price-check{
 display: flex;
 flex-direction: column;
 padding-bottom: 4.8rem;
 gap: 0.9rem;
}
.check{
 display: flex;
 gap: 12px;
 font-size: 1.4rem;
 align-items: center;
}
.check img{
 width: 14px;
}
@media (max-width: 400px){
 .price-container ul li{
  width: 100%;
 }
 .price-img{
  width: 100%;
  object-fit: cover;
 }
}


/*--------------------------------------------------------------
Attention
--------------------------------------------------------------*/
#attention{
 width: 100%;
 background: var(--navy01);
 padding-bottom: 34rem;
}
.attention-midashi{
 padding: 6.5rem 0 10rem;
 margin-left: 5vw;
}
.attention-midashi h1{
 position: relative;
 color: var(--white01);
}
.attention-midashi h1 span{
 position: absolute;
 bottom: 60px;
 left: 4px;
 font-family: "Edu AU VIC WA NT Pre", cursive;
 font-weight: 500;
 font-size: 2rem;
 transform: rotate(-15deg);
 color: var(--lime02);
}
.attention-container{
 width: 70vw;
 color: var(--white01);
 margin: 0 auto;
}
.attention-container summary{
 position: relative;
 display: flex;
 align-items: center;
 list-style: none;
 padding: 1.8rem 3rem 1.8rem 3.5rem;
 border-top:1px solid var(--white01);
 cursor: pointer;
 font-size: 1.47rem;
 font-weight: 700;
}
.attention-container summary::-webkit-details-marker{
 display: none;
}
.attention-container summary::before{
 position: absolute;
 content: "";
 width: 15px;
 height: 15px;
 top: 23px;
 left: 1rem;
 background: var(--lime01);
 clip-path: polygon(15% 15%, 50% 0, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0 50%);
}
.attention-container summary::after{
 position: absolute;
 content: "";
 width: 10px;
 height: 10px;
 top: 23px;
 right: 1rem;
 border-right: 2px solid var(--white01);
 border-bottom: 2px solid var(--white01);
 box-sizing: border-box;
 transform: rotate(45deg);
 transition: top 0.4s ease-out, transform 0.4s ease-out;
}
.attention-container details[open] summary::after{
 top: 28px;
 transform: rotate(-135deg);
}
.attention-contents{
 width: 95%;
 padding: 0 1rem 2.2rem;
 font-size: 1.4rem;
}
.under-line{
 width: 100%;
 border-top: 1px solid var(--white01);
}
@media (max-width: 749px){
 .attention-container{
  width: 90vw
 }
.attention-contents{
 width: 90%
 }
}
@media (max-width: 499px){
 .attention-container{
  width: 93vw
 }
.attention-contents{
 width: 95%
 }
}


/*--------------------------------------------------------------
CV
--------------------------------------------------------------*/
#cv{
 width: 100%;
 position: relative;
}
#cv::before{
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 bottom: 0;
 right: 0;
 height: 45rem;
 background: var(--lime02);
 transform: skewY(-3.6deg) translateY(-10rem);
 z-index: 2;
}
.cv-container{
 position: relative;
 width: 550px;
 margin: 0 auto;
 padding-bottom: 4rem;
 color: var(--black01);
 z-index: 3;
}
.cv-catch{
 display: flex;
 justify-content: center;
 align-items: flex-end;
 gap: 3rem;
 margin: 0 auto;
}
.cvimg_pc{
 width: 80%;
 padding: 0.7rem 0;
}
.cvimg_sp{
 display: none;
}
.cv-catch::before,
.cv-catch::after{
 width: 1px;
 height: 33px;
 content: "";
 background: var(--black01);
}
.cv-catch::before{
 transform: rotate(-37.7deg) translateY(-6px);
}
.cv-catch::after{
 transform: rotate(37.7deg) translateY(-6px);
}
.cv-br{
 display: none;
}
.cv-description{
 width: 320px;
 font-size: 1.6rem;
 margin: 5rem auto 6rem;
 text-align: center;
}
.cv-contact-btn{
 display: flex;
 width: 187px;
 height: 42px;
 background: var(--black01) url("/wp-content/uploads/2025/01/mail_w.svg") 30px no-repeat;
 background-size: 24.3px;
 border-radius: 100px;
 align-items: center;
 color: var(--white01);
 transition: .4s;
 font-size: 1.4rem;
 font-weight: 700;
 padding-left: 70px;
 margin: 0 auto;
}
@media (any-hover: hover){
 .cv-contact-btn:hover{
  background: var(--green01) url("/wp-content/uploads/2025/01/mail_w.svg") 30px no-repeat;
  background-size: 24.3px;
 }
}
@media (max-width: 589px){
 #cv::before{
  height: 52rem;
 }
 .cv-container{
  width: 93vw;
 }
 .cv-catch{
  width: 85%;
  gap: 2rem;
 }
.cvimg_pc{
 display: none;
}
.cvimg_sp{
 display: block;
 width: 80%;
 padding: 1rem;
}
.cv-catch::before,
.cv-catch::after{
 height: 60px;
}
 .cv-br{
  display: block;
 }
}



/*--------------------------------------------------------------
Profile
--------------------------------------------------------------*/
#profile{
 width: 100%;
 background: var(--darkgray01);
 margin-top: -5rem;
}
.profile-midashi{
 padding: 30rem 0 6.6rem;
 margin-left: 5vw;
}
.profile-midashi h1{
 position: relative;
 color: var(--white01);
}
.profile-midashi h1 span{
 position: absolute;
 bottom: 60px;
 left: 4px;
 font-family: "Edu AU VIC WA NT Pre", cursive;
 font-weight: 500;
 font-size: 2rem;
 transform: rotate(-15deg);
 color: var(--lime01);
}
.profile-container{
 width: 93vw;
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 5rem;
 margin: 0 auto;
 padding-bottom: 10rem;
}
.profile-container img{
 width: 340px;
}
.profile-box{
 width: 540px;
 display: flex;
 flex-direction: column;
 color: var(--white01);
}
.profile-box p{
 font-size: 1.4rem;
}
.profile-box ul{
 display: flex;
 gap: 10rem;
 margin-top: 4rem;
}
@media (max-width: 929px){
 .profile-container{
  flex-direction: column;
  align-items: center;
 }
 .profile-box{
  width: 93vw;
 }
 .profile-box ul{
  gap: 6rem;
 }
}
@media (max-width: 349px){
 .profile-container img{
  width: 85%;
 }
}

/*--------------------------------------------------------------
Blog
--------------------------------------------------------------*/
#blog{
 width: 100%;
 background: var(--darkgray01);
 padding-bottom: 25rem;
}
.blog-midashi{
 padding: 10rem 0 6.6rem;
 margin-left: 5vw;
}
.blog-midashi h1{
 position: relative;
 color: var(--white01);
}
.blog-midashi h1 span{
 position: absolute;
 bottom: 58px;
 left: -2px;
 font-family: "Edu AU VIC WA NT Pre", cursive;
 font-weight: 500;
 font-size: 2rem;
 transform: rotate(-15deg);
 color: var(--lime01);
 margin: 0 auto 10px 8px;
}
.blog-container{
 width: 93vw;
 margin: 0 auto;
}
.blog-container ul{
 display: flex;
 flex-direction: column;
 gap: 1.6rem;
 align-items: center;
}
.blog-container ul li{
 width: 88vw;
 height: 80px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 background: var(--green06);
 border-radius: 100px;
 color: var(--white01);
 margin: 0 auto;
 gap: 2rem;
}
.blog-container ul li .txt{
 margin-left: 5.5rem;
 display: flex;
 align-items: center;
 gap: 6rem;
}
.blog-container ul li .txt time{
 width: 15rem;
 font-size: 1.8rem;
 font-weight: 700;
}
.blog-container ul li .txt .tag{
 width: 7rem;
 position: relative;
 font-size: 1.2rem;
}
.blog-container ul li .txt .tag::before{
 position:absolute;
 top: 3px;
 left: -21px;
 content:'';
 width: 13px;
 height: 13px;
 background: var(--lime01);
 clip-path: polygon(15% 15%, 50% 0, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0 50%);
}
.blog-container ul li .txt .title{
 font-size: 1.4rem;
 border-bottom: 1px solid transparent;
 transition: .3s;
}
.blog-container ul li .arrow{
 font-size: 5rem;
 margin-right: 5.5rem;
 transition: .6s;
}
@media (any-hover: hover){
 .blog-container ul li:hover .txt .title{
  color: var(--lime01);
  border-bottom: 1px solid var(--lime01);
 }
 .blog-container ul li:hover .arrow{
  transform: translateX(1rem);
 }
}
@media (max-width: 979px){
 .blog-container ul li{
  width: 93vw;
 }
 .blog-container ul li .txt{
  margin-left: 3.5rem;
  gap: 5rem;
 }
 .blog-container ul li .arrow{
  margin-right: 3.5rem;
 }
}
@media (max-width: 739px){
 .blog-container ul li{
  height: 170px;
  border-radius: 20px;
 }
 .blog-container ul li{
  align-items: flex-start;
 }
 .blog-container ul li .txt{
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 2.7rem;
 }
 .blog-container ul li .txt .tag{
  margin-left: 21px;
 }
}
@media (max-width: 500px){
 .blog-container ul li .txt{
  gap: 1rem;
 }
}



/*--------------------------------------------------------------
Contact
--------------------------------------------------------------*/
#contact{
 width: 100%;
 height: 135rem;
 position: relative;
}
#contact::before{
 content: '';
 position: absolute;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
 height: 135rem;
 background: var(--navy01);
 transform: skewY(3.6deg) translateY(-10rem);
 z-index: 2;
}
.contact-midashi{
 display: flex;
 justify-content: center;
 padding: 1rem 0 5.8rem;
 margin: 0;
}
.contact-midashi h1{
 position: relative;
 color: var(--white01);
 z-index: 3;
}
.contact-midashi h1 span{
 position: absolute;
 bottom: 60px;
 right: 6px;
 font-family: "Edu AU VIC WA NT Pre", cursive;
 font-weight: 500;
 font-size: 2rem;
 transform: rotate(-15deg);
 color: var(--lime02);
}
.contact-container{
 position: relative;
 width: 40vw;
 margin: 0 auto;
 color: var(--white01);
 font-size: 1.4rem;
 z-index: 3;
}
.wpcf7-form p{
 margin-bottom: 1.5rem;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea{
 width: 100%;
}
.wpcf7-submit{
 width: 80px;
 height: 35px;
 display: flex;
 justify-content: center;
 background-color: var(--lime01);
 color: var(--black01);
 border: 0;
 border-radius: 100px;
 font-weight: 700;
 padding: 7px 25px;
 margin: 2rem auto 0;
 transition: .4s;
 cursor: pointer;
}
.wpcf7-submit:focus{
 border: 0;
}
.wpcf7 form .wpcf7-response-output,
.wpcf7 form .sent .wpcf7-response-output,
.wpcf7 form .failed .wpcf7-response-output,
.wpcf7 form .aborted .wpcf7-response-output,
.wpcf7 form .spam .wpcf7-response-output,
.wpcf7 form .invalid .wpcf7-response-output,
.wpcf7 form .unaccepted .wpcf7-response-output,
.wpcf7 form .payment-required .wpcf7-response-output{
 border: 2px solid var(--lime01) !important;
}
.wpcf7-not-valid-tip {
 color: var(--lime01) !important;
}
@media (any-hover: hover){
 .wpcf7-submit:hover{
  background: var(--green01);
  color: var(--white01);
  border: 0;
 }
}
@media (max-width: 979px){
 .contact-container{
  width: 80vw;
 }
}



/*--------------------------------------------------------------
Footer
--------------------------------------------------------------*/
#footer{
 width: 100%;
 background: var(--black01);
 margin: 0;
}
.footer-container{
 width: 93vw;
 position: relative;
 margin: 0 auto;
 padding: 7rem 3rem 1rem;
 z-index: 3;
}
.footer-image-pc{
 position: absolute;
 top: -250px;
 left: -3.5vw;
 width: 100vw;
 height: 250px;
 object-fit: cover;
 z-index: 3;
}
.footer-image-sp{
 display: none;
}
.footer-box{
 display: flex;
 justify-content: space-between;
 flex-wrap: wrap;
 color: var(--white01);
}
.footer-info{
 display: flex;
 flex-direction: column;
 gap: 2.7rem;
}
.footer-info .logo{
 width: 140px;
 transition: .4s;
}
.footer-info ul li{
 font-size: 1.4rem;
 margin-bottom: 2rem;
}
.footer-sns{
 display: flex;
 gap: 2rem;
}
.footer-sns img{
 height: 19px;
 transition: .4s;
}
.footer-link{
 display: flex;
 gap: 7rem;
 font-size: 1.4rem;
}
.footer-link ul{
 display: flex;
 flex-direction: column;
 gap: 2.5rem;
 transition: .4s;
}
.footer-totop{
 position: absolute;
 top: -6rem;
 right: 0;
 width: 104px;
 height: 104px;
 z-index: 10;
}
.totop-octagon{
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 2px;
 width: 104px;
 height: 104px;
 background: var(--white01);
 clip-path: polygon(15% 15%, 50% 0, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0 50%);
 transition: .5s;
}
.totop-octagon .arrow{
 font-size: 3rem;
 color: var(--black01);
}
.totop-octagon .txt{
 font-family: "Edu AU VIC WA NT Pre", cursive;
 font-size: 2.1rem;
 color: var(--black01);
}
@media (any-hover: hover){
 .footer-info .logo:hover,
 .footer-sns img:hover{
  opacity: .6;
 }
 .footer-link ul li:hover{
  color: var(--lime02);
 }
 .totop-octagon:hover{
  background: var(--lime01);
  transform: translateY(-2rem);
  cursor: pointer;
 }
}
.footer-copy{
 width: 93vw;
 margin: 0 auto;
 padding: 10rem 3rem 4rem;
}
.footer-copy ul{
 display: flex;
 justify-content: space-between;
 color: var(--white01);
 font-size: 1.2rem;
 transition: .4s;
}
@media (any-hover: hover){
 .footer-copy ul li a:hover{
  color: var(--lime02);
 }
}
@media (max-width: 700px){
 .footer-image-pc{
  display: none;
}
 .footer-image-sp{
  display: block;
  position: absolute;
  top: -250px;
  left: -3.5vw;
  width: 100vw;
  height: 250px;
  object-fit: cover;
  z-index: 3;
 }
 .footer-box{
  flex-direction: column;
 }
 .footer-link{
  display: block;
  padding-top: 7rem;
 }
 .footer-link ul{
  margin-top: 2.5rem;
 }
}
@media (max-width: 420px){
 .footer-copy ul{
  flex-direction: column-reverse;
  gap: 2rem;
 }
}


/*--------------------------------------------------------------
Privacy policy
--------------------------------------------------------------*/
#privacy{
 width: 100%;
 background: var(--navy01);
 padding-top: 8rem;
}
.privacy-midashi{
 padding: 6.8rem 0 3rem;
 margin-left: 5vw;
}
.privacy-midashi h1{
 position: relative;
 color: var(--white01);
}
.privacy-midashi h1 span{
 position: absolute;
 bottom: 60px;
 left: 2px;
 font-family: "Edu AU VIC WA NT Pre", cursive;
 font-weight: 500;
 font-size: 2rem;
 transform: rotate(-15deg);
 color: var(--lime02);
}
.privacy-intro{
 width: 90vw;
 font-size: 1.8rem;
 color: var(--white01);
 margin-left: 5vw;
}
.privacy-inner{
 width: 90vw;
 color: var(--white01);
 padding-bottom: 45rem;
 margin: 10rem auto auto 5vw;
}
.privacy-inner h2{
 font-weight: 600;
 margin: 6rem 0 2rem;
}
.privacy-inner ul{
 padding-left: 2rem;
 list-style-type: square;
}
.privacy-inner a{
 color: var(--white01);
 border-bottom: 1px solid var(--white01);
 transition: .4s;
}
@media (any-hover: hover){
 .privacy-inner a:hover{
  color: var(--lime01);
  border-bottom: 1px solid transparent;
 }
}
.privacy-space{
 margin-bottom: 1.5rem;
}
.privacy-number{
 color: var(--green04);
 font-family: "Edu AU VIC WA NT Pre", cursive;
 font-size: 2.5rem;
 font-weight: 700;
 margin-right: 2rem;
}
@media (max-width: 440px){
 .privacy-inner h2{
  font-size: 2rem;
 }
 .privacy-number{
  font-size: 2.2rem;
  margin-right: 1rem;
 }
}


/*--------------------------------------------------------------
404
--------------------------------------------------------------*/
#notfound{
 width: 100%;
 height: 120vh;
 background: var(--navy01);
 color: var(--white01);
 margin: 0;
}
.notfound-inner{
 width: 90vw;
 text-align: center;
 margin: 0 auto;
}
.notfound-txt{
 font-size: 2rem;
 padding: 200px 0 4rem;
}
.notfound-btn{
 display: flex;
 width: 160px;
 height: 42px;
 background: var(--white01);
 border-radius: 100px;
 align-items: center;
 justify-content: center;
 color: var(--navy01);
 transition: .4s;
 font-size: 1.4rem;
 font-weight: 700;
 margin: 0 auto;
}
@media (any-hover: hover){
 .notfound-btn:hover{
  background: var(--green01);
  color: var(--white01);
 }
}


/*--------------------------------------------------------------
Page
--------------------------------------------------------------*/
.basic-wrapper{
 width: 100%;
 min-height: 120vh;
 background: var(--navy01);
 color: var(--white01);
 margin: 0;
 padding-top: 80px;
}
.basic-inner{
 width: 90vw;
 margin: 2rem auto;
}
.basic-inner a{
 text-decoration: underline;
 transition: .4s;
}
@media (any-hover: hover){
 .basic-inner a:hover{
  color: var(--lime01);
  text-decoration: none;
 }
}