@charset "UTF-8";
/* CSS Document */
*, *:before, *:after{margin:0;padding:0;border: 0;vertical-align:baseline;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
scroll-padding-top: 120px;
}
body {
font-family: "Noto Sans JP", sans-serif;
font-weight: 700;
font-style: normal;
font-size:14px;
line-height:1.8;
color:#000;
letter-spacing:0.03em;
width:100%;
max-width: 1920px;
margin: 0 auto;
overflow-wrap: anywhere;
word-break: normal;
line-break: strict;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position: relative;
}


.sp{display: none;}
ol, ul {
list-style: none;
list-style-type: none;
}
a:focus, *:focus { outline:none; }
a{
text-decoration: none;
color:#333;
}
a:hover{
opacity:0.7;
transition: .4s opacity;
}
img{
vertical-align:bottom;
}
img.w100{
width: 100%;
}
.open{
overflow-y: hidden;
}



.dela{
font-family: "Dela Gothic One", sans-serif;
font-size: 400!important;
}

/*+++++++++++++++++++++++++HEADER++++++++++++++++++++++++++++++*/

header{
position: fixed;
width: 100%;
height: 72px;
top: 0;
left: 0;
z-index: 100;
background: #fff;
}

header .header-inner{
width: 96%;
max-width: 1300px;
margin: 0 auto;
padding: 0 0 0;
display: flex;
justify-content: space-between;
}
header .left-box{
display: flex;
justify-content: space-between;
background: #fff;
padding: 0 20px;
border-radius: 0 0 20px 20px;
}
header .left-box .logo{
width: 166px;
line-height: 72px;
display: flex;
align-items: center;
margin: 0 22px 0 0;
padding: 0 0;
}
header .left-box .logo img{
vertical-align: middle;
}
header .left-box .logo a{
display: block;
}
header .left-box .site-info{
font-family: "Montserrat", sans-serif;
font-size: 14px;
font-weight: 700;
line-height: 58px;
padding: 14px 0 0;
}



header .right-box{
display: flex;
align-items: center;
}
header .internship,
header .entry{
display: inline-block;
width: 190px;
line-height: 42px;
margin: 0 14px 0 0;
}
header .internship a{
display: block;
background: #028151;
background: #e82b20;
text-align: center;
color: #fff;
font-weight: 800;
font-size: 16px;
border-radius: 100px;
}
header .entry a{
display: block;
background: #3aae36;
text-align: center;
color: #fff;
font-weight: 800;
font-size: 16px;
border-radius: 100px;
padding: 0 0 0 18px;
position: relative;
}
.entry-sp-ill{
position: absolute;
width: 32px;
top: -4px;
left: -4px;
}
header .entry a:hover{
cursor: pointer;
}
header .menu-btn{
display: inline-block;
width: 42px;
height: 42px;
background: #fff;
border-radius: 100px;
}

header .menu-btn:hover{
cursor: pointer;
}


.menu-btn-box{
width: 42px;
height: 42px;
}

.menu-btn {
  position: relative;
}
.menu-btn span {
  position: absolute;
  left: 28%;
  width: 44%;
  height: 2px;
  background-color: #000;
}
.menu-btn,
.menu-btn span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
.menu-btn span:nth-of-type(1) {
  top: 12px;
}
.menu-btn span:nth-of-type(2) {
  top: 20px;
}
.menu-btn span:nth-of-type(3) {
  bottom: 12px;
}
.menu-btn.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-315deg);
  transform: translateY(8px) rotate(-315deg);
}
.menu-btn.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-btn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(315deg);
  transform: translateY(-8px) rotate(315deg);
}

nav{
position: fixed;
width: 58%;
height: calc(100% - 130px);
top: 90px;
right: -80%;
background: #fff;
padding: 60px 8% 60px;
border-radius: 60px 0 0 60px;
z-index: 9999;
opacity: 1;
transition:right 0.7s;
}
nav.is-show{
right: 0;
opacity: 1;
transition:right 0.7s;
}
.menu-box{
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
max-width: 700px;
max-height: 100%;
overflow: scroll;
}
.menu-box .wide{
width: 100%;
margin: 0 0 24px;
}
.menu-box .half{
width: 48%;
margin: 0 0 24px;
}
.menu-box .wide a,
.menu-box .half a{
display: block;
padding: 0 0 0 30px;
position: relative;
line-height: 2.4;
}
.menu-box .half a span{
display: inline-block;
width: 40px;
}
.menu-box .half a span.aj{
letter-spacing: 0.22em;
}
.menu-box .wide a::after,
.menu-box .half a::after{
position: absolute;
width: 22px;
height: 22px;
left: 0;
top: 50%;
transform: translateY(-50%);
content: '';
background: url("../images/arrow-green.svg") no-repeat;
background-size:100% auto;
}
.menu-box .cat-ttl {
font-family: "Montserrat", sans-serif;
font-size: 32px;
font-weight: 700;
color: #2cc994;
margin: 0 0;
}
.menu-bg{
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(0, 142, 81, 0.9);
content: '';
display: none;
z-index: 10;
}
.open .menu-bg{
display: block;
animation: fadein 0.6s 1;
}
@keyframes fadein {0% {opacity: 0;}100% {opacity: 1;}
}





