@charset "utf-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, input, textarea, select, button, main, svg {
  margin: 0;
  padding: 0;
  border: none;
  font-style: normal;
  text-align: left;
  zoom: 1;
  outline: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  max-width: 1920px;
  margin: auto;
  background: #EFEFEC;
  color: #222;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
	background: #EFEFEC;
}
table {
  border-collapse: collapse;
}
h1, h2, h3, h4, h5 {
  font-size: 100%;
  font-weight: 400;
}
input, textarea, select {
  font-family: inherit;
  font-size: 16px;
  outline: none;
  border: none;
}
select::-ms-expand {
  display: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
input[type="button"],
input[type="text"],
input[type="submit"] {
  appearance: none;
  border-radius: 0;
}
input::placeholder {
  color: #888;
}
input::-ms-input-placeholder {
  color: #888;
}
textarea {
  resize: none;
}
th, td {
  border-collapse: collapse;
}
ul, ol {
  list-style-type: none;
}
img {
  vertical-align: text-bottom;
  vertical-align: -webkit-baseline-middle;
  max-width: 100%;
  height: auto;
  width: auto;
}
button {
  outline: none;
}
:where(a:link) {
  text-decoration: none;
  color: #222;
}
:where(a:visited) {
  text-decoration: none;
  color: #222;
}
:where(a:hover) {
  text-decoration: none;
  color: #222;
}
:where(a:active) {
  text-decoration: none;
  color: #222;
}
.nowrap {
  white-space: nowrap;
}
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -mos-box-sizing: border-box;
  -mz-box-sizing: border-box;
  -o-box-sizing: border-box;
}
.tra {
  transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
}
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
@media only screen and (min-width: 768px) {
  body {
    font-size: clamp(14px, 1.56vw, 20px);
  }
}
@media only screen and (min-width: 1280px) {
  body {
    font-size: 20px;
  }
}
/*
ローディング
*/
.cover {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ui-circle-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ui-circle-loading .animate {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0;
  padding: 0;
}
.ui-circle-loading .animate li {
  list-style: none;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  animation: loading-item 4s linear infinite;
  background: rgba(243, 130, 0, 0);
}
.ui-circle-loading .animate li:nth-child(1) {
  -webkit-animation-delay: 0.1s;
}
.ui-circle-loading .animate li:nth-child(2) {
  -webkit-animation-delay: 0.2s;
}
.ui-circle-loading .animate li:nth-child(3) {
  -webkit-animation-delay: 0.3s;
}
.ui-circle-loading .animate li:nth-child(4) {
  -webkit-animation-delay: 0.4s;
}
.ui-circle-loading .animate li:nth-child(5) {
  -webkit-animation-delay: 0.5s;
}
.ui-circle-loading .animate li:nth-child(6) {
  -webkit-animation-delay: 0.6s;
}
@-webkit-keyframes loading-item {
  0% {
    -webkit-transform: rotate(0) translateX(-100px) translateY(30px);
    -webkit-animation-timing-function: linear;
    background-color: rgba(243, 130, 0, 0);
  }
  5% {
    -webkit-transform: rotate(0deg) translateX(0) translateY(30px);
    -webkit-animation-timing-function: cubic-bezier(0.1, 0.5, 0.9, 0.5);
    background-color: rgba(243, 130, 0, 1);
  }

  40% {
    -webkit-transform: rotate(-360deg) translateX(0) translateY(30px);
    -webkit-animation-timing-function: cubic-bezier(0.1, 0.5, 0.9, 0.5);
    background-color: rgba(243, 130, 0, 1);
  }
  75% {
    -webkit-transform: rotate(-720deg) translateX(0) translateY(30px);
    /* ここを-720degに修正 */
    -webkit-animation-timing-function: linear;
    /* ここをlinearに修正 */
    background-color: rgba(243, 130, 0, 1);
  }
  80% {
    -webkit-transform: rotate(-720deg) translateX(100px) translateY(30px);
    /* ここを-720degに修正 */
    -webkit-animation-timing-function: linear;
    background-color: rgba(243, 130, 0, 0);
  }
  100% {
    -webkit-transform: rotate(0) translateX(-100px) translateY(30px);
    -webkit-animation-timing-function: linear;
    background-color: rgba(243, 130, 0, 0);
  }
}
/*
ページトップ・フローティングボタン
*/
.floating_contents_sp {
	position: fixed;
	bottom: 0;
	z-index: 10;
	display: flex;
	justify-content: center;
	gap: 0 2px;
	width: 100%;
	padding: 0 1px;
}
.floating_contents_sp a {
	border-radius: 5px 5px 0 0;
	height: 36px;
	font-size: 12px;
	color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
}
.floating_wrap {
	width: 303px;
}
.floating_btn {
	background: #F38200;
	gap: 0 9px;
}
.entry_icon_img {
	width: 23px;
}
.page_top_wrap {
	width: 68px;
}
.page_top_btn {
	background: #222;
}
.floating_contents_pc {
	display: none;
}
@media only screen and (min-width: 768px) {
	.floating_contents_sp {
		display: none;
	}
	.floating_contents_pc {
		display: block;
	}
	.floating_wrap {
		width: 120px;
		height: 120px;
		position: fixed;
		right: 20px;
		bottom: 50px;
		z-index: 10;
	}
	.entry_rotate_img {
		position: absolute;
		left: 0;
		top: 0;
		animation: rotation 15s linear infinite;
	}
	@keyframes rotation {
		0% {
			transform: rotate(0deg);
		}
		100% {
			transform: rotate(360deg);
		}
	}
	.floating_btn {
		background: #F38200;
		width: 100px;
		height: 100px;
		border-radius: 50%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 7px 0;
		transition: all .3s ease-out;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.floating_btn:hover {
		background: #F39600;
	}
	.entry_icon_img {
		width: 30px;
	}
	.floating_btn_txt {
		font-size: 12px;
		line-height: 1.4;
		color: #FFF;
		text-align: center;
	}
	.floating_btn_txt span {
		font-size: 14px;
		line-height: 1.2;
	}
	.page_top_wrap {
		width: auto;
		position: fixed;
		right: 38px;
		bottom: 0;
		z-index: 10;
	}
	.page_top_btn {
		border-radius: 10px 10px 0 0;
		width: 80px;
		height: 35px;
		font-size: 14px;
		color: #FFF;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}
@media only screen and (min-width: 1280px) {
	.floating_wrap {
		width: 168px;
		height: 168px;
		right: 36px;
		bottom: 64px;
	}
	.floating_btn {
		width: 140px;
		height: 140px;
		gap: 15px 0;
		right: 50px;
		bottom: 78px;
	}
	.entry_icon_img {
		width: 39px;
	}
	.floating_btn_txt {
		font-size: 14px;
	}
	.floating_btn_txt span {
		font-size: 16px;
	}
	.floating_btn_txt_br {
		display: none;
	}
	.page_top_wrap {
		right: 70px;
	}
	.page_top_btn {
		width: 100px;
		height: 40px;
		font-size: 16px;
	}
}
/*
header
*/
.header_logo {
  padding: 11px 0 0 16px;
}
.header_logo img {
  width: 181px;
}
.header_entry_btn {
	position: fixed;
	top: 10px;
	right: 60px;
  z-index: 103;
}
.header_entry_btn .entry_btn {
	width: 80px;
}
@media only screen and (min-width: 768px) {
  .header_logo {
    padding: 20px 0 0 30px;
  }
  .header_logo img {
    width: 320px;
  }
	.header_entry_btn {
		top: 20px;
		right: 100px;
	}
	.header_entry_btn .entry_btn {
		width: 140px;
    height: 60px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
	}
}
@media only screen and (min-width: 1450px) {
  .header_logo {
    padding: 57px 0 0 36px;
  }
  .header_logo img {
    width: 407px;
  }
	.header_entry_btn {
		top: 40px;
		right: 150px;
	}
	.header_entry_btn .entry_btn {
		width: 240px;
    height: 80px;
	}
}
/*
展開メニュー
*/
.flyout_gnav_wrap {
  width: 100%;
  overflow-x: hidden;
	position: relative;
}
.flyout_gnav {
  position: fixed;
  top: 0;
  z-index: 103;
  display: none;
  width: calc(100% + 17px);
  height: 100vh;
  background: #E5E5E0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.flyout_gnav_logo {
	position: absolute;
	top: 11px;
	left: 16px;
}
.flyout_gnav_inner {
  padding: 80px 0 45px;
}
.flyout_gnav_list_wrap {
	display: flex;
	flex-direction: column;
	gap: 40px 0;
}
.flyout_entry_box {
	background: #EFEFEC;
}
.flyout_entry_wrap {
	padding: 30px 31px;
}
.flyout_entry_txt {
  color: #222;
  line-height: 2;
  text-align: center;
}
.flyout_entry_btn {
	margin: 30px 0 0;
}
.flyout_links_wrap {
	margin: 40px 0 0;
}
.flyout_privacy_link {
	margin: 10px 0 0;
}
@media only screen and (min-width: 768px) {
  .flyout_gnav_inner {
    padding: 130px 0 100px;
  }
	.flyout_gnav_logo {
		top: 20px;
		left: 30px;
		width: 45%;
	}
	.flyout_gnav_list_wrap {
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		gap: 0 20px;
	}
	.flyout_submenu {
		padding: 0 0 10px 34px !important;
		border-bottom: 1px solid #bfbfbe;
	}
	.flyout_entry_box {
		width: 40%;
	}
	.flyout_links_wrap {
		display: flex;
		justify-content: flex-end;
		gap: 0 20px;
		margin: 80px 0 0;
	}
	.flyout_privacy_link {
		margin: 0;
	}
}
@media only screen and (min-width: 1280px) {
  .flyout_gnav_inner {
    padding: 179px 0 224px;
  }
	.flyout_gnav_logo {
		top: 37px;
		left: 58px;
		width: unset;
	}
	.flyout_entry_wrap {
		padding: 50px 85px 80px;
	}
	.flyout_gnav_list_wrap {
		gap: 0 40px;
	}
	.flyout_submenu {
		padding: 0 0 26px 50px !important;
	}
	.flyout_links_wrap {
		margin: 147px 0 0;
	}
}
/*
ハンバーガーボタン
*/
.hamburger {
  position: fixed;
  right: 10px;
  top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  z-index: 104;
  cursor: pointer;
  transition: all 0.3s ease;
	background: #222;
	border-radius: 50%;
}
.hamburger_bar {
  position: absolute;
  top: 19px;
  display: inline-block;
  width: 16px;
  height: 1px;
  background: #FFF;
}
.hamburger_bar:after,
.hamburger_bar:before {
  position: absolute;
  display: inline-block;
  content: " ";
  width: 100%;
  height: 1px;
  background: #FFF;
}
.hamburger_bar:after {
  top: -5px;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger_bar:before {
  bottom: -5px;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger_bar.animate {
  width: 21px;
  background: rgba(0, 0, 0, 0);
}
.hamburger_bar.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  background: #FFF;
}
.hamburger_bar.animate:before {
  width: 100%;
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  background: #FFF;
}
.hamburger_txt {
	display: none;
}
@media only screen and (min-width: 768px) {
  .hamburger {
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
  }
	.hamburger:hover {
		background: #645134;
	}
  .hamburger_bar {
    width: 24px;
    height: 2px;
    top: 21px;
  }
  .hamburger_bar:after,
  .hamburger_bar:before {
    height: 2px;
  }
  .hamburger_bar:before {
    bottom: -7px;
  }
  .hamburger_bar:after {
    top: -7px;
  }
  .hamburger_bar.animate {
    width: 26px;
  }
	.hamburger_txt {
		display: block;
		color: #FFF;
		font-size: 12px;
		font-weight: normal;
		position: absolute;
		bottom: 9px;
	}
}
@media only screen and (min-width: 1450px) {
  .hamburger {
    top: 40px;
    right: 40px;
    width: 80px;
    height: 80px;
  }
  .hamburger_bar {
    width: 30px;
    top: 31px;
  }
	.hamburger_txt {
		font-size: 14px;
		bottom: 15px;
	}
  .hamburger_bar.animate {
    width: 30px;
  }
}
	/*
main
*/
.main {
  padding: 50px 0 0;
}
@media only screen and (min-width: 768px) {
  .main {
    padding: 153px 0 0;
  }
}
@media only screen and (min-width: 1024px) {
  .main {
    padding: 200px 0 0;
  }
}
@media only screen and (min-width: 1680px) {
  .main {
    padding: 260px 0 0;
  }
}
/*
footer
*/
.footer_wrap {
  padding: 170px 0 49px;
  position: relative;
	background: #FFF;
}
.footer_entry_box {
  position: absolute;
  top: -117px;
  left: 50%;
  transform: translate(-50%);
  width: 82%;
  background: #f38200;
}
.footer_entry_wrap {
  padding: 30px 31px;
}
.footer_entry_txt {
  color: #fff;
  line-height: 2;
  text-align: center;
}
.footer_entry_btn {
  margin: 30px 0 0;
}
.footer_contents {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  padding: 0 0 20px;
}
.footer_links_btn {
  margin: 8px 0 0;
}
.footer_links_02 {
  display: block;
  padding: 16px;
  outline: 1px solid #e5e5e0;
  transition: all 0.3s ease-out;
}
.footer_links_wrap {
  max-width: 432px;
  margin: auto;
}
.footer_line {
  padding: 0 33px;
}
.footer_line span {
  display: block;
  height: 1px;
  background: #bfbfbe;
}
.footer_contents_02 {
  margin: 20px 0 0;
}
.copy_txt {
  margin: 20px 0 0;
  font-size: 12px;
}
@media only screen and (min-width: 768px) {
	.footer_submenu {
		border-bottom: none !important;
	}
	.footer_entry_box {
		width: 91.4%;
	}
	.footer_entry_wrap {
		padding: 50px 40px;
	}
	.footer_entry_btn .entry_btn {
		max-width: 800px;
	}
  .footer_contents {
    flex-direction: row;
    justify-content: space-between;
    gap: 0 30px;
    padding: 0 0 40px;
  }
  .footer_links_wrap {
    width: 35%;
    margin: 40px 0 0;
    max-width: unset;
  }
  .footer_contents_02 {
    margin: 43px 0 0;
  }
  .footer_copy_wrap {
    display: flex;
    justify-content: space-between;
  }
  .footer_privacy_txt {
    margin: 5px 0 0;
  }
  .copy_txt {
    margin: 0;
    font-size: clamp(12px, 1.25vw, 16px);
  }
}
@media only screen and (min-width: 1280px) {
	.footer_entry_box {
		width: 95%;
		top: -160px;
	}
	.footer_entry_wrap {
		padding: 80px 0;
	}
	.footer_entry_btn {
		margin: 46px 0 0;
	}
  .footer_wrap {
    padding: 251px 0 68px;
  }
  .footer_contents {
    padding: 0 0 97px;
  }
  .footer_links_wrap {
    width: 30.83%;
    margin: 56px 0 0;
  }
  .footer_links_btn {
    margin: 13px 0 0;
  }
  .footer_links_02 {
    padding: 22px;
  }
  .footer_links_02:hover {
    outline: 3px solid #e5e5e0;
    outline-offset: -2px;
  }
  .footer_privacy_txt {
    margin: 10px 0 0;
  }
  .copy_txt {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1520px) {
  .footer_entry_box {
    width: 1460px;
    margin: auto;
    padding: 0;
  }
}
@media only screen and (min-width: 1820px) {
  .footer_line {
    width: 1760px;
    margin: auto;
    padding: 0;
  }
}
/*
共通
*/
/* 背景色 */
.bg_gray {
  background: #e5e5e0;
}
/* フォント関連 */
.font_small {
	font-size: 13px;
}
.font_large {
	font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.link_txt {
  color: #E91A10;
  text-decoration: underline;
}
.orange_txt {
  color: #f39600;
}
@media only screen and (min-width: 768px) {
	.font_small {
		font-size: clamp(13px, 1.4vw, 18px);
	}
	.font_large {
		font-size: clamp(16px, 1.87vw, 24px);
	}
}
@media only screen and (min-width: 1280px) {
	.font_small {
		font-size: 18px;
	}
	.font_large {
		font-size: 24px;
	}
}
/* レイアウト */
.page_body_01 {
  padding: 0 33px;
}
.contents_wrap {
  padding: 40px 0 217px;
}
@media screen and (min-width: 768px) {
  .contents_wrap {
    padding: 70px 0 260px;
  }
}
@media screen and (min-width: 1280px) {
  .contents_wrap {
    padding: 100px 0 372px;
  }
}
@media screen and (min-width: 1520px) {
  .page_body_01 {
    padding: 0;
    width: 1460px;
    margin: auto;
  }
}
/* タイトル */
.page_ttl_wrap {
	padding: 49px 0 60px;
}
.page_ttl_en {
  font-size: 18px;
  line-height: 1.3;
	color: #F39600;
}
.page_ttl_jp {
  font-size: 20px;
  margin: 2px 0 0;
}
@media screen and (min-width: 768px) {
	.page_ttl_wrap {
		padding: 70px 0 80px;
	}
	.page_ttl_en {
		font-size: clamp(18px, 2.34vw, 30px);
	}
	.page_ttl_jp {
		font-size: clamp(20px, 3.12vw, 40px);
		margin: 4px 0 0;
	}
}
@media screen and (min-width: 1280px) {
	.page_ttl_wrap {
		padding: 93px 0 118px;
	}
	.page_ttl_en {
		font-size: 30px;
	}
	.page_ttl_jp {
		font-size: 40px;
		margin: 6px 0 0;
	}
}
/* ボタン */
.entry_btn {
  background: #fff;
  color: #f38200;
	border: 1px solid #f38200;
  border-radius: 20px;
  font-size: 14px;
	line-height: 1.3;
  padding: 10px 0;
  display: block;
  width: 100%;
	max-width: 390px;
	margin: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
	.entry_btn {
		font-size: clamp(14px, 1.65vw, 24px);
		padding: 15px 0;
		border: 2px solid #f38200;
		border-radius: 40px;
		transition: all .4s ease-out;
	}
	.entry_btn:hover {
		background: #F39600;
		color: #FFF;
		border: 2px solid #FFF;
	}
}
@media screen and (min-width: 1450px) {
	.entry_btn {
		font-size: 24px;
		padding: 22px 0;
	}
}
/* メニュー */
.menu_link {
  display: flex;
  align-items: center;
  gap: 0 14px;
  padding: 10px 0;
  border-bottom: 1px solid #bfbfbe;
  transition: all 0.3s ease-out;
}
.menu_img {
  display: none;
}
.menu_txt_en {
  color: #f39600;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}
.menu_item_toggle {
  cursor: pointer;
  position: relative;
}
.menu_item_toggle.is-open {
  border-bottom: 1px solid #bfbfbe;
}
.menu_item_toggle.is-open .menu_link {
  border-bottom: none;
}
.menu_item_toggle.is-open .submenu {
  margin-top: 5px !important;
}
.open_icon-wrap {
  display: flex;
  position: absolute;
	top: 18px;
  right: 0;
  width: 20px;
  height: 20px;
}
.open_icon {
  width: 100%;
  height: 100%;
}
.submenu {
  margin: 0;
  padding: 0 0 0 25px;
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.3s ease,
    margin 0.3s ease,
    padding 0.3s ease;
}
.submenu_item + .submenu_item {
  margin: 12px 0 0;
}
.submenu_txt {
  font-size: 13px;
}
.links_01 {
  font-size: 13px;
  display: flex;
  gap: 0 4px;
}
.links_img {
  width: 10px;
}
@media screen and (min-width: 768px) {
  .menu_wrap {
    display: flex;
    gap: 0 20px;
    width: 60%;
  }
  .menu_list {
    width: calc((100% - 20px) / 2);
  }
  .menu_link {
    padding: 15px 0;
  }
  .menu_link:hover {
    gap: 0 24px;
  }
  .menu_img {
    display: block;
    width: 20px;
  }
  .menu_txt_en {
    font-size: clamp(12px, 1.25vw, 16px);
  }
	.menu_txt_jp,
	.submenu_txt {
		transition: all 0.3s ease-out;
	}
  .menu_link:hover .menu_txt_jp,
	.submenu_link:hover .submenu_txt {
    color: #8d8d89;
  }
  .open_icon-wrap {
    display: none;
  }
  .submenu {
    margin: 15px 0 0;
    padding: 0 0 0 34px;
    display: block;
    overflow: unset;
    max-height: none;
  }
	.menu_item_toggle.is-open {
		border-bottom: none;
	}
  .submenu_item + .submenu_item {
    margin: 15px 0 0;
  }
  .submenu_txt {
    font-size: clamp(13px, 1.4vw, 18px);
  }
  .links_01 {
    font-size: clamp(13px, 1.4vw, 18px);
  }
}
@media screen and (min-width: 1280px) {
  .menu_wrap {
    gap: 0 40px;
    width: 58.91%;
  }
  .menu_list {
    width: calc((100% - 40px) / 2);
  }
  .menu_link {
    padding: 24px 0;
		gap: 0 20px;
  }
  .menu_link:hover {
    gap: 0 35px;
  }
  .menu_img {
    width: 30px;
  }
  .menu_txt_en {
    font-size: 16px;
  }
  .submenu {
    margin: 20px 0 0;
    padding: 0 0 0 50px;
  }
  .submenu_item + .submenu_item {
    margin: 20px 0 0;
  }
  .submenu_txt {
    font-size: 18px;
  }
  .open_icon-wrap {
    display: none;
  }
  .links_01 {
    font-size: 18px;
    gap: 0 6px;
  }
  .links_img {
    width: 14px;
  }
}
/* パンくず */
.breadcrumbs {
	font-size: 12px;
	padding: 20px 0 0;
}
.breadcrumbs a {
	color: #8D8D89;
}
.breadcrumbs_line {
  margin: 0 5px;
}
@media only screen and (min-width: 768px) {
  .breadcrumbs {
    font-size: clamp(12px, 1.25vw, 16px);
		padding: 40px 0 0;
  }
}
@media only screen and (min-width: 1280px) {
  .breadcrumbs {
    font-size: 16px;
		padding: 60px 0 0;
  }
	.breadcrumbs_line {
		margin: 0 10px;
	}
}
/* ページメニュー */
.page_menu_wrap {
	background: #E5E5E0;
	padding: 0 0 40px;
}
.page_menu_contents {
	margin: 30px 0 0;
}
.page_menu_pc_list {
	display: none;
}
.page_menu_sp {
	position: relative;
}
.page_menu_sp_top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #FFF url(../images/common/arw_02.svg) right 14px center no-repeat;
	background-size: 16px;
	padding: 10px 14px 11px 21px;
	-webkit-appearance: none;
	appearance: none;
	font-size: 13px;
	margin: auto;
}
.page_menu_sp_top.page_menu_sp_top_img {
  background: #FFF url(../images/common/arw_03.svg) right 14px center no-repeat;
	background-size: 16px;
}
.page_menu_sp_list {
	display: none;
	position: absolute;
	top: 40px;
	z-index: 1;
	width: 100%;
	margin: auto;
}
.page_menu_sp_list li {
	margin: auto;
	border-top: 1px solid #E5E5E0;
}
.page_menu_sp_list a {
	font-size: 13px;
}
.page_menu_link_item a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #FFF;
	padding: 10px 14px 11px 21px;
}
.page_menu_link_item img {
	width: 16px;
}
@media only screen and (min-width: 768px) {
	.page_menu_wrap {
		padding: 0 0 60px;
	}
	.page_menu_contents {
		margin: 90px 0 0;
	}
	.page_menu_sp {
		display: none;
	}
	.page_menu_pc_list {
		display: flex;
    flex-wrap: wrap;
		gap: 10px;
	}
	.page_menu_link_item {
		width: calc((100% - 20px) /3);
	}
	.page_menu_link_item a {
		border: 3px solid #FFF;
		transition: all .3s ease-out;
	}
	.page_menu_link_item a:hover {
		border: 3px solid #D4D4CF;
	}
	.page_menu_link_item img {
		width: 18px;
		transition: all .3s ease-out;
	}
	.page_menu_link_item a:hover img {
		transform: translateY(3px);
	}
	.page_link_contact a:hover img {
		transform: translateX(3px);
	}
}
@media only screen and (min-width: 1280px) {
	.page_menu_wrap {
		padding: 0 0 80px;
	}
	.page_menu_contents {
		margin: 196px 0 0;
	}
	.page_menu_link_item a {
		padding: 15px 20px 16px 30px;
	}
	.page_menu_link_item img {
		width: 24px;
	}
}
/* NEWS共通 */
.news {
	padding: 0 33px;
}
.news__textGroup {
  display: flex;
  gap: 20px 0;
  flex-wrap: wrap;
  padding: 11px 0 13px;
  border-top: 1px solid #8D8D89;
}
.news__textGroup dd.news__cat a {
  padding: 1px 10px 3px;
  font-size: 12px;
  background: #F39600;
  border-radius: 20px;
  color: #fff;
  white-space: nowrap;
}
.news__textGroup dd:last-child {
  width: 100%;
}
.news__textGroup:last-child {
  border-bottom: 1px solid #8D8D89;
}
.news__date {
  color: #8D8D89;
}
.news__title {
  margin-top: 3px;
}
.news__link {
  font-size: clamp(12px, 1.8vw, 24px);
  text-decoration: underline;
	transition: all .3s ease-out;
}
@media only screen and (min-width: 768px) {
  .news__textGroup {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    padding: 25px 0;
  }
  .news__textGroup dd.news__cat {
    margin: 0 0 0 20px;
  }
  .news__textGroup dd.news__cat a {
    font-size: 14px;
  }
  .news__textGroup dd:last-child {
    margin: 0 0 0 60px;
  }
	.news__link:hover {
		color: #8D8D89;
	}
}
@media only screen and (min-width: 1280px) {
  .news__textGroup {
    padding: 40px 0 39px;
  }
  .news__textGroup dd {
    margin: 0 0 0 120px;
  }
  .news {
		padding: 0;
    margin: 0 auto;
    width: 1160px;
  }
}
/* フェードインアップ */
.element_b {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
.is-fadein-up {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.element_b_foot {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
.is-fadein-up_foot {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
/* 404 */
.not_found_wrap {
	padding: 60px 0 215px;
}
.not_found_wrap .page_ttl_en {
	font-size: 40px;
	text-align: center;
}
.not_found_wrap .page_ttl_jp {
	font-weight: 700;
	text-align: center;
}
.not_found_txt {
	margin: 30px 0 0;
}
.not_found_txt p {
	text-align: center;
	line-height: 2;
}
.back_btn_wrap {
	margin: 40px 0 0;
}
.back_btn {
	display: block;
	background: #FFF url(../images/common/arw_01.svg) no-repeat 95% center;
	background-size: 20px;
	width: 90%;
	max-width: 320px;
	margin: auto;
	padding: 10px;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.3s ease-out;
	border-radius: 20px;
}
@media only screen and (min-width: 768px) {
	.not_found_wrap .page_ttl_en {
		font-size: clamp(40px, 7vw, 90px);
	}
	.not_found_wrap .page_ttl_jp {
		font-size: clamp(20px, 2.34vw, 30px);
	}
	.back_btn {
		font-size: clamp(13px, 1.4vw, 18px);
		padding: 13px 15px;
	}
}
@media only screen and (min-width: 1280px) {
	.not_found_wrap {
		padding: 120px 0 370px;
	}
	.not_found_wrap .page_ttl_en {
		font-size: 90px;
	}
	.not_found_wrap .page_ttl_jp {
		font-size: 30px;
	}
	.not_found_txt {
		margin: 60px 0 0;
	}
	.back_btn_wrap {
		margin: 60px 0 0;
	}
	.back_btn {
		padding: 16px 20px;
		background: #FFF url(../images/common/arw_01.svg) no-repeat 95% center;
		background-size: 30px;
		font-size: 18px;
		border-radius: 40px;
	}
}