
/* Style for PCs */
@media screen and (min-width: 1025px) {

/* Header */
header {
  width:100%;
  height: 110px;
  display: block;
  position: fixed;
  top:0px;
  left:0;
  z-index:19850;
  transition: .4s all;
}
header figure {
  width:100px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top:0px;
  left:50%;
  transform: translateX(-50%);
  z-index:19900;
  transition: .4s all;
}
header figure a {
  width: 100%;
  height: auto;
  display: block;
  transition: .4s all;
}
header figure a:hover {
  opacity: 0.6;
}
header figure img {
  width:100%;
  height: auto;
  display: block;
}

header figure img.logo_txt {
  display: block;
}
header figure img.logo_cir {
  display: none;
}

/* Header (Active) */
header.site_active {
  width:100%;
  height: 60px;
  display: block;
  position: fixed;
  top:0px;
  left:0;
  z-index:18500;
  background: var(--color-1st);
  box-shadow:0px 1px 10px rgba(0,0,0,0.4);
}
header.site_active figure {
  width:200px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top:0px;
  left:2%;
  transform: translateX(0%);
  z-index:18600;
}
header.site_active figure img {
  width:auto;
  height: 50px;
  display: block;
}
header.site_active figure img.logo_txt {
  display: none;
}
header.site_active figure img.logo_cir {
  display: block;
}


/* Contact Bar */
.contactbar {
  width:60px;
  height: 120px;
  display: flex;
  flex-direction: column;
  position: fixed;
  top:50%;
  right:-80px;
  z-index:19800;
  transform: translateY(-50%);
  background-color: var(--color-2nd);
  box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  transition: .4s all;
}
.contactbar li.cb_tel {
  width:60px;
  height: 60px;
  display: block;
  margin-right:0px;
}
.contactbar li.cb_tel a {
  width:100%;
  height: 60px;
  display: block;
  text-decoration: none;
  text-indent: -9999px;
  background-image: url(../img/header/ic-tel_w.webp);
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: auto 35px;
  padding:0 0 0 0;
  transition: .4s all;
}
.contactbar li.cb_tel a:hover {
  background-color: var(--color-1st);
  opacity: 1;
}
.contactbar li.cb_mail {
  width:60px;
  height: 60px;
  display: block;
  margin-right:0px;
}
.contactbar li.cb_mail a {
  width:100%;
  height: 60px;
  display: block;
  text-decoration: none;
  text-indent: -9999px;
  background-image: url(../img/header/ic-mail_w.webp);
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: auto 35px;
  padding:0 0 0 0;
  transition: .4s all;
}
.contactbar li.cb_mail a:hover {
  background-color: var(--color-1st);
  opacity: 1;
}


.contactbar li.cb_ins {
  width:60px;
  height: 60px;
  display: block;
}
.contactbar li.cb_ins a {
  width:60px;
  height: 60px;
  display: block;
  text-indent: -9999px;
  background-image: url(../img/header/ic-ins_w.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 35px;
  transition: .4s all;
}
.contactbar li.cb_line {
  width:60px;
  height: 60px;
  display: block;
}
.contactbar li.cb_line a {
  width:60px;
  height: 60px;
  display: block;
  text-indent: -9999px;
  background-image: url(../img/header/ic-line_w.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 35px;
  transition: .4s all;
}
.contactbar li.cb_ins a:hover, .contactbar li.cb_line a:hover {
  background-color: var(--color-1st);
}

/* Contact Bar(Active) */
.contactbar.site_active {
  right:0;
}


/* Footer */
footer {
  width:100%;
  height:auto;
  display: block;
  padding:50px 5% 90px;
}
.ftbody {
  width:100%;
  max-width:1600px;
  height: auto;
  display: flex;
  justify-content: space-between;
  margin:0 auto 25px;
}
.ft01 {
  width:70%;
}
.ft02 {
  width:30%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left:100px;
  background-image: url(../img/header/logo_w.webp);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 80px auto;
}
.ft02 h2 {
  font-size:20px;
  font-weight: 400;
  line-height: 1em;
  color:var(--color-white);
  margin-bottom: 0.25em;
}
.ft02 p.ftad01 {
  font-size:14px;
  font-weight: 400;
  line-height: 1.5em;
  color:var(--color-white);
  margin-bottom: 0.5em;
}
.ft02 p.fttel {
  width:fit-content;
  height: auto;
  display: block;
  font-size:18px;
  font-weight: 400;
  line-height: 1.5em;
  color:var(--color-white);
  margin-bottom: 0em;
}
.ft02 p.fttel a {
  width:100%;
  height: auto;
  min-height: 30px;
  display: block;
  padding-left:35px;
  text-decoration: none;
  color:var(--color-white);
  background-image: url(../img/header/ic-tel_w.webp);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 30px auto;
}
.ftbody ul {
  width:100%;
  height:auto;
  display:flex;
  flex-wrap: wrap;
  margin-bottom:0px;
}
.ftbody ul li {
  width:25%;
  height: auto;
  display: block;
  font-size:12px;
  line-height: 1.5em;
  margin:0 1em;
}
.ftbody ul li a {
  width:100%;
  height: auto;
  display: block;
  color:var(--color-white);
  text-decoration: none;
  padding:1em 0.5em 1em 0.5em;
  background-image: url(../img/header/ic-ar_h_w.webp);
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: auto 14px;
  transition: .4s all;
}
.ftbody ul li a:hover {
  color:var(--color-white);
  text-decoration: underline;
}
footer p.ftcopy {
  text-align: center;
  font-size:12px;
  line-height: 1em;
  margin:0;
  color:var(--color-white);
}


}


/* Style for iPad Pro */
@media screen and (min-width: 769px) and (max-width: 1024px) {

/* Header */
header {
  width:100%;
  height: 110px;
  display: block;
  position: fixed;
  top:0px;
  left:0;
  z-index:19850;
  transition: .4s all;
}
header figure {
  width:100px;
  height:150px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top:10px;
  left:2%;
  z-index:19900;
  transition: .4s all;
}
header figure a {
  width: 100%;
  height: auto;
  display: block;
  transition: .4s all;
}
header figure a:hover {
  opacity: 0.6;
}
header figure img {
  width:100%;
  height: auto;
  display: block;
}

header figure img.logo_txt {
  display: block;
}
header figure img.logo_cir {
  display: none;
}

/* Header (Active) */
header.site_active {
  width:100%;
  height: 60px;
  display: block;
  position: fixed;
  top:0px;
  left:0;
  z-index:18500;
  background: var(--color-1st);
  box-shadow:0px 1px 10px rgba(0,0,0,0.4);
}
header.site_active figure {
  width:200px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top:0px;
  left:2%;
  z-index:18600;
}
header.site_active figure img {
  width:auto;
  height: 50px;
  display: block;
}
header.site_active figure img.logo_txt {
  display: none;
}
header.site_active figure img.logo_cir {
  display: block;
}


/* Contact Bar */
.contactbar {
  width:60px;
  height: 120px;
  display: flex;
  flex-direction: column;
  position: fixed;
  top:50%;
  right:-80px;
  z-index:19800;
  transform: translateY(-50%);
  background-color: var(--color-2nd);
  box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  transition: .4s all;
}
.contactbar li.cb_tel {
  width:60px;
  height: 60px;
  display: block;
  margin-right:0px;
}
.contactbar li.cb_tel a {
  width:100%;
  height: 60px;
  display: block;
  text-decoration: none;
  text-indent: -9999px;
  background-image: url(../img/header/ic-tel_w.webp);
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: auto 35px;
  padding:0 0 0 0;
  transition: .4s all;
}
.contactbar li.cb_tel a:hover {
  background-color: var(--color-1st);
  opacity: 1;
}
.contactbar li.cb_mail {
  width:60px;
  height: 60px;
  display: block;
  margin-right:0px;
}
.contactbar li.cb_mail a {
  width:100%;
  height: 60px;
  display: block;
  text-decoration: none;
  text-indent: -9999px;
  background-image: url(../img/header/ic-mail_w.webp);
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: auto 35px;
  padding:0 0 0 0;
  transition: .4s all;
}
.contactbar li.cb_mail a:hover {
  background-color: var(--color-1st);
  opacity: 1;
}


.contactbar li.cb_ins {
  width:60px;
  height: 60px;
  display: block;
}
.contactbar li.cb_ins a {
  width:60px;
  height: 60px;
  display: block;
  text-indent: -9999px;
  background-image: url(../img/header/ic-ins_w.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 35px;
  transition: .4s all;
}
.contactbar li.cb_line {
  width:60px;
  height: 60px;
  display: block;
}
.contactbar li.cb_line a {
  width:60px;
  height: 60px;
  display: block;
  text-indent: -9999px;
  background-image: url(../img/header/ic-line_w.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 35px;
  transition: .4s all;
}
.contactbar li.cb_ins a:hover, .contactbar li.cb_line a:hover {
  background-color: var(--color-1st);
}

/* Contact Bar(Active) */
.contactbar.site_active {
  right:0;
}


/* Footer */
footer {
  width:100%;
  height:auto;
  display: block;
  padding:50px 5% 90px;
}
.ftbody {
  width:100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin:0 auto 25px;
}
.ft01 {
  width:100%;
  height:auto;
  display: block;
  order:2;
}
.ft02 {
  width:100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-top:115px;
  background-image: url(../img/header/logo_w.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100px;
  margin-bottom: 30px;
  order:1;
}
.ft02 h2 {
  font-size:20px;
  font-weight: 400;
  line-height: 1em;
  color:var(--color-white);
  margin-bottom: 0.25em;
}
.ft02 p.ftad01 {
  font-size:14px;
  font-weight: 400;
  line-height: 1.5em;
  color:var(--color-white);
  margin-bottom: 0.5em;
}
.ft02 p.fttel {
  width:fit-content;
  height: auto;
  display: block;
  font-size:18px;
  font-weight: 400;
  line-height: 1.5em;
  color:var(--color-white);
  margin:0 auto;
}
.ft02 p.fttel a {
  width:100%;
  height: auto;
  min-height: 30px;
  display: block;
  padding-left:35px;
  text-decoration: none;
  color:var(--color-white);
  background-image: url(../img/header/ic-tel_w.webp);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 30px auto;
}
.ftbody ul {
  width:100%;
  height:auto;
  display:flex;
  flex-wrap: wrap;
  margin-bottom:0px;
}
.ftbody ul li {
  width:32.3333333333%;
  height: auto;
  display: block;
  font-size:12px;
  line-height: 1.5em;
  margin:0 0.5% 1%;
}
.ftbody ul li a {
  width:100%;
  height: auto;
  display: block;
  color:var(--color-white);
  text-decoration: none;
  padding:1em 0.5em 1em 0.5em;
  background-image: url(../img/header/ic-ar_h_w.webp);
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: auto 14px;
  border:1px solid rgba(255,255,255,0.5);
  border-radius: 5px;
  transition: .4s all;
}
.ftbody ul li a:hover {
  color:var(--color-white);
  text-decoration: none;
  background-color: var(--color-5th);
}
footer p.ftcopy {
  text-align: center;
  font-size:12px;
  line-height: 1em;
  margin:0;
  color:var(--color-white);
}

}

/* Style for Smartphone */
@media screen and (max-width: 768px) {

/* Header */
header {
  width:100%;
  height: 110px;
  display: block;
  position: fixed;
  top:0px;
  left:0;
  z-index:19850;
  transition: .4s all;
}
header figure {
  width:80px;
  height:120px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top:10px;
  left:2%;
  z-index:19900;
  transition: .4s all;
}
header figure a {
  width: 100%;
  height: auto;
  display: block;
  transition: .4s all;
}
header figure a:hover {
  opacity: 0.6;
}
header figure img {
  width:100%;
  height: auto;
  display: block;
}

header figure img.logo_txt {
  display: block;
}
header figure img.logo_cir {
  display: none;
}

/* Header (Active) */
header.site_active {
  width:100%;
  height: 60px;
  display: block;
  position: fixed;
  top:0px;
  left:0;
  z-index:18500;
  background: var(--color-1st);
  box-shadow:0px 1px 10px rgba(0,0,0,0.4);
}
header.site_active figure {
  width:200px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top:0px;
  left:2%;
  z-index:18600;
}
header.site_active figure img {
  width:auto;
  height: 50px;
  display: block;
}
header.site_active figure img.logo_txt {
  display: none;
}
header.site_active figure img.logo_cir {
  display: block;
}


/* Contact Bar */
.contactbar {
  width:100%;
  height: 80px;
  display: flex;
  justify-content: flex-end;
  position: fixed;
  top:auto;
  bottom: -90px;
  right:0;
  z-index:19800;
  background-color: var(--color-2nd);
  box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
  transition: .4s all;
}
.contactbar li.cb_tel {
  width:50%;
  height: 80px;
  display: block;
  margin-right:0px;
}
.contactbar li.cb_tel a {
  width:100%;
  height: 80px;
  display: block;
  text-decoration: none;
  color:var(--color-white);
  font-size:14px;
  letter-spacing: 0px;
  font-weight: 400;
  line-height: 15px;
  text-align: center;
  background-image: url(../img/header/ic-tel_w.webp);
  background-repeat: no-repeat;
  background-position: center 10px;
  background-size: auto 30px;
  padding:45px 0 10px 0;
  transition: .4s all;
}
.contactbar li.cb_tel a:hover {
  background-color: var(--color-1st);
  opacity: 1;
}
.contactbar li.cb_mail {
  width:50%;
  height: 80px;
  display: block;
  margin-right:0px;
}
.contactbar li.cb_mail a {
  width:100%;
  height: 80px;
  display: block;
  text-decoration: none;
  color:var(--color-white);
  font-size:12px;
  letter-spacing: 0px;
  font-weight: 400;
  line-height: 15px;
  text-align: center;
  background-image: url(../img/header/ic-mail_w.webp);
  background-repeat: no-repeat;
  background-position: center 10px;
  background-size: auto 30px;
  padding:45px 0 10px 0;
  transition: .4s all;
}
.contactbar li.cb_mail a:hover {
  background-color: var(--color-1st);
  opacity: 1;
}

.contactbar li.cb_ins {
  width:15%;
  height: 80px;
  display: block;
}
.contactbar li.cb_ins a {
  width:100%;
  height: 80px;
  display: block;
  text-indent: -9999px;
  background-image: url(../img/header/ic-ins_w.webp);
  background-repeat: no-repeat;
  background-position:center 20px;
  background-size: auto 30px;
  transition: .4s all;
}
.contactbar li.cb_line {
  width:15%;
  height: 80px;
  display: block;
}
.contactbar li.cb_line a {
  width:100%;
  height: 80px;
  display: block;
  text-indent: -9999px;
  background-image: url(../img/header/ic-line_w.webp);
  background-repeat: no-repeat;
  background-position:center 20px;
  background-size: auto 30px;
  transition: .4s all;
}
.contactbar li.cb_ins a:hover, .contactbar li.cb_line a:hover {
  background-color: var(--color-1st);
}

/* Contact Bar(Active) */
.contactbar.site_active {
  bottom: 0px;
}


/* Footer */
footer {
  width:100%;
  height:auto;
  display: block;
  padding:50px 5% 110px;
}
.ftbody {
  width:100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin:0 auto 25px;
}
.ft01 {
  width:100%;
  height:auto;
  display: block;
  order:2;
}
.ft02 {
  width:100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-top:115px;
  background-image: url(../img/header/logo_w.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100px;
  margin-bottom: 30px;
  order:1;
}
.ft02 h2 {
  font-size:20px;
  font-weight: 400;
  line-height: 1em;
  color:var(--color-white);
  margin-bottom: 0.25em;
}
.ft02 p.ftad01 {
  font-size:14px;
  font-weight: 400;
  line-height: 1.5em;
  color:var(--color-white);
  margin-bottom: 0.5em;
}
.ft02 p.fttel {
  width:fit-content;
  height: auto;
  display: block;
  font-size:18px;
  font-weight: 400;
  line-height: 1.5em;
  color:var(--color-white);
  margin:0 auto;
}
.ft02 p.fttel a {
  width:100%;
  height: auto;
  min-height: 30px;
  display: block;
  padding-left:35px;
  text-decoration: none;
  color:var(--color-white);
  background-image: url(../img/header/ic-tel_w.webp);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 30px auto;
}
.ftbody ul {
  width:100%;
  height:auto;
  display:flex;
  flex-wrap: wrap;
  margin-bottom:0px;
}
.ftbody ul li {
  width:100%;
  height: auto;
  display: block;
  font-size:12px;
  line-height: 1.5em;
  margin:0 0 10px;
}
.ftbody ul li a {
  width:100%;
  height: auto;
  display: block;
  color:var(--color-white);
  text-decoration: none;
  padding:1em 0.5em 1em 0.5em;
  background-image: url(../img/header/ic-ar_h_w.webp);
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: auto 14px;
  border:1px solid rgba(255,255,255,0.5);
  border-radius: 5px;
  transition: .4s all;
}
.ftbody ul li a:hover {
  color:var(--color-white);
  text-decoration: none;
  background-color: var(--color-5th);
}
footer p.ftcopy {
  text-align: center;
  font-size:10px;
  line-height: 1em;
  margin:0;
  color:var(--color-white);
}

}
