/* font face */
@font-face {
	font-family: 'CompanyFont';
	src: url(../fonts/Agbalumo-Regular.ttf);
}
/* config style */
html {
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-weight: 400;
    background-color: #6ED6E5;
    color: #000000;
}

/* main visual style */
.main_visual {
    width: calc(100% - 20px);
    margin: 20px auto 0;
    position: relative;
}
.img_wrapper {
    width: 100%;
}
.img_wrapper img {
    width: 100%;
}
.img_wrapper img.pc {
    display: none;
}
.img_wrapper .visual_text {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}
.main_text_area {
    width: 290px;
    box-sizing: border-box;
    padding: 15px 15px 15px 15px;
    background-color: #ffffff;
    border: 1px solid #ADADAD;
    border-radius: 20px;
    box-shadow: 3px 3px 3px rgba(126,126,126,.6);
    margin-left: auto;
    position: absolute;
    bottom: -80px;
    right: 0;
    z-index: 1;
}
.main_text_area h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}
.main_text_area p {
    font-size: 18px;
    margin-bottom: 5px;
}
.main_text_area .sub_area {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.sub_area span {
    font-size: 14px;
}
.sns_arrow {
    position: absolute;
    bottom: -150px;
    width: 55%;
}
.sns_arrow img {
    display: block;
    width: 100%;
}
.sns_links {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    bottom: -140px;
    right: 0;
}
.sns_links a {
    display: block;
    width: 45px;
    height: 45px;
}
.sns_links a img {
    width: 100%;
}
.sns_links a:first-child {
    margin-right: 10px;
}

@media screen and (min-width: 600px) {
    .main_visual {
        width: 100%;
        margin: 0 auto 0;
    }
    .img_wrapper img.pc {
        display: block;
    }
    .img_wrapper img.sp {
        display: none;
    }
    .img_wrapper .visual_text {
        width: 80%;
    }
    .main_text_area {
        width: 50%;
        padding: 30px;
        margin-right: 20px;
    }
    .main_text_area h2 {
        font-size: 50px;
        margin-bottom: 20px;
    }
    .main_text_area p {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .main_text_area .sub_area {
        margin-top: 20px;
    }
    .sub_area span {
        font-size: 20px;
        line-height: 30px;
    }
    .sns_arrow {
        position: absolute;
        bottom: -180px;
        left: 50px;
        width: 40%;
    }
    .sns_links {
        bottom: -180px;
        right: 20px;
    }
    .sns_links a {
        width: 80px;
        height: 80px;
    }
    .sns_links a:first-child {
        margin-right: 20px;
    }
}


/* profile style */
.profile {
    width: calc(100% - 20px);
    margin: 180px auto 130px;
}
.contact_mail_area {
    width: 100%;
    margin: 30px auto;
}
.contact_mail_area a {
    width: 300px;
    box-sizing: border-box;
    padding: 20px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #00A75A;
    color: #fff;
    box-shadow: 5px 5px 10px rgba(0,0,0,.7);
    font-size: 18px;
    transition: .3s;
    margin: 0 auto;
}
.contact_mail_area a::before {
    content: "";
    width: 32px;
    height: 26.7px;
    background-image: url('../img/mail_icon.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 15px;
}
.contact_mail_area a:hover {
    transform: translate(5px);
    box-shadow: none;
}

.profile_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.profile_list li {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #ADADAD;
    box-shadow: 2px 2px 2px rgba(87,87,87,.6);
    box-sizing: border-box;
    padding: 10px;
}
.profile_list li:not(:last-child) {
    margin-bottom: 20px;
}
.profile_list li h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}
.profile_list li p {
    line-height: 27px;
}
@media screen and (min-width: 600px) {
    .profile {
        width: calc(100% - 40px);
        margin: 250px auto 150px;
    }
    .contact_mail_area {
        width: 80%;
    }
    .contact_mail_area a {
        width: 400px;
        padding: 20px 0;
        box-shadow: 5px 5px 10px rgba(0,0,0,.7);
        font-size: 24px;
        transition: .3s;
    }
    .contact_mail_area a::before {
        content: "";
        width: 64px;
        height: 51.4px;
        background-image: url('../img/mail_icon.png');
        background-repeat: no-repeat;
        background-size: cover;
        margin-right: 15px;
    }
    .contact_mail_area a:hover {
        transform: translate(5px);
        box-shadow: none;
    }
    .profile_list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .profile_list li {
        width: calc((100% - 30px) / 2);
    }
    .profile_list li h2 {
        font-size: 24px;
    }
    .profile_list li p {
        font-size: 20px;
        line-height: 35px;
    }
}


/* history style */
.history {
    background-color: #ffffff;
    box-sizing: border-box;
    padding: 15px 10px;
}
.history h2 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    /* color: #ffffff; */
    color: rgba(112,112,112,.1);
    font-size: 120px;
    z-index: -1;
}
.top_margin {
    margin-top: 60px;
}
.top_margin.short {
    margin-top: 20px;
}
.history_child_list {
    margin-top: -100px;
}
.history_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 10px 0;
    font-size: 14px;
    line-height: 20px;
}
.history_text span {
    font-size: 12px;
    align-self: flex-end;
    margin-top: 5px;
}
.history_text strong {
    font-weight: 600;
}
.history_text:first-child {
    padding: 0 0 10px 0;
}
.history_text:last-child {
    padding: 10px 0 0 0;
}
.history_text.no_wrap {
    flex-direction: row;
    align-items: center;
}
.history_text:not(:last-child) {
    border-bottom: 1px solid #81D8D0;
}

