@charset "utf-8";

@media (max-width: 700px) {

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: 320px;
    opacity: 0;
    animation: fadeIn 1s ease 0s forwards,     /* すぐに1秒で表示 */
    fadeOut 1s ease 3s forwards;    /* 2秒後から1秒で消える */
}



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

.only_pc {
	display: none;
}
.only_sp {
	display: inherit;
}

	
.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;
    flex-wrap: wrap;
}

.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: 24px;
    line-height: 1.3em;
    letter-spacing: 0.03em;
}
.hg_h2 h2.white {
    color: #FFFFFF;
}


.hg_deco {
    display: inline-block;
    padding-right: 20px;
    padding-bottom: 20px;
    background-image: url(../images/dot_deco_hg.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 36px 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: 20px;
}
.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: 36px auto;
}
#foot_contact {
    padding-top: 9.23%;
    padding-right: 5.38%;
    padding-left: 5.38%;
    padding-bottom: 9.23%;
    background-image: url(../images/foot_contact_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
}
#foot_contact .content_wrap {
    border-radius: 12px;
    padding: 32px;
    background-color: hsla(0,0%,100%,0.86);
    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;
    margin-top: 16px;
}
#foot_contact_tel img {
    width: 18px;
    margin-right: 4px;
}

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

    
}
#foot_menu {
    display: none;
    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: 0px;
    border-top: 1px none #999999;
    padding-top: 0px;
    margin-bottom: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
#foot_logo {
    width: 304px;
    margin-left: auto;
    margin-right: auto;
}
#foot_logo img {


}

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










.animate-on-scroll {
  opacity: 0;
  transform: translateX(20px);
  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);
}
.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: 70%, cover;
    background-position: right -104px bottom -60px, center;
    background-repeat: no-repeat, no-repeat;
    padding-right: 5.38%;
    padding-left: 5.38%;
    height: 208px;
    display: flex;
    align-items: center;
}
.pagetitle_wrap.pt_aboutus {
    background-image: url(../images/aboutus_bg.png);
    background-size: cover;
    background-position: right bottom;
    height: 336px;
}
.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: 26px;
}


.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-size: 30px;
    line-height: 1.3em;
    letter-spacing: 0.03em;
    overflow-y: hidden;
}
.pagetitle span {
	color: #de2526;
	font-size: 20px;
    line-height: 1.3em;
}
}
