@charset "UTF-8";
/* CSS Document */
body, html {
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: 100%;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
}
body {
  animation: fadeIn 0.5s ease 0s 1 normal;
  -webkit-animation: fadeIn 0.5s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
hr {
border-top-color: #000000;
border-top-style: solid;
margin: 0px;
padding: 0px;
border-top-width: 1px;
}
@media (min-width:1200px) {
  #header {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 135px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #ffffff;
  }
  #header .header_wrap {
    width: 1200px;
    margin-right: auto;
    margin-left: auto;
    height: 135px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #header .header_wrap .header_top {
    width: 100%;
    height: 80px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
  }
  .header_wrap .header_top .header_logo {
    width: 320px;
    height: 80px;
    display: flex;
    align-items: center;
  }
  .header_top .header_logo .logo_img {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }
  .header_top .header_logo .copy {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
  }
  .header_wrap .header_top .header_member {
    width: auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header_top .header_member .mem_btn {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    padding-top: 10px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 10px;
    margin-left: 20px;
    line-height: 14px;
    border-radius: 20px;
    border: 2px solid #f1800a;
    color: #f1800a;
    background-color: #FFFFFF;
    display: block;
    text-decoration: none;
    transition: 0.5s;
  }
  .header_top .header_member .mem_btn:hover {
    border-radius: 20px;
    border: 2px solid #f1800a;
    background-color: #f1800a;
    color: #ffffff;
  }
  #js-hamburger {
    display: none !important;
  }
  #header .header_wrap .header_navi {
    width: 100%;
    height: 55px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }
  .header_wrap .header_navi .navi {
    margin: 0;
    padding: 0;
    display: flex;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    list-style-type: none;
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  .header_navi .navi li {
    padding: 3px 18px;
    position: relative;
  }
  .header_navi .navi li.mobdisp {
    display: none;
  }
  .header_navi .navi li a {
    height: 18px;
    font-family: "Noto Sans JP", sans-serif;
    text-decoration: none;
    font-size: 16px;
    color: #000000;
    transition: 0.3s;
  }
  .header_navi .navi li a:hover {
    color: #f1800a;
  }
  .header_navi .navi li::after {
    content: "";
    width: 2px;
    height: 1em;
    background: #f1800a;
    position: absolute;
    right: 0;
    top: calc(50% - 0.5em);
  }
  .header_navi .navi li:last-child::after {
    content: none;
  }
  #search_bar {
    width: 100%;
    height: 100px;
    background-color: #f69a3c;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #search_bar .search_bar_wrap {
    width: 1200px;
    height: 100px;
    margin: 0px auto;
    position: relative;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  #search_bar .search_bar_wrap .search_bar_input {
    width: 30%;
    height: 50px;
    padding: 0;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    margin: 0px;
  }
  #search_bar .search_bar_wrap .search_bar_last {
    width: auto;
    height: 50px;
    padding: 0;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
  }
  #search_bar .search_bar_wrap .search_bar_btn {
    width: 30%;
    height: 50px;
    display: flex;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #ffffff;
    font-family: "Noto Sans JP", sans-serif;
    color: #000000;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.5s;
  }
  #search_bar .search_bar_wrap .search_bar_btn::after {
    content: "＞";
    color: #f69a3c;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    position: absolute;
    right: 15px;
  }
  #search_bar .search_bar_wrap .search_bar_btn:hover {
    color: #f69a3c;
  }
  /* 基本のセレクトボックスのカスタマイズ */
  .select {
    background-color: #ffffff;
    height: 50px;
    width: 100%;
    border-radius: 5px;
    position: relative;
    z-index: 1;
  }
  .select::after {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border-bottom: 2px solid #f79a3b;
    border-right: 2px solid #f79a3b;
    z-index: -1;
  }
  .search_bar_input select {
    /* 初期化 */
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    color: #666666;
    font-size: 16px;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    position: relative;
  }
  .search_bar_input input[type='text'] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: #FFFFFF;
    border: none;
    color: #333;
    font-size: 16px;
    width: 220px;
    height: 50px;
    border-radius: 5px;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  form .search_bar_last .search_bar_submit {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 200px;
    height: 50px;
    background-color: #f4810c;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 25px;
    font-size: 16px;
  }
  h1 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
  }
  h2 {
    font-size: 24px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
  }
  h2 .small {
    font-size: 16px;
    font-weight: normal;
  }
  h3 {
    font-size: 18px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
  }
  hr {
    border-width: 1px;
  }
  #footer {
    margin-top: 100px;
    background-color: #ffffff;
  }
  #footer #go_top {
    content: "";
    background-image: url("../img/gotop.svg");
    position: fixed;
    background-repeat: no-repeat;
    width: 80px;
    height: 80px;
    right: 10px;
    bottom: 30px;
    display: block;
    opacity: 1;
    z-index: 9999;
  }
  #footer .footer_top {
    width: 100%;
    background-color: #f4810b;
    height: 340px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #footer .footer_top .footer_top_wrap {
    width: 1200px;
    height: 340px;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .footer_top .footer_top_wrap .footer_top_title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    padding-top: 20px;
    padding-bottom: 15px;
    color: #ffffff;
  }
  .footer_top .footer_top_wrap .footer_top_info {
    display: flex;
    justify-content: space-between;
  }
  .footer_top_wrap .footer_top_info .footer_top_info_box {
    width: 550px;
    height: 220px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
  }
  .footer_top_info .footer_top_info_box .infobox_img {
    width: 215px;
    height: 220px;
  }
  .footer_top_info .footer_top_info_box .infobox_info {
    width: 320px;
    height: 220px;
  }
  .footer_top_info_box .infobox_info .infobox_title {
    width: auto;
    height: 60px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #f4810b;
    text-decoration: underline;
    text-underline-offset: 5px;
    padding-top: 30px;
  }
  .footer_top_info_box .infobox_info .infobox_list {
    width: 100%;
    height: 100px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .infobox_info .infobox_list ol {
    padding-right: 0;
    padding-left: 20px;
    margin: 0;
    padding-top: 10px;
  }
  .infobox_list ol li {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 30px;
  }
  .footer_top_info_box .infobox_info .infobox_link {
    width: 100%;
    height: 60px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }
  .infobox_info .infobox_link a {
    font-family: "Noto Sans JP", sans-serif;
    height: 32px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    color: #f4810b;
    border-width: 2px;
    border-style: solid;
    display: flex;
    align-items: center;
    border-radius: 16px;
    justify-content: center;
    text-decoration: none;
    padding-left: 15px;
    padding-right: 15px;
    transition: 0.5s;
  }
  .infobox_info .infobox_link a:hover {
    color: #ffffff;
    background-color: #f4810b;
  }
  #footer .footer_mid {
    width: 100%;
    height: 194px;
  }
  #footer .footer_mid .footer_mid_wrap {
    width: 1200px;
    height: 194px;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
  }
  .footer_mid .footer_mid_wrap .footer_logo {
    width: 230px;
    height: 194px;
    display: flex;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
  }
  .footer_mid .footer_mid_wrap .footer_logo a {
    transition: 0.5s;
  }
  .footer_mid .footer_mid_wrap .footer_logo a:hover {
    opacity: 0.7;
  }
  .footer_mid .footer_mid_wrap .footer_link {
    width: 670px;
    height: 194px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
  }
  .footer_mid_wrap .footer_link .f_link_div {
    width: 165px;
    height: 194px;
  }
  .footer_link .f_link_div .f_link_title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 14px;
  }
  .footer_link .f_link_div ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .f_link_div ul li a {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    color: #000000;
    line-height: 28px;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: 0.3s;
  }
  .f_link_div ul li a:hover {
    color: #f1800a;
  }
  .footer_mid .footer_mid_wrap .footer_bttn {
    width: 300px;
    height: 194px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }
  .footer_mid_wrap .footer_bttn .footer_login_btn {
    width: 202px;
    height: 52px;
    display: flex;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    color: #f4810b;
    border: 2px solid #f4810b;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    border-radius: 26px;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: 0.5s;
  }
  #footer .footer_btm {
    width: 100%;
    height: 40px;
    background-color: #666666;
  }
  #footer .footer_btm .footer_btm_wrap {
    width: 1200px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 40px;
    color: #ffffff;
    text-align: center;
  }
  .footer_mid_wrap .footer_bttn .footer_login_btn:hover {
    background-color: #f4810b;
    color: #ffffff;
    border: 2px solid #f4810b;
  }
  .ret_btn_box {
    width: 100%;
    text-align: center;
    position: relative;
    margin-top: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 30px;
    box-sizing: border-box;
  }
  .ret_btn_box .ret_btn {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 220px;
    height: 35px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    background-color: #fafafa;
    font-size: 14px;
    transition: 0.5s;
    font-family: "Noto Sans JP", sans-serif;
  }
  .ret_btn_box .ret_btn:hover {
    border: 1px solid #dddddd;
    background-color: #aaaaaa;
    color: #ffffff;
  }
}
@media (max-width:1199px) and (min-width:451px) {
  #header {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 80px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #ffffff;
  }
  #header .header_wrap {
    margin-right: auto;
    margin-left: auto;
    height: 80px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
  }
  #header .header_wrap .header_top {
    width: 100%;
    height: 80px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
  }
  .header_wrap .header_top .header_logo {
    width: 320px;
    height: 80px;
    display: flex;
    align-items: center;
    margin-left: 10px;
  }
  .header_top .header_logo .logo_img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }
  .header_top .header_logo .copy {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
  }
  .header_wrap .header_top .header_member {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header_top .header_member .mem_btn {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    padding-top: 10px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 10px;
    line-height: 14px;
    border-radius: 20px;
    border: 2px solid #f1800a;
    color: #f1800a;
    display: block;
    text-decoration: none;
    margin-left: 10px;
  }
  .header_top .header_member .mem_btn:hover {
    border-radius: 20px;
    border: 2px solid #f1800a;
    background-color: #f1800a;
    color: #ffffff;
  }
  /* ハンバーガーメニュー */
  .header__hamburger {
    width: 48px;
    height: 100%;
  }
  .hamburger {
    background-color: transparent;
    /*buttonタグデフォルトスタイルを打ち消し*/
    border-color: transparent;
    /*buttonタグデフォルトスタイルを打ち消し*/
    z-index: 9999;
  }
  .hamburger span {
    width: 100%;
    height: 3px;
    background-color: #f1800a;
    position: relative;
    transition: ease 0.4s;
    /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
    display: block;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    margin: 8px 0;
  }
  .hamburger span:nth-child(3) {
    top: 0;
  }
  .hamburger.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    top: -11px;
    transform: rotate(-45deg);
  }
  .header_navi {
    position: fixed;
    padding: 0;
    margin: 0;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    /*transform: translateX(100%);*/
		transform: translateY(-100%);
		animation: fadeOut 1s cubic-bezier(0.7, 1, 0.3, 1) forwards;
    background-color: #ffffff;
    /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
    transition: ease 0.4s;
    flex-flow: column wrap;
    z-index: 999;
  }
	@keyframes fadeOut {
		0% {
			opacity: 1;
		}
		100% {
			opacity: 0;
		}
	}
  .navi li {
    padding: 0;
    position: relative;
    top: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
    color: #ec641a;
  }
  .navi a {
    color: #ec641a;
    width: 90%;
    display: block;
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    text-decoration: none;
    border: 2px solid #ec641a;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 5px;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    font-family: "Noto Sans JP", sans-serif;
  }
  .navi:last-child a {
    margin-bottom: 0;
    border-radius: 5px;
    border: 2px solid #ec641a;
  }
  .navi a:hover {
    color: #ffffff;
    background-color: #ec641a;
  }
  .header_navi.active {
    /*transform: translateX(0);*/
    transform: translateY(0);
		animation: fadeIn 1s cubic-bezier(0.9, 1, 0.7, 1) forwards;
  }
	@keyframes fadeIn {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
  #search_bar {
    width: 100%;
    background-color: #f69a3c;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #search_bar .search_bar_wrap {
    margin: auto;
    padding: 0;
    position: relative;
    display: flex;
    flex-flow: column wrap;
    width: 80%;
    justify-content: center;
    height: 100%;
  }
  #search_bar .search_bar_wrap .search_bar_input {
    height: 30px;
    padding: 0;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 5px;
    margin-top: 5px;
    justify-content: center;
    width: 100%;
  }
  #search_bar .search_bar_wrap .search_bar_last {
    width: 100%;
    height: 50px;
    position: relative;
    margin: 0;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #search_bar .search_bar_wrap .search_bar_btn {
    width: 100%;
    height: 30px;
    display: flex;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #ffffff;
    font-family: "Noto Sans JP", sans-serif;
    color: #000000;
    text-decoration: none;
    border-radius: 25px;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.5s;
  }
  #search_bar .search_bar_wrap .search_bar_btn::after {
    content: "＞";
    color: #f69a3c;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    position: absolute;
    right: 15px;
  }
  #search_bar .search_bar_wrap .search_bar_btn:hover {
    color: #f69a3c;
  }
  /* 基本のセレクトボックスのカスタマイズ */
  .select {
    background-color: #ffffff;
    height: 30px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    width: 100%;
  }
  .select::after {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border-bottom: 2px solid #f79a3b;
    border-right: 2px solid #f79a3b;
    z-index: -1;
  }
  .search_bar_input select {
    /* 初期化 */
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    color: #666666;
    font-size: 16px;
    width: 100%;
    height: 100%;
    padding: 0 10px;
  }
  .search_bar_input input[type='text'] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: #FFFFFF;
    border: none;
    color: #333;
    font-size: 16px;
    height: 30px;
    border-radius: 5px;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
  }
  form .search_bar_last .search_bar_submit {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    height: 50px;
    background-color: #f4810c;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 25px;
    font-size: 16px;
    width: 80%;
  }
  h1 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: normal;
  }
  h2 {
    font-size: 18px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
  }
  h2 .small {
    font-size: 14px;
    font-weight: normal;
  }
  h3 {
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
  }
  hr {
    border-width: 1px;
  }
  #footer {
    width: 100%;
    background-color: #ffffff;
  }
  #footer #go_top {
    width: 80px;
    height: 80px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-image: url(../img/gotop.svg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  #footer .footer_top {
    width: 100%;
    background-color: #f4810b;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 10px;
    box-sizing: border-box;
  }
  #footer .footer_top .footer_top_wrap {
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    width: 100%;
  }
  .footer_top .footer_top_wrap .footer_top_title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    color: #ffffff;
    padding-bottom: 20px;
  }
  .footer_top .footer_top_wrap .footer_top_info {
    justify-content: space-between;
  }
  .footer_top_wrap .footer_top_info .footer_top_info_box {
    width: 550px;
    height: 220px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
  }
  .footer_top_info .footer_top_info_box .infobox_img {
    width: 215px;
    height: 220px;
  }
  .footer_top_info .footer_top_info_box .infobox_info {
    width: 320px;
    height: 220px;
  }
  .footer_top_info_box .infobox_info .infobox_title {
    width: auto;
    height: 60px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #f4810b;
    text-decoration: underline;
    text-underline-offset: 5px;
    padding-top: 30px;
  }
  .footer_top_info_box .infobox_info .infobox_list {
    width: 100%;
    height: 100px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .infobox_info .infobox_list ol {
    padding-right: 0;
    padding-left: 20px;
    margin: 0;
    padding-top: 10px;
  }
  .infobox_list ol li {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 30px;
  }
  .footer_top_info_box .infobox_info .infobox_link {
    width: 100%;
    height: 60px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }
  .infobox_info .infobox_link a {
    height: 32px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    color: #f4810b;
    border-width: 2px;
    border-style: solid;
    display: flex;
    align-items: center;
    border-radius: 16px;
    justify-content: center;
    text-decoration: none;
    padding-left: 15px;
    padding-right: 15px;
    transition: 0.5s;
  }
  .infobox_info .infobox_link a:hover {
    color: #ffffff;
    background-color: #f4810b;
  }
  #footer .footer_mid {
    width: 100%;
  }
  #footer .footer_mid .footer_mid_wrap {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
  }
  .footer_mid .footer_mid_wrap .footer_logo {
    height: 194px;
    display: flex;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .footer_mid .footer_mid_wrap .footer_link {
    height: 194px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
    width: 100%;
  }
  .footer_mid_wrap .footer_link .f_link_div {
    width: 165px;
    height: 194px;
  }
  .footer_link .f_link_div .f_link_title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 14px;
  }
  .footer_link .f_link_div ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .f_link_div ul li a {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    color: #000000;
    line-height: 28px;
  }
  .footer_mid .footer_mid_wrap .footer_bttn {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    width: 100%;
  }
  .footer_mid_wrap .footer_bttn .footer_login_btn {
    width: 80%;
    height: 50px;
    display: flex;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    color: #f4810b;
    border: 2px solid #f4810b;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    border-radius: 26px;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: 0.5s;
  }
  .footer_mid_wrap .footer_bttn .footer_login_btn:hover {
    background-color: #f4810b;
    color: #ffffff;
    border: 2px solid #f4810b;
  }
  #footer .footer_btm {
    width: 100%;
    height: 40px;
    background-color: #666666;
  }
  #footer .footer_btm .footer_btm_wrap {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 40px;
    color: #ffffff;
    text-align: center;
  }
  .btn_box {
    width: 100%;
    padding: 30px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .btn_box .ret_btn {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 80%;
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    background-color: #fafafa;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
  }
  .btn_box .ret_btn:hover {
    border: 1px solid #dddddd;
    background-color: #aaaaaa;
    color: #ffffff;
  }
  .ret_btn_box {
    width: 100%;
    text-align: center;
    position: relative;
    margin-top: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 30px;
    box-sizing: border-box;
  }
  .ret_btn_box .ret_btn {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 220px;
    height: 35px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    background-color: #fafafa;
    font-size: 14px;
    transition: 0.5s;
    font-family: "Noto Sans JP", sans-serif;
  }
  .ret_btn_box .ret_btn:hover {
    border: 1px solid #dddddd;
    background-color: #aaaaaa;
    color: #ffffff;
  }
}
@media (max-width:450px) {
  #header {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 80px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #ffffff;
  }
  #header .header_wrap {
    margin-right: auto;
    margin-left: auto;
    height: 80px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding-left: 10px;
  }
  #header .header_wrap .header_top {
    width: 100%;
    height: 80px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
  }
  .header_wrap .header_top .header_logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .header_top .header_logo .logo_img {
    width: 80px;
    height: 80px;
  }
  .header_top .header_logo .copy {
    display: none;
  }
  .header_wrap .header_top .header_member {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header_top .header_member .mem_btn.saiyo {
    display: none;
  }
  .header_top .header_member .mem_btn {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 20px;
    border: 2px solid #f1800a;
    color: #ffffff;
    display: block;
    text-decoration: none;
    margin-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    background-color: #f1800a;
  }
  .header_top .header_member .mem_btn:hover {
    border-radius: 20px;
    border: 2px solid #f1800a;
    background-color: #ffffff;
    color: #f1800a;
  }
  /* ハンバーガーメニュー */
  .header__hamburger {
    width: 48px;
    height: 100%;
  }
  .hamburger {
    background-color: transparent;
    /*buttonタグデフォルトスタイルを打ち消し*/
    border-color: transparent;
    /*buttonタグデフォルトスタイルを打ち消し*/
    z-index: 9999;
  }
  .hamburger span {
    width: 100%;
    height: 3px;
    background-color: #f1800a;
    position: relative;
    transition: ease 0.4s;
    /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
    display: block;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    margin: 8px 0;
  }
  .hamburger span:nth-child(3) {
    top: 0;
  }
  /*
	.hamburger.active span:nth-child(1) {
		top: 5px;
    right: -5px;
		transform: rotate(45deg);
	}

	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-child(3) {
		top: -13px;
    right: -5px;
		transform: rotate(-45deg);
	}
*/
  .hamburger.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    top: -11px;
    transform: rotate(-45deg);
  }
  .header_navi {
    position: fixed;
    padding: 0;
    margin: 0;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    /*transform: translateX(100%);*/
		transform: translateY(-100%);
		animation: fadeOut 1s cubic-bezier(0.7, 1, 0.3, 1) forwards;
    background-color: #ffffff;
    /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
    transition: ease 0.4s;
    flex-flow: column wrap;
    z-index: 999;
  }
	@keyframes fadeOut {
		0% {
			opacity: 1;
		}
		100% {
			opacity: 0;
		}
	}
	.navi {
		padding: 0px;
		margin-left: 10px;
		margin-right: 10px;
	}
  .navi li {
    padding: 0;
    position: relative;
    top: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 10px;
		margin-right: 0px;
		margin-left: 0px;
    margin-bottom: 10px;
    display: block;
    color: #ec641a;
  }
  .navi a {
    color: #ec641a;
    width: 90%;
    display: block;
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    text-decoration: none;
    border: 2px solid #ec641a;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 5px;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    font-family: "Noto Sans JP", sans-serif;
  }
  .navi:last-child a {
    margin-bottom: 0;
    border-radius: 5px;
    border: 2px solid #ec641a;
  }
  .navi a:hover {
    color: #ffffff;
    background-color: #ec641a;
  }
  .header_navi.active {
    /*transform: translateX(0);*/
    transform: translateY(0);
		animation: fadeIn 1s cubic-bezier(0.33, 1, 0.7, 1) forwards;
  }
	@keyframes fadeIn {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
  #search_bar {
    width: 100%;
    background-color: #f69a3c;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #search_bar .search_bar_wrap {
    margin: auto;
    padding: 0;
    position: relative;
    display: flex;
    flex-flow: column wrap;
    width: 80%;
    justify-content: center;
    height: 100%;
  }
  #search_bar .search_bar_wrap .search_bar_input {
    height: 30px;
    padding: 0;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 5px;
    margin-top: 5px;
    justify-content: center;
    width: 100%;
  }
  #search_bar .search_bar_wrap .search_bar_last {
    width: 100%;
    height: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    margin: 0;
    text-align: center;
  }
  #search_bar .search_bar_wrap .search_bar_btn {
    width: 100%;
    height: 30px;
    display: flex;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #ffffff;
    font-family: "Noto Sans JP", sans-serif;
    color: #666666;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.5s;
  }
  #search_bar .search_bar_wrap .search_bar_btn::after {
    content: "＞";
    color: #f69a3c;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    position: absolute;
    right: 15px;
  }
  #search_bar .search_bar_wrap .search_bar_btn:hover {
    color: #f69a3c;
  }
  /* 基本のセレクトボックスのカスタマイズ */
  .select {
    background-color: #ffffff;
    height: 30px;
    width: 100%;
    border-radius: 5px;
    position: relative;
    z-index: 1;
  }
  .select::after {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border-bottom: 2px solid #f79a3b;
    border-right: 2px solid #f79a3b;
    z-index: -1;
  }
  .search_bar_input select {
    /* 初期化 */
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    color: #666666;
    font-size: 16px;
    width: 80%;
    height: 100%;
    width: 100%;
    padding: 0 10px;
  }
  .search_bar_input input[type='text'] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: #FFFFFF;
    border: none;
    color: #333;
    font-size: 16px;
    height: 30px;
    border-radius: 5px;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
  }
  form .search_bar_last .search_bar_submit {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    height: 50px;
    background-color: #f4810c;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 25px;
    font-size: 16px;
    width: 80%;
  }
  h1 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: normal;
  }
  h2 {
    font-size: 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
  }
  h2 .small {
    font-size: 14px;
    font-weight: normal;
    display: none;
  }
  h3 {
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
  }
  hr {
    border-width: 1px;
  }
  #footer {
    width: 100%;
    position: relative;
    background-color: #ffffff;
  }
  #footer #go_top {
    width: 50px;
    height: 50px;
    border-radius: 23px;
    position: fixed;
    background-image: url(../img/gotop.svg);
    background-repeat: no-repeat;
    background-size: cover;
    right: 10px;
    bottom: 10px;
  }
  #footer .footer_top {
    width: 100%;
    background-color: #f4810b;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 10px;
    box-sizing: border-box;
  }
  #footer .footer_top .footer_top_wrap {
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    width: 100%;
  }
  .footer_top .footer_top_wrap .footer_top_title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    color: #ffffff;
    padding-bottom: 10px;
  }
  .footer_top .footer_top_wrap .footer_top_info {
    justify-content: space-between;
  }
  .footer_top_wrap .footer_top_info .footer_top_info_box {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
  }
  .footer_top_info .footer_top_info_box .infobox_img {
    width: 30%;
    display: flex;
    align-items: center;
  }
  .footer_top_info_box .infobox_img img {
    width: 100%;
  }
  .footer_top_info .footer_top_info_box .infobox_info {
    width: 70%;
  }
  .footer_top_info_box .infobox_info .infobox_title {
    width: auto;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #f4810b;
    text-decoration: underline;
    text-underline-offset: 5px;
    padding-top: 20px;
    font-weight: 700;
  }
  .footer_top_info_box .infobox_info .infobox_list {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .infobox_info .infobox_list ol {
    padding-right: 0;
    padding-left: 20px;
    margin: 0;
    padding-top: 10px;
  }
  .infobox_list ol li {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
  }
  .footer_top_info_box .infobox_info .infobox_link {
    width: 100%;
    height: 60px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }
  .infobox_info .infobox_link a {
    height: 32px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    color: #f4810b;
    border-width: 2px;
    border-style: solid;
    display: flex;
    align-items: center;
    border-radius: 16px;
    justify-content: center;
    text-decoration: none;
    padding-left: 15px;
    padding-right: 15px;
    transition: 0.5s;
  }
  .infobox_info .infobox_link a:hover {
    color: #ffffff;
    background-color: #f4810b;
  }
  #footer .footer_mid {
    width: 100%;
  }
  #footer .footer_mid .footer_mid_wrap {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
  }
  .footer_mid .footer_mid_wrap .footer_logo {
    height: 194px;
    display: flex;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .footer_mid .footer_mid_wrap .footer_link {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
    width: 90%;
    flex-flow: row wrap;
    margin-right: auto;
    margin-left: auto;
  }
  .footer_mid_wrap .footer_link .f_link_div {
    width: 35%;
    margin-bottom: 20px;
  }
  .footer_link .f_link_div .f_link_title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 14px;
  }
  .footer_link .f_link_div ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .f_link_div ul li a {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    color: #000000;
    line-height: 28px;
  }
  .footer_mid .footer_mid_wrap .footer_bttn {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    width: 100%;
  }
  .footer_mid_wrap .footer_bttn .footer_login_btn {
    width: 80%;
    height: 45px;
    display: flex;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    color: #f4810b;
    border: 2px solid #f4810b;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    border-radius: 26px;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: 0.5s;
  }
  .footer_mid_wrap .footer_bttn .footer_login_btn:hover {
    background-color: #f4810b;
    color: #ffffff;
    border: 2px solid #f4810b;
  }
  #footer .footer_btm {
    width: 100%;
    height: 40px;
    background-color: #666666;
  }
  #footer .footer_btm .footer_btm_wrap {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 40px;
    color: #ffffff;
    text-align: center;
  }
  .btn_box {
    padding: 30px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
  }
  .btn_box .ret_btn {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 80%;
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    background-color: #fafafa;
  }
  .btn_box .ret_btn:hover {
    border: 1px solid #dddddd;
    background-color: #aaaaaa;
    color: #ffffff;
  }
  .ret_btn_box {
    width: 100%;
    text-align: center;
    position: relative;
    margin-top: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 30px;
    box-sizing: border-box;
  }
  .ret_btn_box .ret_btn {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 35px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    background-color: #fafafa;
    font-size: 14px;
    transition: 0.5s;
    font-family: "Noto Sans JP", sans-serif;
  }
  .ret_btn_box .ret_btn:hover {
    border: 1px solid #dddddd;
    background-color: #aaaaaa;
    color: #ffffff;
  }
}
