  @font-face {
	font-family: 'MyFont';
	src: url(../chogokubosogothic/chogokubosogothic_5.ttf);
  }
  .font_style {
    font-family: 'MyFont';
  }

  .right-align {
    text-align: right;
  }

  .img_top_line {
    width: 13%;
    float: right;
    margin-left: 10px;
  }

  p {
    display: inline-block;
    margin-right: 25px; /* 間隔を調整 */
  }

  hr {
     border: 2px solid black;
  }

  address p {
     margin:3px;
  }

/* Copilot */

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.footer {
  background-color: #222;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo h2 {
  margin: 0;
  font-size: 24px;
  color: #8e6628;
}

.footer-links a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #8e6628;
}

.footer-links_origin a {
  margin: 0 5px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links_origin a:hover {
  color: #8e6628;
}
.footer-social a {
  margin: 0 10px;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s;
}

.footer-social a:hover {
  transform: scale(1.2);
}

.footer-copyright {
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}

@media (max-width: 768px) {
  .footer-links, .footer-social {
    display: block;
    margin: 10px 0;
  }
}

.hover10 {
	border-radius: 50%;
	transition: all 0.6s ease 0s;
}
.hover10:hover {
	cursor: pointer;
	transform: scale(1.1, 1.1);
}

.hover9 {
	display: inline-block;
	position: relative;
	text-decoration: none;
}
.hover9::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: #2196F3;
	transition: all 0.3s ease 0s;
}
.hover9:hover {
	cursor: pointer;
}
.hover9:hover::after {
	width: 100%;
}

/* ページトップボタン*/

#page_top{
  width: 90px;
  height: 90px;
  position: fixed;
  right: 0;
  bottom: 50px;
  opacity: 0.6;
}
#page_top a{
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #3f98ef;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
  content: 'PAGE TOP';
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  color: #3f98ef;
}