﻿@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* ----------------------------------------------------------------------------------------------　all　----------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------　body　----------------------------------------------------------------------------------------------------------------- */

#wrap{
    overflow: hidden;
    padding-right: 0;
    width: calc(100% - 90px);
    margin-right: 90px;
}


/* font -----------------------------------------------------------------------------*/

:root {
    --font-jp: 'Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --font-en: "Poppins", 'Barlow', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.menu-box,.menu_list,#header-nav,#top_contact_box, #top_contact_box,.en_font, h1, h2, h3, h4, h5, h6, .sns_title, .con_no, #footer_nav,.copyright{
    font-family: var(--font-jp);
    font-weight: 700;
}

.top_cms_title .cms_title_inner p,.top_info_title .info_title_inner p,.more,#page_title .title_box p{
    font-family: var(--font-en);
}

.font_en, a[href^="tel:"] {
    font-family: var(--font-en) !important;
}

#top_contents1 h2,#top_contents2 h2,#top_cms h2,.title_box h2,.gyoumu_box h2{
        font-size: calc(1rem + 7px);
}

.font_2dw {
    font-size: calc(1rem + 1px) !important;
    letter-spacing: 0px;
}
/* font -----------------------------------------------------------------------------*/
/* color -----------------------------------------------------------------------------*/
:root{
    --color1:#565b7b;
    --color2: #b1b2dd;
    --color3:#FBFBFB;
    --color4:#9db2c2;
    --color5:#f3f3f3;
    --white:#ffffff;
    --black: #444444;
    --gray:#f3f3f3;
}

body,.txt_color_nomal,.hvr_txt_color_nomal:hover{color: var(--black);}
.txt_white,.hvr_txt_white:hover{color: var(--white);}
.txt_color1,.hvr_txt_color1:hover{color: var(--color1);} /* メインカラー */
.txt_color2,.hvr_txt_color2:hover{color: var(--color2);} /* サブカラー */
.txt_color3,.hvr_txt_color3:hover{color: var(--color3);} /* アクセントカラー1 */
.txt_color4,.hvr_txt_color4:hover{color: var(--color4);} /* アクセントカラー2 */
.txt_color5,.hvr_txt_color5:hover{color: var(--color5);} /* アクセントカラー2 */
/* background-color */
.bg_white,.hvr_bg_white:hover{background-color: var(--white)} /* 白背景 */
.bg_black,.hvr_bg_black:hover{background-color: var(--black);} /* 黒背景 */
.bg_color1,.hvr_bg_color1:hover{background-color: var(--color1);} /* メインカラー */
.bg_color2,.hvr_bg_color2:hover{background-color: var(--color2);} /* サブカラー */
.bg_color3,.hvr_bg_color3:hover{background-color: var(--color3);} /* アクセントカラー1 */
.bg_color4,.hvr_bg_color4:hover{background-color: var(--color4);} /* アクセントカラー2 */
.bg_color5,.hvr_bg_color5:hover{background-color: var(--color5);} /* アクセントカラー2 */
.bg_color_clear,.hvr_bg_color_clear:hover{background-color: transparent!important;}
/* border-color ※!important */
.border_white,.hvr_border_white:hover{border-color: var(--white);}
.hvr_border_black:hover{border-color: var(--black);}
.border_black{border-color: var(--gray);}
.border_color1,.hvr_border_color1:hover{border-color: var(--color1);}
.border_color2,.hvr_border_color2:hover{border-color: var(--color2);}
.border_color3,.hvr_border_color3:hover{border-color: var(--color3);}
.border_color4,.hvr_border_color4:hover{border-color: var(--color4);}
.border_color5,.hvr_border_color5:hover{border-color: var(--color5);}

/* ----------　linkStyle　▼---------- */
.linkStyle{
    color: var(--color1);
    border-bottom:solid 1px;
}

.linkStyle:hover{
	color: var(--color3);
	opacity: 0.9;
	transition: all 0.5s;
}

/* ----------　linkStyle　▼---------- */
.linkStyle{
    color: #FF9E03;
    border-bottom:solid 1px;
}

.linkStyle:hover{
	color: #ffd18f;
	opacity: 0.9;
	transition: all 0.5s;
}
/* ----------　linkStyle　▲---------- */
.bg-animation {
  position: relative;
  overflow: hidden;
}

.bg-animation::before,.bg-animation::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 30% 30%, rgb(213 228 255 / 60%), transparent 70%), radial-gradient(circle at 70% 70%, rgb(205 211 255 / 60%), transparent 70%), radial-gradient(circle at 50% 50%, rgba(205, 180, 219, 0.6), transparent 70%);
  background-size: 200% 200%;
  filter: blur(100px);
  animation: gradientMove 5s ease-in-out infinite alternate;
}