/* slick arrow customize */
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background-color: #fff;
}
.slick-prev:before {
  content:'彫だいの来歴';
  color: #000;
  opacity: 1;
  font-size: 14px;
  font-weight: 600;
}
.slick-next:before {
  content:'クリックしてね！';
  color: #000;
  opacity: 1;
  font-size: 14px;
  font-weight: 600;
}
.slick-prev {
  left: 0;
  top: -50px;
  z-index: 1;
  width: auto;
  height: auto;
  padding: 10px;
  color: #000;
  background-color: #fff;
  transition:.4s;
  box-shadow: 2px 2px 2px rgba(87,87,87.6);
  border-radius: 15px;
}
.slick-next {
  right: 0;
  top: -50px;
  width: auto;
  height: auto;
  padding: 10px;
  background-color: #fff;
  transition:.4s;
  box-shadow: 2px 2px 2px rgba(87,87,87.6);
  border-radius: 15px;
}
@media screen and (min-width: 600px)  {
    .history_item {
        display: block!important;
        box-sizing: border-box;
        padding: 0 20px;
        height: 750px;
        border-left: 1px solid #6ED6E5;
    }
    .history_text {
        font-size: 20px;
        line-height: 28px;
        padding: 15px 0;
    }
    .history_text span {
        font-size: 16px;
        line-height: 24px;
        margin-top: 10px;
    }
    
    /* slick arrow customize */
    .slick-prev:before {
        font-size: 20px;
    }
    .slick-next:before {
        font-size: 20px;
    }
    .slick-prev {
        top: -80px;
        padding: 15px;
        border-radius: 30px;
    }
    .slick-next {
        top: -80px;
        padding: 15px;
        border-radius: 30px;
    }
}


