@charset "UTF-8";
/* ========================================
   Header / Navigation
======================================== */

header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000000;
  padding: 0 40px;
  width: 100%;
  height: 64px;
  background: #fff;
}

header .logo {
  width: 186px;
}

.header_wrap {
  margin: 0 auto;
  background: #fff;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.header_logo img {
  height: 32px;
  width: auto;
}

header nav {
  height: 100px;
}

header nav ul {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon {
  height: 40px;
}

nav {
  justify-content: flex-end !important;
}

nav ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
}

nav ul li a {
  font-size: 14px;
}

.header_right {
  height: 40px;
  width: 310px;
}

/* ハンバーガー */

.Toggle span {
  display: block;
  position: absolute;
  width: 35px;
  border-bottom: solid 4px #000;
  transition: 0.35s ease-in-out;
  left: 6px;
}

.Toggle span:nth-child(1) {
  top: 9px;
}
.Toggle span:nth-child(2) {
  top: 20px;
}
.Toggle span:nth-child(3) {
  top: 31px;
}

.Toggle.active span:nth-child(1) {
  top: 18px;
  transform: rotate(-45deg);
  border-bottom: solid 3px #000;
}

.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
  top: 18px;
  transform: rotate(45deg);
  border-bottom: solid 3px #000;
}

/* メイン余白（ヘッダー分） */
main {
  margin-top: 68px;
}

/* ========================================
   SP Header
======================================== */

@media screen and (max-width: 1199px) {
  header {
    height: 64px;
    padding: 0 20px;
  }

  .header_wrap {
    height: 64px;
  }

  nav.NavMenu {
    position: fixed;
    z-index: 12;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    display: none;
    text-align: center;
  }

  .NavInner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  nav.NavMenu ul li {
    width: 300px;
    margin: 0 auto;
  }

  nav.NavMenu ul li a {
    display: block;
    font-weight: bold;
    font-size: 14px;
    margin: 0 auto;
    text-align: center;
  }

  .header_right {
    display: flex;
    width: 50%;
    justify-content: center;
    margin: 0 auto;
  }

  .Toggle {
    position: fixed;
    right: 18px;
    top: 7px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 13;
    display: block;
  }
}

/* ========================================
   PC Header
======================================== */

@media screen and (min-width: 1200px) {
  header {
    height: 100px;
  }

  .wrapper {
    margin-top: 100px;
  }
}

/* ========================================
   Footer
======================================== */

footer {
  width: 100%;
  box-sizing: border-box;
}

footer img {
  width: 320px;
}

footer .btn a {
  color: #4b4b4b;
}

p.en.\,.copy {
  font-size: 12px;
}

@media screen and (min-width: 1200px) {
  footer ul {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* ========================================
   Buttons & Fixed Button
======================================== */

.btn {
  display: inline-block;
  width: 184px;
  height: 56px;
  line-height: 56px;
  background: transparent;
}

.btn::after {
  content: ">"; /* 表示する文字 */
  position: absolute;
  right: 16px; /* ボタンの右端から4pxの位置 */
  top: 50%; /* 上下中央へ */
  transform: translateY(-50%); /* 垂直中央揃えの補正 */
  color: white;
}

.btn:hover {
  color: #22589a;
  border: solid 2px #22589a;
  background-color: white;
}

.btn:hover::after {
  color: #22589a;
}

.btn2 {
  display: inline-block;
  background: transparent;
	padding: 0 !important; /* 内側の余白を強制排除 */
    vertical-align: middle;
    text-align: center;
	line-height:56px;
	height: 56px;
}

.btn_outer{
  width: 184px;
height: 56px;
    margin: 0 auto;
}

.btn_outer::after {
  content: ">"; /* 表示する文字 */
  position: absolute;
  right: 16px; /* ボタンの右端から4pxの位置 */
  top: 50%; /* 上下中央へ */
  transform: translateY(-50%); /* 垂直中央揃えの補正 */
  color: white;
}

.btn2:hover {
  color: #22589a;
  border: solid 2px #22589a;
  background-color: white;
}

.btn_outer:hover::after {
  color: #22589a;
}

.fixed {
  position: fixed;
  width: 186px;
  bottom: 10px;
  right: 0;
  z-index: 1000;
}

.fixed a {
  display: block;
}

@media screen and (max-width: 1199px) {
  .fixed {
    width: 120px;
  }
}

/* ========================================
   Form
======================================== */

.bg_pd {
  padding: 80px 0;
}

.contact th {
  width: 100%;
  display: block;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact td {
  width: 100%;
  display: block;
  margin-bottom: 24px;
}

input,
textarea {
  width: 100%;
  border: solid 1px #9d9d9d;
  padding: 12px;
  font-weight: 700;
  box-sizing: border-box;
  color: #adadad;
}

select {
  border: solid 1px #9d9d9d;
  padding: 12px;
}

button {
  background: #68a543;
  color: #fff;
  width: 300px;
  margin: 0 auto;
  padding: 24px 0;
  border: none;
  font-weight: bold;
}

.btn_thanks {
  background: #68a543;
  color: #fff;
  width: 300px;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  margin: 40px auto;
}

.contact .privacy {
  display: block;
  text-decoration: underline;
  margin-bottom: 12px;
}

input[type="checkbox"] {
  width: auto;
  margin-right: 12px;
}

.check {
  margin-bottom: 12px;
}

/* ========================================
   Animations
======================================== */