@keyframes gradientMove {
  0% {
    background-position: 30% 30%, 70% 70%, 50% 50%;
  }
  50% {
    background-position: 40% 35%, 65% 75%, 55% 45%;
  }
  100% {
    background-position: 35% 40%, 75% 65%, 45% 55%;
  }
}
/* color -----------------------------------------------------------------------------*/

/* ----------topcms　more　▼---------- */
.more a {
    color: #fff;
    background-color: var(--color1);
    padding: 15px;
    border: none;
    border-radius: 0;
}

.more a {
    position: relative;
}

.more a:hover {
    color: var(--color2);
    background-color: transparent;
    border-color: transparent;
}

.more a:hover::before {
    width: 100%;
}

.more a::before {
    position: absolute;
    content: "";
    width: 0px;
    height: 3px;
    left: 0px;
    right: 0px;
    bottom: -2px;
    background-color: var(--color2);
    margin: auto;
    transition: width 0.5s cubic-bezier(0.63, 0.05, 0.16, 1);
}
/* ----------topcms　more　▲---------- */
.overlay-menu .tel_bt a i {
    font-size: -webkit-calc(1rem + 8px);
    font-size: calc(1rem + 8px);
    /* top: 60%; */
}

.button_container span {
    background: var(--color1);
}

/* ----------　header　▼---------- */
#header #logo {
    width: max(200px, 280px);
    height: 100px;
    background: transparent;
}

#header #logo h1 {width: 100%!important;}

#header{
    position: fixed;
    width: calc(100% - 90px);
    box-sizing: border-box;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 11;
    padding: 0 20px;
    /* box-shadow: 0 0 30px rgba(0,0,0,0.1); */
}

#header #header-nav{
    padding: 20px 0;
    margin-top: 0;
}

#header.active #logo{
    height: 100%;
}

/* ----------　header　▲---------- */


/* ----------------------------------------------------------------------------------------------　top　----------------------------------------------------------------------------------------------------------------- */
#main_img img {
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

#main_img .catch {
    max-width: 900px;
    width: max(330px, 30vw);
    left: 3%;
    top: 17%;
    bottom: auto;
}
/* ------------------------------　intro　▼---------------------------------- */
#top_news {
    /* margin-top: 50px; */
    background-color: var(--color4);
}

#top_news:before {
    width: 100%;
    height: 50px;
    background-image: url(/Files/img/obj10.png);
    background-size: cover;
    top: -8%;
    left: 50%;
    transform: translateX(-50%);
    background-position: center;
}
/* ------------------------------　intro　▲---------------------------------- */

/* ------------------------------　contents1　▼------------------------------ */
#top_contents1 h2::before {
    content: "INTRODUCTION";
    display: block;
    text-align: center;
    color: var(--color1);
    font-size: 20px;
    font-family: var(--font-en);
    margin-bottom: 10px;
    letter-spacing: 4px;
    font-weight: normal;
}


#top_contents1 h2 {
    color: var(--color1);
    padding-bottom: 30px;
    background: linear-gradient(to right, var(--color1), var(--color3));
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100px 1px;
    font-size: 30px;
    z-index: 1;
    position: relative;
}

#top_contents1 h2::after {
    position: absolute;
    content: "QUALITY";
    font-size: 160px;
    color: var(--color3);
    width: 100%;
    text-align: center;
    bottom: 0;
    left: 0;
    z-index: -1;
    font-family: var(--font-en);
    letter-spacing: 20px;
    line-height: 1;
}
/* ------------------------------　contents1　▲------------------------------ */

/* ------------------------------　contents2　▼------------------------------ */

#top_contents2 .con_box .text_box h2{
    position: relative;
    font-size: 30px;
}

#top_contents2 .box1 a {
    display: inline-block;
    background: #1c233c;
    padding: 10px 50px;
    margin-top: 20px;
    color: white;
    transition: all 0.3s;
}

#top_contents2 .con_box .text_box h2::before{
    display: block;
    margin-bottom: 30px;
    font-family: var(--font-en);
    line-height: 1;
    font-size: 20px;
    letter-spacing: 3px;
    color: var(--color2);
    font-weight: normal;
}

#top_contents2 .con_box::before {
    position: absolute;
    font-size: 200px;
    font-family: var(--font-en);
    top: -40px;
    line-height: 1;
    font-weight: bold;
    z-index: 1;
}

#top_contents2 .con_box:nth-of-type(1) .text_box h2::before{
    content: "ABOUT US 01";
}

#top_contents2 .con_box:nth-of-type(2) .text_box h2::before{
    content: "ABOUT US 02";
}

#top_contents2 .box1 a,#top_contents2 .box2 a {
    display: inline-block;
    background: var(--color1);
    padding: 10px 50px;
    margin-top: 20px;
    color: white;
    transition: all 0.3s;
}

#top_contents2 .box1 a:hover,#top_contents2 .box2 a:hover{
    opacity:0.8;
    background: #fff;
    color: var(--color1);
}

#top_contents2 .img_box {
    position: relative;
}