/* sns style */
.sns {
    width: calc(100% - 20px);
    margin: 100px auto 0;
}
.sns .instagram_list {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.sns .instagram_list li {
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.instagram_list li::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background-image: url('../img/instagram_icon.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 5px;
}
.instagram_list li .title_text {
    text-align: center;
    margin-bottom: 10px;
}
.instagram_list li .title_text p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}
.instagram_list li .title_text span {
    font-size: 12px;
}
.instagram_list li img {
    display: block;
    width: 110px;
    height: 110px;
    border-radius: 50%;
}
.tiktok_area,
.youtube_area {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.youtube_area,
.shacho {
    margin-top: 30px;
}
.tiktok_area p,
.youtube_area p {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}
.tiktok_area p span,
.youtube_area p span {
    font-size: 20px;
    margin-top: 5px;
}
.tiktok_area h2,
.youtube_area h2 {
    width: 300px;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    box-shadow: 5px 5px 3px rgba(255,255,255,.6);
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 10px;
}
.youtube_area h2 {
    background-color: #ffffff;
    box-shadow: 5px 5px 3px rgba(0,0,0,.28);
    color: #000000;
}
.tiktok_area h2 {
    width: 300px;
    height: 50px;
    background-color: #000000;
    box-shadow: 5px 5px 3px rgba(255,255,255,.6);
}
.tiktok_area h2::before,
.youtube_area h2::before {
    content: "";
    display: block;
    width: 45px;
    height: 45px;
    background-image: url('../img/tiktok_icon.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 5px;
}
.youtube_area h2::before {
    height: 31px;
    background-image: url('../img/youtube_icon.png');
    margin-right: 10px;
}
.x_wrapper {
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.x_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}
.x_text span {
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 10px;
}
.x_link {
    width: 300px;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    box-shadow: 5px 5px 3px rgba(255,255,255,.6);
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}
.x_link p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.x_link p span {
    font-size: 14px;
    font-weight: 400;
}
.x_link::before {
    content: "";
    display: block;
    width: 45px;
    height: 45px;
    background-image: url('../img/x_icon.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 5px;
}
@media screen and (min-width: 600px) {
    .sns {
        width: calc(100% - 40px);
        margin: 100px auto 0;
    }
    .sns .instagram_list {
        width: 50%;
        margin: 0 auto 50px;
        justify-content: space-between;
    }
    .sns .instagram_list li {
        width: calc((100% - 30px) / 3);
    }
    .instagram_list li::before {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    .instagram_list li .title_text {
        margin-bottom: 20px;
    }
    .instagram_list li .title_text p {
        font-size: 24px;
        margin-bottom: 5px;
    }
    .instagram_list li .title_text span {
        font-size: 20px;
    }
    .instagram_list li img {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }
    .movie_wrapper {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
    }
    .tiktok_area,
    .youtube_area {
        width: 80%;
        margin: 80px auto 0;
        align-items: center;
    }
    .youtube_area,
    .shacho {
        margin-top: 80px;
    }
    .tiktok_area p,
    .youtube_area p {
        font-size: 18px;
    }
    .tiktok_area p span,
    .youtube_area p span {
        font-size: 24px;
        margin-top: 10px;
    }
    .tiktok_area h2,
    .youtube_area h2 {
        width: 400px;
        height: 100px;
        font-size: 30px;
    }
    .tiktok_area h2::before,
    .youtube_area h2::before {
        width: 70px;
        height: 70px;
        margin-right: 10px;
    }
    .youtube_area h2::before {
        height: 50px;
        margin-right: 15px;
    }
    .x_wrapper {
        margin: 80px auto 0;
    }
    .x_link {
        width: 50%;
        height: 80px;
        font-size: 30px;
    }
    .x_link p {
    }
    .x_link p span {
        font-size: 20px;
        font-weight: 400;
        margin-bottom: 5px;
    }
    .x_link::before {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }
}


/* onlineshop style */
.onlineshop {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.onlineshop_title {
    font-family: 'CompanyFont';
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}
.online_shop_img {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
}
.online_shop_img img {
    display: block;
    width: 300px;
    margin: 0 auto;
}
.online_shop_img .inner_text {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
}
.online_shop_img .inner_text h2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}
.online_shop_img .inner_text p {
    font-size: 18px;
    line-height: 27px;
}
.online_shop_img .inner_text h2 span {
    font-size: 16px;
    margin-top: 5px;
}
.onlineshop a {
    width: 200px;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.onlineshop .shop_link {
    width: 250px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 2px 2px 2px rgba(87,87,87,.6);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}
.onlineshop .line_link {
    background-color: #ffffff;
    box-shadow: 1px 1px 2px #00A75A;
    margin-bottom: 50px;
    color: #00A75A;
    border: 1px solid #00A75A;
}
.onlineshop .line_link::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url('../img/line_icon.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 5px;
}
@media screen and (min-width: 600px) {
    .onlineshop {
        margin-top: 100px;
    }
    .onlineshop_title {
        font-size: 55px;
        margin-bottom: 30px;
    }
    .online_shop_img {
        margin-bottom: 50px;
    }
    .online_shop_img img {
        width: 50%;
    }
    .online_shop_img .inner_text {
        right: 20px;
    }
    .online_shop_img .inner_text h2 {
        font-size: 55px;
        margin-bottom: 20px;
    }
    .online_shop_img .inner_text p {
        font-size: 24px;
        line-height: 35px;
    }
    .online_shop_img .inner_text h2 span {
        font-size: 18px;
        margin-top: 10px;
    }
    .onlineshop .shop_link {
        width: 50%;
        height: 80px;
        border-radius: 50px;
        box-shadow: 5px 5px 5px rgba(87,87,87,.6);
        margin-bottom: 30px;
        font-size: 30px;
    }
    .onlineshop .line_link {
        width: 40%;
        height: 80px;
        box-shadow: 4px 4px 5px #00A75A;
        margin-bottom: 150px;
        font-size: 24px;
    }
    .onlineshop .line_link::before {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
}


/* company style */
.company {
    margin-bottom: 50px;
}
.company h2 {
    font-family: 'CompanyFont';
    font-size: 35px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.company h2 span {
    font-size: 20px;
    margin-top: 5px;
}
.company_img-wrap {
    width: calc(100% - 20px);
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.company_img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #fff;
}
.company_img-wrap img.top_img {
    margin-bottom: 20px;
}
.company iframe {
    display: block;
    width: calc(100% - 20px);
    height: 350px;
    margin: 0 auto;
}
.company .address_wrapper {
    width: calc(100% - 20px);
    margin: 15px auto 0;
}
.company .address {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
}
.company .address .top {
    font-size: 12px;
    margin-bottom: 3px;
}
.company .address .bottom {
    font-size: 14px;
}
.company .times {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}
.company .times p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 14px;
    margin-right: 5px;
}
.company .times p span {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}
.company .times .tel_contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 30px;
    background-color: #ffffff;
    box-shadow: 2px 2px 2px rgba(87,87,87,.6);
    border-radius: 15px;
    box-sizing: border-box;
    padding: 0 15px;
}
@media screen and (min-width: 600px) {
    .company h2 {
        font-size: 55px;
    }
    .company_img-wrap {
        width: calc(100% - 40px);
        margin: 30px auto;
        flex-direction: row;
        justify-content: space-between;
    }
    .company_img-wrap img {
        width: 49%;
    }
    .company_img-wrap img.top_img {
        margin-bottom: 0px;
    }
    .company iframe {
        width: 100%;
        height: 500px;
        margin: 0 auto;
    }
    .company .address_wrapper {
        width: calc(100% - 40px);
        margin: 20px auto 0;
    }
    .company .address {
        margin-bottom: 30px;
    }
    .company .address .top {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .company .address .bottom {
        font-size: 24px;
    }
    .company .times p {
        flex-direction: row;
        align-items: center;
        font-size: 24px;
        margin-right: 20px;
    }
    .company .times p span {
        font-size: 24px;
        margin-bottom: 0px;
        margin-right: 10px;
    }
    .company .times .tel_contact {
        height: 40px;
        border-radius: 20px;
    }
}

/* midle img style */
.middle_img {
    width: 100%;
    margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
    .middle_img {
        display: block;
        width: 70%;
        margin: 0 auto 30px;
    }   
}

/* family style */
.family {
    width: calc(100% - 20px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.family h2 {
    font-size: 24px;
    font-weight: 600;
}
.family_list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
} 
.family_list li {
    width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.family_list li:nth-last-child(n + 2) {
    margin-bottom: 20px;
}
.family li a {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.family_list li a::after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background-image: url('../img/instagram_icon.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 5px;
}
.family_list li img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.family_list li p {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}
@media screen and (min-width: 600px) {
    .family {
        width: calc(100% - 40px);
    }
    .family h2 {
        font-size: 35px;
    }
    .family_list {
        width: 100%;
        margin-top: 50px;
        justify-content: space-between;
    } 
    .family_list li {
        width: calc((100% - 45px)  / 9);
    }
    .family_list li:nth-last-child(n + 2) {
        margin-bottom: 0px;
    }
    .family_list li a::after {
        width: 35px;
        height: 35px;
        margin-top: 15px;
    }
    .family_list li img {
        width: 90%;
        height: auto;
    }
    .family_list li p {
        font-size: 20px;
        margin-top: 20px;
    }
}


/* site map style */
.site_map {
    width: 100%;
    margin-top: 50px;
    background-color: #fff;
    box-sizing: border-box;
    padding: 30px 10px;
}
.site_map_list {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.site_map_list li {
    width: calc((100% - 10px) / 2);
    margin-bottom: 15px;
}
.site_map_list li:last-child {
    width: 100%;
    margin-bottom: 0;
}
@media screen and (min-width: 600px) {
    .site_map {
        margin-top: 80px;
        padding: 50px 10%;
    }
    .site_map_list li {
        margin-bottom: 30px;
    }
    .site_map_list li a {
        font-size: 20px;
    }
}


/* footer style */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 10px 0;
}
@media screen and (min-width: 600px) {
    footer {
        padding: 20px 0;
        font-size: 18px;
    }   
}