@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {
  scroll-behavior: smooth;
}

body{
    margin: 0px;
    padding: 0px;
    font-family: "Noto Sans JP", sans-serif;
    color: #434345;
}
img{
    margin: 0;
    padding: 0;
    vertical-align: bottom;
    height: auto;
    width: 100%;
}
h1,h2,h3,h4,h5,h6,p,ul {
margin-top: 0px;
margin-right: 0px;
margin-left: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-right: 0px;
padding-left: 0px;
padding-bottom: 0px;
}
ul {
    list-style-type: none;
	
}
.cl {
clear: both;
}
a:hover {
opacity:0.7;
filter: alpha(opacity=70);
-ms-filter: "alpha( opacity=70 )";
-webkit-transition: 0.3s ease-in-out;
-moz-transition: 0.3s ease-in-out;
-o-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}
a {
    color: inherit;
    text-decoration: none;
	transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
}
.il_blck {
    display: inline-block;
}

/* ロゴ全体ラッパー（背景） */
#intro-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  animation: bgFadeOut 1s ease 3s forwards; /* 背景は少し遅れて消える */
}

/* ロゴ画像 */
#intro-logo img {
  width: 400px;
  opacity: 0;
  animation:
    fadeIn 1s ease 0s forwards,     /* すぐに1秒で表示 */
    fadeOut 1s ease 3s forwards;    /* 2秒後から1秒で消える */
}

/* アニメーション */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@keyframes bgFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* メイン非表示 → ロード済みで表示 */
#main-content {
  visibility: hidden;
}
body.loaded #main-content {
  visibility: visible;
}

.only_sp {
	display: none;
}

.linkbtn.center {
    text-align: center;
}
.link-invert {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    background-color: #de2526;
    padding-top: 16px;
    padding-right: 16px;
    padding-left: 24px;
    padding-bottom: 16px;
    border-radius: 32px;
    box-sizing: border-box;
    background-image: url(../images/arrow_wht-circle.svg);
    background-repeat: no-repeat;
    background-size: 24px auto;
    background-position: right 16px center;
    transition: color 0.3s ease-in-out,
        background-color 0.3s ease-in-out,
        background-image 0.3s ease-in-out;
    text-align: left;
    min-width: 244px;
    border: 0.1em solid #de2526;
}
.link-invert:hover {
	opacity: 1;
    color: #de2526;
    background-color: #FFFFFF;
    background-image: url("../images/arrow_org-circle.svg");
	border: 0.1em solid #de2526;
}
.content_wrap {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.content_wrap.flex {
    display: flex;
    justify-content: space-between;
}

.hg_h2 {
}
.hg_h2.center {
    text-align: center;
}

.h2_eng {
    color: #de2526;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding-bottom: 8px;
    letter-spacing: 0.03em;
}
.h2_eng.white {
    color: #FFFFFF;
}

.hg_h2 h2 {
    font-size: 32px;
    line-height: 1.3em;
    letter-spacing: 0.03em;
}
.hg_h2 h2.white {
    color: #FFFFFF;
}


.hg_deco {
	display: inline-block;
    padding-right: 24px;
    padding-bottom: 24px;
    background-image: url(../images/dot_deco_hg.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 48px auto;
}

.hg_h2.center h2.white .hg_deco {
    padding-right: 0px;
    background-position: center bottom;
    background-image: url(../images/dot_deco_white_transp.svg);
    padding-bottom: 24px;
}
.hg_h2.center h2 .hg_deco {
    padding-right: 0px;
    background-position: center bottom;
    padding-bottom: 24px;
}
.hg_h2 h2.white .hg_deco {
    padding-right: 24px;
    padding-bottom: 24px;
    background-image: url(../images/dot_deco_white_transp.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 48px auto;
}
#foot_contact {
    padding-top: 4.61%;
    padding-right: 6.15%;
    padding-left: 6.15%;
    padding-bottom: 4.61%;
    background-image: url(../images/foot_contact_bg.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center top;
}
#foot_contact .content_wrap {
    border-radius: 12px;
    padding: 40px;
    background-color: hsla(0,0%,100%,0.90);
    justify-content: space-around;
}
#foot_contact_head {
}
#foot_contact_head .hg_h2 {
    margin-bottom: 16px;
}