/* #top_contents2 .con_box:first-child .img_box:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 40%;
    background-image: url(/Files/img/conbox01.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-size: 200px;
    pointer-events: none;
    z-index: 11;
}

#top_contents2 .con_box:nth-child(2) .img_box:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: -15%;
    background-image: url(/Files/img/conbox02.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-size: 200px;
    pointer-events: none;
    z-index: 1;
} */

#top_contents2 .con_box .con_img {
    border: 10px solid white;
    transform: rotate(-3.5deg) scale(0.8) translate(0px, 0px);
}

#top_contents2 .con_box:nth-of-type(2) .con_img{
    border: 10px solid white;
    transform: rotate(3.5deg) scale(0.8) translate(0px, 0px);
}


/* ------------------------------　contents2　▲------------------------------ */

.top_cms_title .cms_title_inner, .top_info_title .info_title_inner {
    background-image: url(/Files/img/bg2.png);
    background-position: center top;
    background-size: 50px;
    background-repeat: no-repeat;
    padding-top: 55px;
}

/* ---------------------------------------　footer　▼--------------------------- */


/* ----------　footer　top_contact_box　▼---------- */
#top_contact_box .tel_bt {
    max-width: 350px;
    height: 55px;
    padding: 8px 10px;
    box-sizing: border-box;
    background-color: var(--color1);
    border-color: transparent;
}

#top_contact_box .tel_bt:hover{
    border: 3px solid var(--black);
    background-color: var(--black);
}

#top_contact_box .con_bt:hover{
    border: 3px solid var(--black);
    background-color: var(--black);
}

#top_contact_box .con_bt a i {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: initial;
    content: "\f075" !important;
}


/* #top_contact_box .con_bt {
    background-color: #FFF;
    border: none;
}

#top_contact_box .con_bt:hover {
    background-color: var(--color1);
    transition: 0.3s;
    color: #FFF;
}

#top_contact_box .con_bt a:hover {
    color: #FFF;
    transition: 0.3s;
} */

/* ----------footer　top_contact_box　▲---------- */




/* ---------------------------------------　footer　▲--------------------------- */

/* -----------------------------------------------------------------------------------------------　下層ページ　--------------------------------------------------------------------------------------------------------- */
#page_title::before {
    background: rgb(0 0 0 / 0%) !important;

}

#cms_2-e .btn_container a:hover{
    transform: scale(1.1);
}

/*---------------------------------------------------------------------------------------------------------タブレット-----------------------------------------------------------------------------------------------------*/

@media screen and (max-width: 768px){

#fix_menu{
    width: auto;
}

#logo h1.logo {
        top: 20%;
        left: 5px;
        transform: none;
        max-width: 200px;
    }

#header{
    width: 100%!important;
    padding-right: 90px;
}

#header .h_contents{
    height: 100%;
}

#header #logo{
    width: auto!important;
height: 100%;
}

#header #logo h1 {
        width: 300px !important;
        max-width: inherit;
}

#header .tel_bt_h span.font_4dw i{
    display: inline-block;
}

#logo h1.logo {
    max-width: 285px;
}

#main_img .catch {top: auto;left: 50%;transform: translateX(-50%);bottom: 2vw;width: max(550px, 30vw);}

#top_contents1 h2::after {
    font-size: 60px;
}

#top_contents1 h2, #top_contents2 h2, #top_cms h2, .title_box h2, .gyoumu_box h2 {
    font-size: calc(1rem + 15px);
}

#top_contents2 .box1 a,#top_contents2 .box2 a {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background-position: center;
}

}

/*---------------------------------------------------------------------------------------------------------スマホ---------------------------------------------------------------------------------------------------------*/

@media screen and (max-width: 667px){
#main_img img {
    object-fit: cover;
    height: auto !important;
    width: 100%;
}

#main_img {
   height: auto !important;
}


#main_img .catch {
    width: 95vw;
    bottom: 1%;
}

#top_contents1 h2 {
    font-size: 21px;
}


#top_contents2 .con_box .text_box h2 {
    position: relative;
    font-size: 22px;
}

#top_contents1 h2, #top_contents2 h2, #top_cms h2, .title_box h2, .gyoumu_box h2 {
    font-size: calc(1rem + 5px);
    text-align: center;
}

.overlay-menu .tel_bt a i {
    font-size: -webkit-calc(1rem + 4px);
    font-size: calc(1rem + 4px);
}

}

/*-----------------------------------------------------------------------------------------tb_sns_wrap .sns_links_tb li 調節部分------------------------------------------------------------------------------------------*/

@media screen and (max-width: 768px){
.tb_sns_wrap .sns_links_tb li{
	margin: 0 5%;
	height: 30px!important;
	width: 75px !important;
}
}

@media screen and (max-width: 667px){
.tb_sns_wrap .sns_links_tb li{
	margin: 0 5%;
	height: 30px !important;
	width: 90px !important;
}
}