@charset "UTF-8";
/* ----------------------------------------------------------------------
基本設定
---------------------------------------------------------------------- */
/* ----関数設定---- */
/* -------- */
:root {
  --liquid-spDesignRatio: calc(390 / 10);
  --liquid-stbDesignRatio: calc(520 / 10);
  --liquid-mtbDesignRatio: calc(768 / 10);
  --liquid-spcDesignRatio: calc(1024 / 10);
  --liquid-mpcDesignRatio: calc(1440 / 10);
}
html {
  font-size: 62.5%;
}
@media screen and (min-width: 325px) {
  :root {
    --liquid-htmlroot: calc(100vw / var(--liquid-spDesignRatio));
  }
  html {
    font-size: var(--liquid-htmlroot);
  }
}
@media screen and (min-width: 520px) {
  :root {
    --liquid-htmlroot: calc(100vw / var(--liquid-stbDesignRatio));
  }
}
@media screen and (min-width: 768px) {
  :root {
    --liquid-htmlroot: calc(100vw / var(--liquid-mtbDesignRatio));
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --liquid-htmlroot: calc(100vw / var(--liquid-spcDesignRatio));
  }
}
@media screen and (min-width: 1440px) {
  :root {
    --liquid-htmlroot: calc(100vw / var(--liquid-mpcDesignRatio));
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 62.5%;
  }
}
/* sp用<br> */
.br-sp {
  display: block;
}
.br-tb {
  display: none;
}
.br-pc {
  display: none;
}
/* tablet用<br> */
@media only screen and (min-width: 521px) and (max-width: 1024px) {
  .br-sp {
    display: none;
  }
  .br-tb {
    display: block;
  }
  .br-pc {
    display: none;
  }
}
/* pc用<br> */
@media screen and (min-width: 1024px) {
  .br-sp {
    display: none;
  }
  .br-tb {
    display: none;
  }
  .br-pc {
    display: block;
  }
}
body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  color: #727171;
  letter-spacing: 0.05em;
  font-size: clamp(1.6rem, 1.4vw, 1.8rem);
  padding-top: 50px;
}
body.en-US {
  letter-spacing: 0;
}
h1, h2, h3, h4, h5 {
  font-weight: bold;
}
ul {
  list-style: none;
  padding-left: 0;
}
p {
  line-height: 2;
}
a {
  color: #afba7d;
  text-decoration: none;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
a:hover {
  color: #637800;
}
a.button {
  opacity: 1;
  color: #FFF;
  display: block;
  background: #afba7d;
  border: solid 2px #afba7d;
  border-radius: 15px;
  margin: 16px auto;
  width: 72%;
  height: 30px;
  line-height: 28px;
  position: relative;
  text-align: center;
  font-size: clamp(1.4rem, 3.143vw, 3rem);
}
a.button:hover {
  border: solid 2px #637800;
  background: #637800;
}
a img {
  transition: 0.3s;
}
a:hover img {
  opacity: 0.8;
}
img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}
.pc {
  display: none;
}
.ipad {
  display: none;
}
.sp {
  display: inline-block;
}
.inner {
  width: 88%;
  margin: 0 auto;
}
.aligncenter {
  display: block;
  margin: 0 auto;
}
.normal {
  font-weight: normal;
}
.texts {
  font-size: 1.4rem;
  font-weight: normal;
}
.bg {
  background: #f1f6fb;
}
.mt50 {
  margin-top: 50px !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.pb50 {
  padding-bottom: 50px !important;
}
.clearfix::after {
  content: " ";
  display: block;
  clear: both;
}
#breadcrumbs {
  margin: 0 10px;
  font-size: 1.2rem;
  font-weight: normal;
  color: #999;
}
@media screen and (min-width: 768px) {
  .pc {
    display: inline-block;
  }
  .pc.block {
    display: block;
  }
  .ipad {
    display: inline-block;
  }
  .sp {
    display: none;
  }
  .inner {
    width: 94%;
  }
  a.button {
    height: 65px;
    line-height: 65px;
    font-size: 1.8rem;
    border-radius: 33px;
    max-width: 616px;
  }
  .text-center-pc {
    text-align: center;
  }
  .text110 {
    font-size: 110%;
  }
  #breadcrumbs {
    font-size: 1.4rem;
  }
}
/* ----------------------------------------------------------------------
アニメーション
---------------------------------------------------------------------- */
/* 画面に入ったら表示 */
.fadein {
  opacity: 0;
  transition: all 0.2s ease-out;
}
.fadein.bottom {
  transform: translate3d(0, 20px, 0);
  transition: all 0.2s ease-out;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: all 2s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (max-width: 767px) {
  .fadein {
    opacity: 1;
  }
  .fadein.bottom {
    transform: translate3d(0, 0, 0);
  }
}
.animation-box {
  animation-name: easeOutBounce;
  animation-duration: 2s;
}
@keyframes easeOutBounce {
  0% {
    transform: translateY(0%);
  }
  12% {
    transform: translateY(-10.89%);
  }
  24% {
    transform: translateY(-43.56%);
  }
  36% {
    transform: translateY(-98.01%);
  }
  54% {
    transform: translateY(-75.02%);
  }
  74% {
    transform: translateY(-98.37%);
  }
  82% {
    transform: translateY(-93.75%);
  }
  92% {
    transform: translateY(-99.34%);
  }
  96% {
    transform: translateY(-98.46%);
  }
  100% {
    transform: translateY(-100%);
  }
}
/* タイプライター */
.typewriter span {
  display: inline-block;
  transform: translateY(30%);
  opacity: 0;
  transition-timing-function: cubic-bezier(0.23, 0.61, 0.355, 1);
  transition-duration: 690ms;
}
@keyframes typewriter {
  0 {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0);
  }
}
.typewriter.active span {
  transform: translateY(0);
  opacity: 1;
}
/* アニメーションマーカー */
.marker-animation.active {
  background-size: 100% 25%;
}
.marker-animation {
  padding: 7px 5px;
  background-image: linear-gradient(#ffea87, #ffea87);
  background-size: 0 25%;
  background-position: 0 75%;
  background-repeat: no-repeat;
  transition: 1s;
  font-weight: bold;
}
/*　レスポンシブ文字サイズ　*/
.text48 {
  font-size: clamp(24px, 4.429vw, 48px);
}
.text36 {
  font-size: clamp(20px, 4vw, 36px);
}
.text30 {
  font-size: clamp(20px, 3.571vw, 30px);
}
.text26 {
  font-size: clamp(18px, 3.143vw, 26px);
}
.text24 {
  font-size: clamp(18px, 3vw, 24px);
}
.text20 {
  font-size: clamp(16px, 2.571vw, 20px);
}
/* ----------------------------------------------------------------------
ヘッダー
---------------------------------------------------------------------- */
header#top-head {
  position: fixed;
  background: #ebeede;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
header#top-head .navbar-brand {
  padding: 0 23px;
}
header#top-head nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header#top-head nav .navbar-brand img {
  width: 143px;
}
header#top-head nav .nav-wrapper {
  display: flex;
  align-items: center;
}
header#top-head nav .nav-wrapper .nav_btn {
  width: 68px;
  height: 50px;
  z-index: 99;
}
header#top-head nav .nav-wrapper .nav_btn:hover {
  cursor: pointer;
}
header#top-head nav .nav-wrapper .nav_btn .nav_toggle {
  display: block;
  position: relative;
  width: 30px;
  height: 50px;
  font-size: 1rem;
  letter-spacing: 0;
  margin: 0 auto;
}
header#top-head nav .nav-wrapper .nav_btn .nav_toggle .nav_toggle_menu {
  position: absolute;
  bottom: 5px;
  color: #333;
  text-align: center;
  transform: scale(1);
  left: 0;
  right: 0;
  margin: auto;
}
header#top-head nav .nav-wrapper .nav_btn .nav_toggle i {
  transition: all 0.5s;
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #231815;
  position: absolute;
}
header#top-head nav .nav-wrapper .nav_btn .nav_toggle i:nth-child(1) {
  top: 8px;
}
header#top-head nav .nav-wrapper .nav_btn .nav_toggle i:nth-child(2) {
  top: 18px;
}
header#top-head nav .nav-wrapper .nav_btn .nav_toggle i:nth-child(3) {
  top: 28px;
}
header#top-head nav .nav-wrapper .nav_btn.show .nav_toggle i:nth-child(1) {
  transform: translateY(10px) translateX(-50%) rotate(-45deg);
}
header#top-head nav .nav-wrapper .nav_btn.show .nav_toggle i:nth-child(2) {
  opacity: 0;
}
header#top-head nav .nav-wrapper .nav_btn.show .nav_toggle i:nth-child(3) {
  transform: translateY(-10px) translateX(-50%) rotate(45deg);
}
#main-nav {
  overflow-y: scroll;
  top: 50px;
  right: -120%;
  transition: all 0.5s;
  position: fixed;
  background: #FFF;
  border: solid 1px #637800;
  color: #333;
  width: 100%;
  height: calc(100% - 50px);
  max-width: 420px;
  z-index: 98;
  font-size: clamp(1.8rem, 3.429vw, 3rem);
}
#main-nav.show {
  right: 0;
}
#main-nav ul#menu li a {
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: solid 1px #637800;
  padding: 5px 20px;
}
#main-nav ul#menu li a img {
  width: 60px;
}
#main-nav ul#menu li a div {
  text-align: center;
  width: 100%;
}
#main-nav ul#menu li a:hover {
  background: #ebeede;
}
#main-nav h3 {
  text-align: center;
  margin-top: 28px;
}
#main-nav .bogo-language-switcher {
  padding: 28px 0;
  display: flex;
  flex-direction: column;
}
#main-nav .bogo-language-switcher .ja {
  order: 1;
}
#main-nav .bogo-language-switcher .en-US {
  order: 2;
}
#main-nav .bogo-language-switcher .ko-KR {
  order: 3;
}
#main-nav .bogo-language-switcher .zh-CN {
  order: 4;
}
#main-nav .bogo-language-switcher .zh-TW {
  order: 5;
}
#main-nav .bogo-language-name {
  display: block;
  font-size: clamp(1.8rem, 3.429vw, 3rem);
  text-align: center;
  background: #afba7d;
  border-radius: 10px;
  margin: 0 auto 16px;
  width: 90%;
  height: 40px;
  line-height: 40px;
  color: #FFF;
}
#main-nav .bogo-language-name a {
  color: #FFF;
  display: block;
  background: #637800;
  border-radius: 10px;
}
#main-nav .bogo-language-name a:hover {
  background: #afba7d;
}
@media screen and (min-width: 768px) {
  body {
    padding-left: 100px;
    padding-top: 0;
  }
  body header#top-head {
    width: 100px;
    height: 100vh;
  }
  body header#top-head nav {
    flex-direction: column;
  }
  body header#top-head nav .navbar-brand {
    padding: 23px 18px;
    background: #ebeede;
    z-index: 999;
  }
  body header#top-head nav .nav_btn_wrapper {
    background: #ebeede;
    width: 100px;
    height: 100vh;
    z-index: 99;
  }
  body header#top-head nav .nav_btn_wrapper .nav_btn {
    margin: 12px auto 0;
  }
  body header#top-head nav .nav_btn_wrapper .nav_btn .nav_toggle {
    width: 51px;
  }
  body header#top-head nav .nav_btn_wrapper .nav_btn .nav_toggle i {
    width: 50px;
    height: 1px;
  }
  body header#top-head nav .nav_btn_wrapper .nav_btn .nav_toggle i:nth-child(1) {
    top: 20px;
  }
  body header#top-head nav .nav_btn_wrapper .nav_btn .nav_toggle i:nth-child(2) {
    top: 30px;
  }
  body header#top-head nav .nav_btn_wrapper .nav_btn .nav_toggle i:nth-child(3) {
    top: 40px;
  }
  body header#top-head nav .nav_btn_wrapper .nav_btn .nav_toggle .nav_toggle_menu {
    display: none;
  }
  body header#top-head nav .nav_btn_wrapper .nav_btn.show .nav_toggle i:nth-child(1) {
    transform: translateY(10px) translateX(-50%) rotate(-30deg);
  }
  body header#top-head nav .nav_btn_wrapper .nav_btn.show .nav_toggle i:nth-child(3) {
    transform: translateY(-10px) translateX(-50%) rotate(30deg);
  }
  body header#top-head nav .nav_btn_wrapper .header_menu_arrow {
    display: flex;
    margin-top: 50px;
  }
  body header#top-head nav .nav_btn_wrapper .header_menu_arrow img {
    display: block;
    margin: 0 auto;
  }
  body header#top-head nav #main-nav {
    right: unset;
    top: 44px;
    left: -120%;
    height: calc(100% - 44px);
  }
  body header#top-head nav #main-nav.show {
    left: 100px;
    top: 44px;
  }
  body header#top-head nav #main-nav ul#menu li a {
    padding: 20px 20px;
  }
  body header#top-head nav #main-nav ul#menu li a img {
    width: 114px;
  }
  body header#top-head nav #main-nav .bogo-language-name {
    height: 65px;
    line-height: 65px;
    border-radius: 20px;
  }
  body header#top-head nav #main-nav .bogo-language-name a {
    border-radius: 20px;
  }
}
@media screen and (min-width: 1025px) {
  #main-nav .bogo-language-name {
    height: 80px;
    line-height: 80px;
    max-width: 540px;
  }
}
/* ----------------------------------------------------------------------
フッター
---------------------------------------------------------------------- */
footer {
  margin-top: 50px;
}
footer .footer_flex {
  border-top: solid 1px #898989;
  border-bottom: solid 1px #898989;
  padding: 19px 8px 7px;
  color: #666464;
}
footer .footer_flex .normal {
  font-size: 1.6rem;
}
footer .footer_flex .company_logo {
  margin-bottom: 11px;
  text-align: center;
}
footer .footer_flex .footer_info {
  line-height: 1.6;
  margin-bottom: 10px;
}
footer .footer_flex .footer_info .company_name, footer .footer_flex .footer_info .address, footer .footer_flex .footer_info .mail {
  text-align: center;
}
footer .footer_flex .footer_info .flex {
  display: flex;
  justify-content: center;
  gap: 12px;
}
footer .footer_flex .footer_info a {
  color: #666464;
}
footer .footer_flex .footer_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #00a965;
  color: #FFF;
  border-radius: 10px;
  width: 198px;
  height: 40px;
  margin: 0 auto 15px;
  font-weight: normal;
}
footer .footer_flex .footer_btn a.button01 {
  font-size: 1.8rem;
}
footer .footer_flex .footer_btn a.button02 {
  font-size: 1.5rem;
}
.copyright {
  text-align: center;
  font-size: 1.2rem;
  padding: 30px 0;
  width: 100%;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  footer .footer_flex {
    padding: 14px 8px 20px;
  }
  footer .footer_flex .footer_btn {
    display: flex;
    justify-content: center;
    gap: 40px;
  }
  footer .footer_flex .footer_btn a {
    margin: 0;
  }
}
@media screen and (min-width: 1025px) {
  footer.inner {
    margin-top: 221px;
  }
  footer.inner .flex_pc {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}
@media screen and (min-width: 1300px) {
  footer .footer_flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    padding: 14px 40px;
    gap: 0 30px;
  }
}
/* ----------------------------------------------------------------------
お知らせ
---------------------------------------------------------------------- */
#news {
  margin: 38px 0;
}
#news .headline {
  margin-bottom: 30px;
  text-align: center;
}
#news .headline img {
  width: min(33.3333333333vw, 275px);
}
#news .news {
  margin-bottom: 64px;
}
#news .news a {
  color: #727171;
}
#news .news a:hover {
  color: #637800;
}
#news .news .post_date {
  margin: 12px 0 0;
  text-align: right;
}
#news .news .post_date time {
  font-size: clamp(1rem, 1.714vw, 1.4rem);
  background: #afba7d;
  color: #FFF;
  padding: 4px 14px;
  border-radius: 14px;
}
#news .news .thumbnail {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 1.5140186916;
}
#news .news .thumbnail img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#news .news h3 {
  margin: 20px 0;
  font-size: clamp(2rem, 3.143vw, 2.4rem);
  line-height: 1.8;
  letter-spacing: 0.35em;
}
#news .news p {
  font-size: clamp(1.4rem, 2.286vw, 1.8rem);
}
#news .news .excerpt_pc {
  display: none;
}
.wp-pagenavi {
  margin-bottom: 50px;
  text-align: center;
}
.wp-pagenavi a, .wp-pagenavi span {
  font-size: clamp(1.2rem, 1.4vw, 2.4rem);
  color: #afba7d;
  padding: 3px 15px;
  border-radius: 3px;
  display: inline-block;
}
.wp-pagenavi a:hover {
  opacity: 0.8;
}
.wp-pagenavi span.current {
  border: 2px solid;
}
.wp-pagenavi span.pages {
  border: none;
}
@media screen and (min-width: 768px) {
  #news {
    margin-top: 134px;
  }
  #news .headline {
    margin-bottom: 48px;
  }
  #news .flex .news a {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #news .flex .news a .thumbnail {
    width: 43%;
  }
  #news .flex .news a .text {
    width: 50%;
  }
  #news .flex .news a .text .post_date {
    margin-top: 0;
  }
  #news .flex .news a .text .post_date time {
    padding: 6px 20px;
  }
  #news .flex .news a .text h3 {
    margin: 15px 0 32px;
  }
}
@media screen and (min-width: 1025px) {
  #news .headline {
    margin-bottom: 123px;
  }
  #news .news_waku {
    max-width: 1156px;
  }
  #news .news_waku .excerpt_sp {
    display: none;
  }
  #news .news_waku .excerpt_pc {
    display: block;
  }
  #news .news_waku a.button {
    margin-top: 100px;
  }
  .wp-pagenavi {
    margin-bottom: 80px;
  }
}
/* ----------------------------------------------------------------------
404
---------------------------------------------------------------------- */
#content-header h1.headline {
  font-size: clamp(3rem, 5vw, 4rem);
  text-align: center;
  margin: 50px 0;
}
.notfound {
  text-align: center;
}
/*--------------------------------------------------
南小国追記
--------------------------------------------------*/
header#top-head nav .nav-wrapper .nav_btn .nav_toggle {
  width: 36px;
}
header#top-head nav .nav-wrapper .nav_btn .nav_toggle .nav_toggle_menu {
  font-size: 11px;
}
header#top-head nav .nav-wrapper .nav_btn .nav_toggle i {
  width: 36px;
}
header#top-head nav .nav-wrapper .nav_btn .nav_toggle i:nth-child(1) {
  top: 10px;
}
header#top-head nav .nav-wrapper .nav_btn .nav_toggle i:nth-child(2) {
  top: 18px;
}
header#top-head nav .nav-wrapper .nav_btn .nav_toggle i:nth-child(3) {
  top: 26px;
}
header#top-head nav .nav-wrapper .nav_btn.show .nav_toggle i:nth-child(1) {
  transform: translateY(8px) translateX(-50%) rotate(-30deg);
}
header#top-head nav .nav-wrapper .nav_btn.show .nav_toggle i:nth-child(2) {
  opacity: 0;
}
header#top-head nav .nav-wrapper .nav_btn.show .nav_toggle i:nth-child(3) {
  transform: translateY(-8px) translateX(-50%) rotate(30deg);
}
body header#top-head nav #main-nav ul#menu li a {
  padding: 15px 20px;
}
body header#top-head nav #main-nav ul#menu li a img {
  width: 50px;
}
body header#top-head nav #main-nav ul#menu li a div {
  text-align: left;
  font-size: 1.8rem;
  margin-left: 3rem;
}
body header#top-head nav #main-nav .bogo-language-name {
  border-radius: 30px;
}
body header#top-head nav #main-nav .bogo-language-name a {
  border-radius: 30px;
  display: grid;
  place-content: center;
}
footer .footer_flex {
  padding: 4rem 1rem 2rem;
}
footer .footer_flex .company_logo {
  margin-bottom: 2.5rem;
}
footer .footer_flex .footer_info {
  margin-bottom: 2rem;
}
footer .footer_flex .footer_info .company_name, footer .footer_flex .footer_info .address, footer .footer_flex .footer_info .mail {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  line-height: 1.8;
}
footer .footer_flex .footer_btn a {
  width: 220px;
  height: 45px;
}
@media screen and (min-width: 768px) {
  body header#top-head nav #main-nav {
    top: 0;
    height: 100%;
  }
  body header#top-head nav #main-nav.show {
    top: 0;
    height: 100%;
  }
  body header#top-head nav #main-nav h3 {
    font-size: 2rem;
    margin-bottom: 1.6rem;
    margin-top: 4rem;
  }
  body header#top-head nav #main-nav .bogo-language-switcher {
    padding: 0;
  }
  body header#top-head nav #main-nav ul#menu li a {
    padding: 2rem 3rem;
  }
  body header#top-head nav #main-nav ul#menu li a img {
    width: 4rem;
  }
  body header#top-head nav #main-nav ul#menu li a div {
    text-align: left;
    font-size: 1.8rem;
    margin-left: 4rem;
  }
  body header#top-head nav #main-nav .bogo-language-name {
    height: 5rem;
    border-radius: 30px;
  }
  body header#top-head nav #main-nav .bogo-language-name a {
    height: 5rem;
    display: grid;
    place-content: center;
    border-radius: 30px;
    font-size: 1.8rem;
  }
}