main{
padding: 72px 0 0;
width: 100%;
overflow: hidden;
position: relative;
}



footer{
background: #fff;
}
.footer-other{
background: #2cc994;
}
footer .wrap{
padding: 0 4%;
}
footer .inner{
max-width: 1200px;
margin: 0 auto;
padding: 6% 0 40px;
}
footer .cont-box{
display: flex;
justify-content: space-between;
margin: 0 0 4%;
}
footer .left{
width: 222px;
margin: 0 8% 0 0;
}
footer .left .info{
text-align: center;
font-family: "Montserrat", sans-serif;
font-weight: 700;
margin: 0 0 15%;
}
footer .right{
display: flex;
justify-content: space-between;
flex-grow: 1;
}
footer .link-wrap{
margin: 0 0 40px;
}
footer .link-wrap.wide{
display: none;
}
footer .cat-ttl{
font-family: "Montserrat", sans-serif;
font-size: 19px;
font-weight: 700;
color: #2cc994;
margin: 0 0 10px;
}


footer .site-link-box a{
display: block;
line-height: 2.2;
}
footer .site-link-box a span{
display: inline-block;
width: 40px;
}
footer .site-link-box a span.aj{
letter-spacing: 0.23em;
}
footer .site-link-box p.cs-text{
font-size: 13px;
display: block;
line-height: 2;
color: #9d9d9d;
}
footer .logo{
}
footer .logo img{
margin: 0 0 10px;
}
footer .logo p{
text-align: center;
font-family: "Montserrat", sans-serif;
font-size: 14px;
font-weight: 700;
}
footer .intern-box{
margin: 0 0 18px;
}
footer .intern-box a{
background: #e82b20;
color: #fff;
font-size: 16px;
font-weight: 800;
text-align: center;
display: block;
border-radius: 100px;
line-height: 46px;
}
footer .entry-box a{
background: #3aae36;
color: #fff;
font-size: 16px;
font-weight: 800;
text-align: center;
display: block;
border-radius: 100px;
line-height: 46px;
position: relative;
padding: 0 0 0 14px;
}
footer .entry-box a .entry-sp-ill {
    position: absolute;
    width: 32px;
    top: -4px;
    left: -4px;
}
footer .entry-box a:hover{
cursor: pointer;
}

.footer-other .wrap{
width: 92%;
max-width: 1200px;
margin: 0 auto;
padding: 28px 0;
position: relative;
}
.footer-other .cr{
position: absolute;
right: 0;
top: 28px;
font-family: "Montserrat", sans-serif;
font-size: 12px;
font-weight: 500;
}




.others{
max-width: 1300px;
margin: 0 auto;
}
.others-inner{
padding: 10% 0 15%;
}
.others-ttl-en{
font-family: "Montserrat", sans-serif;
font-weight: 800;
font-size: 27px;
text-align: center;
line-height: 1.1;
}
.others-ttl-jp{
font-family: "Dela Gothic One", sans-serif;
font-weight: 400;
font-size: 38px;
text-align: center;
line-height: 1.3;
margin: 0 0 3%;
}
.others-box{
max-width: 1040px;
display: flex;
justify-content: center;
margin: 0 auto;
}
.others-once{
max-width: 29.3333%;
margin: 0 2%;
}
.others-once img{
margin: 0 0 10px;
}
.others-once a{
display: block;
font-size: 18px;
font-weight: 800;
text-align: center;
}



.modal-entry-ttl {
width: 100%;
max-width: 600px;
font-family: "Dela Gothic One", sans-serif;
font-weight: 400;
font-size: 38px;
border-top: 8px solid #e82b20;
border-bottom: 8px solid #e82b20;
text-align: center;
margin: 10% auto 6%;
}
.modal-entry-ex{
text-align: center;
font-size: 16px;
margin: 0 0 5%;
color: #028151;
}
.modal-btn-box{
display: flex;
justify-content: space-between;
width: 88%;
max-width: 600px;
margin: 0 auto 10%;
}
.modal-btn-box a{
display: block;
width: 47%;
border: 1px solid #ccc;
border-radius: 10px;
overflow: hidden;
}





.page-top{
position: fixed;
width: 52px;
height: 52px;
bottom: 64px;
right: 2%;
cursor: pointer;
display: none;
z-index: 90;
}



