@charset "utf-8";
/* CSS Document */
/* リセットCSS ▼*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:where([hidden]:not([hidden="until-found"])) {
  display: none !important;
}
:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  tab-size: 2;
  scrollbar-gutter: stable;
}
:where(html:has(dialog:modal[open])) {
  overflow: clip;
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
:where(button) {
  all: unset;
}
:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}
:where(textarea) {
  resize: vertical;
  resize: block;
}
:where(button, label, select, summary, [role="button"], [role="option"]) {
  cursor: pointer;
}
:where(:disabled) {
  cursor: not-allowed;
}
:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}
:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}
:where(ul, ol) {
  list-style: none;
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}
:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}
:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}
:where(dialog) {
  border: none;
  background: none;
  inset: unset;
  max-width: unset;
  max-height: unset;
}
:where(dialog:not([open])) {
  display: none !important;
}
:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}
:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}
:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}
/* リセットCSSカスタマイズ ▼*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1,
h2,
h3 {
  text-wrap: auto;
}
/* リセットCSS ▲*/
/* ベース▼*/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #444;
  line-height: 1.7;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 24px;
}
.ttl {
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 65px;
}
p {
  font-family: "Noto Sans JP", sans-serif;
  color: #444;
  font-size: 16px;
  font-weight: bold;
}
a {
  text-decoration: none;
}
.read-more {
  font-size: 18px;
  font-weight: bold;
  margin-top: 60px;
}
.read-more::before {
  content: ">>";
}
.read-more a {
  position: relative;
}
.read-more a::before {
  background: #444;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.read-more a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
/* パンくずリスト共通 */
.breadcrumbs {
  width: 100%;
  padding-left: 5%;
  padding-top: 10px;
  padding-bottom: 9px;
}
.breadcrumbs-in {
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  color: #888;
}
.breadcrumbs-in li {
  margin-right: 10px;
}
.breadcrumbs-in li::after {
  content: "/";
  margin: 0 10px;
}
li.bcl-last::after {
  content: none;
}
/* header▼*/
header {
  width: 100%;
  height: 100px;
  padding: 0 5% 0 5%;
  display: flex;
  justify-content: space-between;
}
.logo-type {
  margin-top: 35px;
}
/* nav▼*/
nav {
  margin-top: 56px;
}
#gb-nav ul {
  display: flex;
  justify-content: space-between;
}
#gb-nav ul li {
  font-size: 16px;
  font-weight: bold;
  margin-right: 40px;
}
#gb-nav ul li a {
  padding-bottom: 5px;
  position: relative;
}
#gb-nav ul li a::before {
  background: #444;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