#foot_contact_head p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6em;
}
#foot_contact_cont {
}
#foot_contact_tel {
    font-size: 34px;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 24px;
}
#foot_contact_tel img {
    width: 18px;
    margin-right: 4px;
}

#foot_contact_tel a {
	pointer-events: none;
}
#foot_contact_tel span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    line-height: 1em;
    margin-top: 8px;
}
footer {
    background-color: #EFE8E8;
    padding-top: 5.38%;
    padding-right: 32px;
    padding-left: 32px;
    padding-bottom: 8px;
}
#footer_inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;

    
}
#foot_menu {
    display: flex;
    justify-content: space-around;
}
#foot_menu ul {
    margin-right: 16px;
    margin-left: 16px;
}
#foot_menu ul li {
    margin-bottom: 16px;
}
#foot_menu ul li a {
    font-size: 14px;
    line-height: 1em;
    font-weight: 500;
    border-bottom: 0.2em dotted #de2526;
    padding-bottom: 8px;
    display: block;
}
#foot_menu_flex {
    display: flex;
}

#foot_menu ul li ul {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;

}
#foot_menu ul li ul li {
    margin-top: 16px;
    margin-bottom: 0px;
    margin-left: 8px;

}
#foot_menu_flex ul .foot_menu_kind {
    font-size: 14px;
    font-weight: 500;
    list-style-type: disc;
    padding-left: 0px;
}
#foot_menu ul li #foot_menu_flex ul {
    padding-left: 8px;
    width: auto;
    margin-right: 32px;
}


#foot_menu ul li ul li a {
    font-size: 13px;
    padding-bottom: 4px;
    border-bottom: 0.05em solid #de2526;
}







#foot_info  {
    display: flex;
    align-items: center;
    margin-top: 32px;
    border-top: 1px solid #999999;
    padding-top: 24px;
    margin-bottom: 16px;
    justify-content: center;
}
#foot_logo {
    width: 304px;
    margin-left: 3.84%;
    margin-right: 3.84%;
}
#foot_logo img {


}

#foot_address {
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 500;
    margin-left: 3.84%;
    margin-right: 3.84%;
}
#copywright {
    font-size: 11px;
    text-align: center;
}










.animate-on-scroll {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
	overflow-x: hidden;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.delay-3 {
  transition-delay: 0.6s;
}

/* 下から浮き上がる（フェードイン＋Y軸） */
.from-bottom {
  transform: translateY(50px);
	overflow-y: hidden;
}
.from-bottom.visible {
  transform: translateY(0);
}



.pagetitle_wrap {
    background-image: url("../images/dot_deco_large.svg"), -webkit-linear-gradient(270deg,rgba(249,247,244,1.00) 75.20%,rgba(249,247,244,0.00) 100%);
    background-image: url("../images/dot_deco_large.svg"), -moz-linear-gradient(270deg,rgba(249,247,244,1.00) 75.20%,rgba(249,247,244,0.00) 100%);
    background-image: url("../images/dot_deco_large.svg"), -o-linear-gradient(270deg,rgba(249,247,244,1.00) 75.20%,rgba(249,247,244,0.00) 100%);
    background-image: url("../images/dot_deco_large.svg"), linear-gradient(180deg,rgba(249,247,244,1.00) 75.20%,rgba(249,247,244,0.00) 100%);
    background-size: 400px, cover;
    background-position: right bottom -144px, center;
	background-repeat: no-repeat, no-repeat;
    padding-right: 6.15%;
    padding-left: 6.15%;
    height: 232px;
    display: flex;
    align-items: center;
}
.pagetitle_wrap.pt_aboutus {
    background-image: url(../images/aboutus_bg.png);
    background-size: cover;
    background-position: right bottom;
    height: 384px;
}
.pagetitle_wrap.pt_aboutus .hg_h1 {
    margin-top: -56px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.pagetitle_wrap.pt_aboutus .pagetitle {
    font-size: 32px;
}


.hg_h1 {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.h1_eng {
	color: #de2526;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding-bottom: 8px;
    letter-spacing: 0.03em;
}
.pagetitle {
	font-weight: 600;
    font-size: 36px;
    line-height: 1.3em;
    letter-spacing: 0.03em;
    overflow-y: hidden;
}
.pagetitle span {
	color: #de2526;
	font-size: 24px;
    line-height: 1.3em;
}