/*+++++++++++++++++++++++++↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑v++++++++++++++++++++++++++++++*/
@media only screen and (max-width : 1400px) {
nav {
width: 74%;
height: calc(100% - 100px);
top: 90px;
right: -74%;
transition: right 0.5s;
padding: 60px 5% 60px;
}
}
@media only screen and (max-width : 1200px) {

}
@media only screen and (max-width : 1000px) {

header .internship a,
header .entry a{
font-size: 14px;
}


footer .left {
width: 150px;
margin: 0 3% 0 0;
}
header .entry {
width: 170px;
margin: 0 8px 0 0;
}
header .internship {
width: 140px;
margin: 0 8px 0 0;
}
footer .site-link-box a {
font-size: 12px;
}


footer .entry-box a{
font-size: 12px;
font-weight: 800;
text-align: center;
display: block;
border-radius: 100px;
line-height: 46px;
position: relative;
padding: 0 0 0 14px;
}

}




@media (max-width: 767px) {
a, button, input[type="button"], input[type="submit"] {
  -webkit-tap-highlight-color: transparent;
}
.pc{display: none;}
.sp{display: block;}
body {
width: 100%;
font-size:14px;
line-height:1.7;
letter-spacing:0.03em;
overflow-x: hidden;
}
a:hover{
opacity:1;
}


header .header-inner {
width: 100%;
padding: 0 4% 0 0;
}
header .left-box {
padding: 0 14px;
border-radius: 0 0 20px 20px;
}
header .left-box .logo {
width: 110px;
margin: 0 12px 0 0;
}
header .left-box .site-info {
font-size: 12px;
}
header .left-box .logo img {
vertical-align: middle;
}
header .internship, header .entry {
   display: none;
}

nav {
width: 94%;
height: calc(100% - 108px);
top: 90px;
right: -94%;
transition: right 0.5s;
padding: 7% 5%;
border-radius: 6vw 0 0 6vw;
}
.menu-box .cat-ttl {
font-size: 24px;
margin: 0 0;
}


footer .inner {
padding: 15% 0 40px;
}

footer .cont-box {
display: block;
}
footer .left {
width: 100%;
margin: 0 0 0;
}
footer .logo {
width: 120px;
margin: 0 auto;
}
footer .left .info {
margin: 0 0 8%;
}
footer .intern-box,
footer .entry-box{
width: 200px;
margin: 0 auto 18px;
}
footer .right {
display: block;
padding: 5% 0 0;
}
.site-link-box{
width: 100%;
}
footer .cat-ttl{
text-align: center;
margin: 0 0 6px;
}

.footer-other .wrap {
width: 88%;
padding: 28px 0;
}
.footer-other .wrap a{
font-size: 12px;
}
footer .site-link-box a {
font-size: 12px;
text-align: center;
}
footer .link-wrap {
margin: 0 0 30px;
}

.footer-other .cr {
position: relative;
width: 100%;
right: 0;
top: 0;
font-size: 10px;
padding: 14px 0 0;
}
.others-ttl-en {
font-size: 18px;
}
.others-ttl-jp {
font-size: 24px;
text-align: center;
line-height: 1.3;
margin: 0 0 7%;
}
.others-inner {
padding: 15% 0 18%;
}
.others-box {
width: 88%;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.others-once {
max-width: 47%;
margin: 0 1.5% 5%;
}
.others-once a {
font-size: 14px;
line-height: 1.6;
}
.others-once img {
margin: 0 0 4%;
}


.page-top {
width: 40px;
height: 40px;
}

.menu-box .wide a, .menu-box .half a {
display: block;
padding: 0 0 0 30px;
position: relative;
line-height: 2.1;
}
.menu-box .wide a::after, .menu-box .half a::after {
width: 18px;
height: 18px;
}
.modal-entry-ttl {
width: 90%;
font-size: 30px;
border-top: 4px solid #e82b20;
border-bottom: 4px solid #e82b20;
margin: 10% auto 6%;
}
.modal-entry-ex {
width: 90%;
text-align: center;
font-size: 14px;
margin: 0 auto 5%;
}
.modal-btn-box {
display: block;
justify-content: space-between;
width: 70%;
max-width: 240px;
margin: 0 auto 10%;
}
.modal-btn-box a{
width: 100%;
margin: 0 0 5%;
border-radius: 6px;
}

.nav-btn-box{
width: 100%;
margin: 0 0 8%;
padding: 6px 0 0;
}
.nav-btn-box a{
width: 80%;
display: block;
margin: 0 0 14px;
}
.nav-btn-box a.intern{
    background: #e82b20;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    display: block;
    border-radius: 100px;
    line-height: 32px;
}
.nav-btn-box a.entry{
    background: #3aae36;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    display: block;
    border-radius: 100px;
    line-height: 36px;
    position: relative;
    padding: 0 0 0 10px;
}
.nav-btn-box a .entry-sp-ill {
    position: absolute;
    width: 32px;
    top: -4px;
    left: -4px;
}
footer .entry-box a,
footer .intern-box a {
    font-size: 12px;
    line-height: 40px;
}
footer .entry-box a{
animation-play-state: 0 0 0 14px;
}


}

@media (max-width: 500px) {

.menu-box .half {
width: 100%;
margin: 0 0 24px;
}
}


@media print {
body {width:1000px;}
}