#gb-nav ul li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
#gb-nav ul li:last-child {
  margin-right: 0;
}
.menu-cover {
  display: none;
}
/* MV▼*/
.mv {
  width: 100%;
  height: auto;
  background-image: url("../images/top.jpg");
  background-position: center;
  background-size: cover;
  background-color: #fff;
  background-repeat: no-repeat;
}
.mv-ttl {
  width: 50%;
  background: rgba(255, 255, 255, 0.8);
  font-size: 50px;
  font-weight: bold;
  padding-top: 20%;
  padding-bottom: 20%;
  padding-left: 5%;
  padding-right: 5%;
}
/* about▼*/
.sec-1 {
  width: 1200px;
  height: auto;
  margin: 0 auto;
  padding-top: 150px;
}
.sec-1-cover {
  display: flex;
  justify-content: space-between;
}
.sec-1-left {
  width: 46%;
  margin-top: 60px;
}
.sec-1-right {
  width: 46%;
  margin-top: 60px;
}
/* service-company▼*/
.sec-2 {
  width: 1200px;
  height: auto;
  margin: 0 auto;
}
.sec-2-cover {
  display: flex;
  justify-content: space-between;
}
.sec-2-left {
  width: 46%;
  margin-top: 150px;
  margin-bottom: 150px;
}
.sec-2-right {
  width: 46%;
  margin-top: 150px;
  margin-bottom: 150px;
}
.sec2-img {
  margin-top: 60px;
}
/* CONTACT▼*/
.sec-3 {
  width: 100%;
  height: auto;
  background-image: url("../images/contact-bg.jpg");
  background-position: center;
  background-size: cover;
  background-color: #fff;
  background-repeat: no-repeat;
  padding-top: 150px;
  padding-bottom: 150px;
}
.sec-3 .ttl,
.sec-3 h2 {
  text-align: center;
}
.btn-cover {
  padding-top: 60px;
  margin: 0 auto;
  width: 600px;
  display: flex;
  justify-content: space-between;
}
.tel {
  width: 270px;
  height: 125px;
  border: solid 2px #444;
  padding: 20px 0 20px 0;
}
.tel-number {
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 34px;
  text-align: center;
}
.tel-etc {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.btn {
  width: 270px;
  height: 125px;
  background-color: #444;
  color: #fff;
  text-align: center;
  padding: 30px 0 30px 0;
  font-size: 18px;
  display: block;
}
.btn.slide {
  background: #444;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.btn.slide::after {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.btn.slide:hover {
  color: #444;
  font-weight: bold;
  border: 2px solid #444;
}
.btn.slide:hover::after {
  transform: scale(1, 1);
}
.s {
  font-size: 18px;
}
/* footer▼*/
.footer-cover {
  width: 100%;
  background-color: #fff;
  height: auto;
  margin: 0 auto;
  padding: 100px 5% 100px 5%;
  display: flex;
  justify-content: space-between;
}
.footer-logo {
  font-size: 36px;
  font-weight: bold;
}
.footer-p {
  margin-top: 30px;
  font-size: 16px;
  font-weight: bold;
}
.footer-menu {
  font-size: 24px;
  font-weight: bold;
}
.footer-menu-ul ul {
  display: flex;
  margin-top: 30px;
  font-size: 16px;
  font-weight: bold;
}
.footer-menu-ul ul li {
  padding-right: 30px;
}
.footer-menu-ul ul li:last-child {
  padding-right: 0;
}
.copy {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 30px;
}
.footer-menu-ul a {
  padding-bottom: 5px;
  position: relative;
}
.footer-menu-ul a::before {
  background: #444;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.footer-menu-ul a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.footer-menu-ul:last-child {
  margin-right: 0;
}
/* service▼*/
.sub-mv {
  width: 100%;
  height: auto;
}
.service {
  margin-top: 120px;
  margin-bottom: 150px;
}
.service-cover {
  width: 560px;
  border-top: solid 1px #888;
  border-bottom: solid 1px #888;
  margin: 0 auto;
  padding: 60px;
}
.service-cont {
  display: flex;
  font-size: 16px;
  font-weight: bold;
  color: #444;
  padding-bottom: 20px;
}
.service-cont:last-child {
  padding-bottom: 0;
}
.service-cont-left {
  width: 35%;
}
.service .ttl,
.service h2 {
  text-align: center;
}
.service h2 {
  margin-bottom: 60px;
}
/* company▼*/
.sub-mv {
  width: 100%;
  height: auto;
}
.company {
  margin-top: 120px;
  margin-bottom: 150px;
}
.company-cover {
  width: 560px;
  border-top: solid 1px #888;
  border-bottom: solid 1px #888;
  margin: 0 auto;
  padding: 60px;
}
.company-cont {
  display: flex;
  font-size: 16px;
  font-weight: bold;
  color: #444;
  padding-bottom: 20px;
}
.company-cont:last-child {
  padding-bottom: 0;
}
.company-cont-left {
  width: 25%;
}
.company .ttl,
.company h2 {
  text-align: center;
}
.company h2 {
  margin-bottom: 60px;
}
/* privacy▼*/
.sub-mv {
  width: 100%;
  height: auto;
}
.privacy {
  margin-top: 120px;
  margin-bottom: 150px;
}
.privacy-cover {
  width: 960px;
  border-top: solid 1px #888;
  border-bottom: solid 1px #888;
  margin: 0 auto;
  padding: 60px;
}
.privacy-cover h3 {
  font-size: 24px;
  margin-top: 40px;
}
.privacy-cover p {
  font-size: 16px;
  margin-top: 20px;
}

.privacy .ttl,
.privacy h2 {
  text-align: center;
}
.privacy h2 {
  margin-bottom: 60px;
}
/* contact▼*/
.sub-mv {
  width: 100%;
  height: auto;
}
.contact {
  padding-top: 120px;
  padding-bottom: 150px;
  background-color: #f9f9f9;
}
.g {
  background-color: #f9f9f9;
}
.form-in {
  width: 540px;
  margin: 0 auto;
  padding: 60px;
}

.contact .ttl,
.contact h2 {
  text-align: center;
}
.contact h2 {
  margin-bottom: 60px;
}
.formTable th {
  text-align: left;
  padding-bottom: 15px;
}
.formTable td {
  padding-bottom: 40px;
}
input {
  padding-left: 20px;
  padding-right: 20px;
  line-height: 3;
}
input:hover {
  cursor: pointer;
}
input[type="text"]:focus {
  outline: 1px solid #999; /* 枠線を青色の線に */
  box-shadow: 0 0 5px rgba(0, 0, 255, 0.5); /* 影を追加 */
  background-color: #f1f1f1; /* 背景色を淡い青に */
}
textarea {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
textarea:hover {
  cursor: pointer;
}
textarea[type="text"]:focus {
  outline: 1px solid #999; /* 枠線を青色の線に */
  box-shadow: 0 0 5px rgba(0, 0, 255, 0.5); /* 影を追加 */
  background-color: #f1f1f1; /* 背景色を淡い青に */
}
input[type="submit"] {
  color: #fff;
  background-color: #444;
  border: none;
  width: 160px;
  height: 60px;
  border-radius: 60px;
}
input[type="submit"]:hover {
  color: #444;
  background-color: #fff;
  border: solid 2px #444;
  width: 160px;
  height: 60px;
  border-radius: 60px;
}
