@charset "UTF-8";
/* ===============================================
# コンテナ幅
=============================================== */
/* ===============================================
# header
=============================================== */
/* ===============================================
# フォント
=============================================== */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* ===============================================
# ブレイクポイント
=============================================== */
/* ===============================================
# 画像ファイルパス
=============================================== */
/* ===============================================
# 共通
=============================================== */
/* ===============================================
# ブラウザ幅でフォントサイズを変える関数
=============================================== */
/* ===============================================
# フォントをremに変換
=============================================== */
/* ===============================================
# remのclamp
=============================================== */
/* ===============================================
# 外部アイコン
=============================================== */
html {
  overflow-x: hidden;
  font-size: 62.5%;
  box-sizing: border-box;
  width: 100%;
}

* {
  box-sizing: border-box;
}

body {
  overflow: hidden;
  position: relative;
  font-family: "Noto Sans JP", "Yu Gothic Medium", YuGothic, sans-serif;
  color: #333;
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.02em;
  min-width: 999px;
  font-size: clamp(1.5rem, 1.1713030747vw, 1.6rem);
  box-sizing: border-box;
  width: 100%;
}
@media (max-width: 767px) {
  body {
    min-width: initial;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

p {
  margin: 0.375em 0 1.25em;
}

p:first-of-type {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
a:hover {
  text-decoration: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
}
ul li,
ol li {
  padding: 0;
  list-style: none;
}

figure {
  margin: 0;
  text-align: center;
}
figure figcaption {
  margin-top: 0.5em;
  text-align: left;
}

img {
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
  max-width: 100%;
}

@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}

.text-large {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .text-large {
    font-size: 1.6rem;
  }
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.pc-text-center {
  text-align: center;
}
@media (max-width: 767px) {
  .pc-text-center {
    text-align: left;
  }
}

.pc-text-left {
  text-align: left;
}

.pc-text-right {
  text-align: right;
}
@media (max-width: 767px) {
  .pc-text-right {
    text-align: left;
  }
}

.img-left {
  text-align: left;
}

/* ===============================================
# マージン
=============================================== */
.mt0 {
  margin-top: 0 !important;
}

@media (min-width: 768px) {
  .pc-mb0 {
    margin-bottom: 0 !important;
  }
}

.mb0 {
  margin-bottom: 0 !important;
}

.m-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt1em {
  margin-top: 1em !important;
}

/* ===============================================
# 共通パーツ
=============================================== */
.out-link-icon {
  position: relative;
  display: inline-block;
  padding-right: 24px;
}
.out-link-icon::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background: #FF8800;
  -webkit-mask-image: url(/wp-content/uploads/out_link.svg);
          mask-image: url(/wp-content/uploads/out_link.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.out-link-icon.--black:after {
  background: #333;
}

.primary-color {
  color: #FF8800;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1240px) {
  .container {
    max-width: 94%;
  }
}

/* accordion
=========================================== */
.js-accordion-title {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}
.js-accordion-title:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 15px;
  height: 2px;
  /*縦線に*/
  transform: rotate(90deg);
  background: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 100;
}
@media (max-width: 767px) {
  .js-accordion-title:before {
    right: 21px;
  }
}
.js-accordion-title:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  /*横線*/
  width: 15px;
  height: 2px;
  background: #fff;
  transition: all 0.2s ease-in-out;
  z-index: 100;
}
@media (max-width: 767px) {
  .js-accordion-title:after {
    right: 21px;
  }
}

.js-accordion-title.open:before {
  transform: rotate(180deg);
}
.js-accordion-title.open:after {
  opacity: 0;
}

.accordion-content {
  display: none;
}

@media only screen and (max-width: 767px) {
  .js-accordion-title_sp {
    cursor: pointer;
    position: relative;
    padding-right: 30px;
  }
  .js-accordion-title_sp:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 10%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(135deg);
  }
  .js-accordion-title_sp.open:after {
    transform: rotate(-45deg);
    top: 30%;
  }
  .accordion-content_sp {
    display: none;
  }
}
/* 404 not found
=========================================== */
#notfound .text_box {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 540px) {
  #notfound .text_box {
    text-align: left;
    margin-bottom: 20px;
  }
}
#notfound .btn {
  margin: 0 auto;
}

/* pankuzu
=========================================== */
.bread.post_bread .container {
  padding: 0 20px;
  max-width: 1240px;
}
@media (max-width: 767px) {
  .bread.post_bread .container {
    padding: 0 4.5%;
    max-width: calc(600px + 9%);
  }
}

.bread {
  padding-block: 0.4%;
  background: #fff;
}
.bread .container {
  padding: 0 20px;
  max-width: 1240px;
}
@media (max-width: 767px) {
  .bread .container {
    padding: 0 4.5%;
    max-width: calc(600px + 9%);
  }
}
.bread ul {
  list-style: none;
  padding-left: 0;
}
.bread ul > * {
  margin: 0;
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
}
.bread ul > *:not(:last-child) {
  margin-right: 2em;
}
.bread ul > *:not(:last-child):before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  top: 0;
  left: calc(100% + 0.6em);
  right: auto;
  bottom: 0;
  margin: auto;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
}
.bread a {
  text-decoration: none;
}

/* flexbox
=========================================== */
.flex {
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .flex {
    flex-direction: column;
  }
}

.flex.center {
  justify-content: space-between;
}

.flex.flex-between {
  justify-content: space-between;
}

.flex.reverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .flex.reverse {
    flex-direction: row;
  }
}

@media only screen and (max-width: 767px) {
  .spFlexRow {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
/* grid
  =========================================== */
.grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 767px) {
  .grid {
    grid-template-rows: 2fr;
    grid-template-columns: 1fr;
  }
}

/* section
  =========================================== */
section {
  padding: 100px 0;
}
@media only screen and (max-width: 767px) {
  section {
    padding: 60px 0;
  }
}

/* iOS
=========================================== */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]:-webkit-search-decoration,
input[type=button]:-webkit-search-decoration {
  display: none;
}

input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

.primary-btn {
  margin: auto;
}
.primary-btn a {
  color: #FF8800;
  display: block;
  border: solid 2px #FF8800;
  max-width: 220px;
  width: 100%;
  text-align: center;
  padding: 8px 0;
  margin: auto;
}
.primary-btn a:hover {
  background: #FF8800;
  color: #fff;
}

#header {
  position: static;
  top: -30px;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  transition: all 0.3s ease 0s;
}

.header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  position: initial;
  height: 90px;
}
@media (max-width: 766px) {
  .header_wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem;
    height: 60px;
  }
}
.header_wrapper.container {
  max-width: 1800px;
  padding: 0 2%;
}
@media (min-width: 1921px) {
  .header_wrapper.container {
    max-width: 100%;
  }
}
.header_wrapper .title img {
  height: 80px;
}
@media (max-width: 766px) {
  .header_wrapper .title img {
    height: 50px;
  }
}

@media only screen and (max-width: 766px) {
  .header_nav {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #F3F5F8;
    transition: all 0.4s;
    z-index: 1000;
  }
}
.header_nav .nav_wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media only screen and (max-width: 766px) {
  .header_nav .nav_wrapper {
    flex-direction: column;
    position: relative;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}
@media only screen and (max-width: 766px) {
  .header_nav .nav_wrapper .nav_item {
    text-align: center;
  }
}
.header_nav .nav_wrapper .nav_item a {
  display: inline-block;
  padding: 1.5rem 1rem;
}
@media only screen and (max-width: 766px) {
  .header_nav .nav_wrapper .nav_item a {
    padding: 1.5rem 3%;
  }
}
.header_nav .nav_wrapper img {
  height: 70px;
}

.header_nav.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

body.active {
  height: 100%;
  overflow: hidden;
}

html.active {
  overflow: hidden;
}

#header.js-fixed {
  position: fixed;
  left: 0;
  top: 0;
  transition: all 0.3s ease 0s;
}

/*humburger
=========================================== */
.btn_open {
  display: none !important;
  background: #FF8800;
  display: block;
  position: absolute;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  right: 3%;
  z-index: 1001;
}
@media (min-width: 768px) {
  .btn_open {
    display: none;
  }
}

/*ボタン内側*/
.btn_open span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}
.btn_open span:nth-of-type(1) {
  top: 15px;
}
.btn_open span:nth-of-type(2) {
  top: 23px;
}
.btn_open span:nth-of-type(3) {
  top: 31px;
}

/*activeクラスが付与されると線が回転して×に*/
.btn_open.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.btn_open.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}
.btn_open.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

#footer {
  position: relative;
  background: #fff;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #footer {
    padding: 0;
  }
}
#footer .container {
  padding: 40px 0 60px;
  max-width: 800px;
}
@media (max-width: 840px) {
  #footer .container {
    max-width: 94%;
  }
}
@media (max-width: 767px) {
  #footer .container {
    padding: 40px 0 40px;
  }
}
#footer .copy {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  background: #FF8800;
  padding-block: 20px;
}
@media (max-width: 767px) {
  #footer .copy {
    font-size: 1rem;
    padding-block: 16px;
  }
}
#footer .footer_info {
  text-align: center;
  margin-bottom: 40px;
}
#footer .footer_info .footer_info_logo {
  margin: 0 auto 40px;
  margin-bottom: 20px;
  max-width: 300px;
}
@media (max-width: 767px) {
  #footer .footer_info .footer_info_logo {
    max-width: 200px;
    margin: 0 auto 30px;
  }
}
#footer .footer_info .footer_info_logo a {
  display: inline-block;
}
#footer .footer_table table {
  width: 100%;
  color: #333;
}
@media (max-width: 767px) {
  #footer .footer_table table tr {
    display: flex;
    flex-direction: column;
  }
}
#footer .footer_table table th,
#footer .footer_table table td {
  padding-block: 20px;
  border: 1px solid #A3A3A3;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media (max-width: 767px) {
  #footer .footer_table table th,
  #footer .footer_table table td {
    width: 100%;
    padding-block: 10px;
    text-align: center;
    border: 1px solid #d1d1d1;
  }
}
#footer .footer_table table th {
  background: #FFF8F0;
}
#footer .footer_table table td {
  padding-left: 40px;
}
@media (max-width: 767px) {
  #footer .footer_table table td {
    padding-left: 0;
  }
}

/* pagetop
  =========================================== */
#page-top {
  right: 60px;
}
#page-top a {
  display: block;
}
#page-top a:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FF8800;
}
#page-top a:after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 20px;
  left: 18px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}

/* archive
=========================================== */
#news_archive .news_box {
  position: relative;
  display: flex;
  flex-direction: column;
}
#news_archive .news_list {
  border-top: solid 1px #BFBFBF;
}
#news_archive .news_list .news_list_item {
  border-bottom: solid 1px #BFBFBF;
}
#news_archive .news_list .news_list_item a {
  display: flex;
  padding: 20px 0;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  #news_archive .news_list .news_list_item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (hover: hover) {
  #news_archive .news_list .news_list_item a:hover {
    opacity: 0.6;
  }
}
#news_archive .news_list .time {
  display: inline-block;
  margin-right: 12px;
  white-space: nowrap;
}
@media (min-width: 1980px) {
  #news_archive .news_list .time {
    margin-right: 0px;
  }
}
#news_archive .news_list .time time {
  transition: 0.3s all;
  font-weight: 500;
}
#news_archive .news_list .category {
  display: inline-block;
  color: #fff;
  background: #FF8800;
  font-size: 1.3rem;
  padding: 2px 8px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  #news_archive .news_list .category {
    font-size: 1.1rem;
  }
}
@media (max-width: 767px) {
  #news_archive .news_list .news_title {
    width: 100%;
    margin-top: 8px;
  }
}
#news_archive .news_list .news_title h2 {
  font-size: clamp(1.4rem, 1.1713030747vw, 1.8rem);
  font-weight: 600;
  transition: 0.3s all;
}
#news_archive .pagination {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#news_archive .pagination > .page-numbers {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 767px) {
  #news_archive .pagination > .page-numbers {
    gap: 10px;
  }
}
#news_archive .pagination > .page-numbers li a, #news_archive .pagination > .page-numbers li span {
  font-size: clamp(1.4rem, 1.0980966325vw, 1.6rem);
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  font-weight: 500;
  color: #FF8800;
  background: #fff;
  border: 1px solid #FF8800;
}
@media (max-width: 767px) {
  #news_archive .pagination > .page-numbers li a, #news_archive .pagination > .page-numbers li span {
    height: 28px;
    width: 28px;
  }
}
@media (hover: hover) {
  #news_archive .pagination > .page-numbers li a:hover, #news_archive .pagination > .page-numbers li span:hover {
    opacity: 0.6;
  }
}
#news_archive .pagination > .page-numbers li a.current, #news_archive .pagination > .page-numbers li span.current {
  pointer-events: none;
  width: 48px;
  height: 48px;
  color: #fff;
  background: #FF8800;
}
@media (max-width: 767px) {
  #news_archive .pagination > .page-numbers li a.current, #news_archive .pagination > .page-numbers li span.current {
    height: 28px;
    width: 28px;
  }
}
#news_archive .pagination > .page-numbers li a.prev, #news_archive .pagination > .page-numbers li a.next, #news_archive .pagination > .page-numbers li span.prev, #news_archive .pagination > .page-numbers li span.next {
  font-size: 1.4rem;
  padding: 5px 10px;
  width: auto;
}
@media (max-width: 767px) {
  #news_archive .pagination > .page-numbers li a.prev, #news_archive .pagination > .page-numbers li a.next, #news_archive .pagination > .page-numbers li span.prev, #news_archive .pagination > .page-numbers li span.next {
    font-size: 1.2rem;
    padding: 0 0.1em;
  }
}
@media (hover: hover) {
  #news_archive .pagination > .page-numbers li a.prev:hover, #news_archive .pagination > .page-numbers li a.next:hover, #news_archive .pagination > .page-numbers li span.prev:hover, #news_archive .pagination > .page-numbers li span.next:hover {
    opacity: 0.6;
  }
}
@media (hover: hover) {
  #news_archive .pagination > .page-numbers li a.dots:hover, #news_archive .pagination > .page-numbers li span.dots:hover {
    opacity: 1;
  }
}

/* single
=========================================== */
#news_single .single-area .date {
  font-size: clamp(1.3rem, 1.1713030747vw, 1.9rem);
  transition: 0.3s all;
  font-weight: 500;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  #news_single .single-area .date {
    font-size: 1.3rem;
  }
}
#news_single .single-area .post-area {
  position: relative;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  background: #F3F5F8;
}
@media (max-width: 767px) {
  #news_single .single-area .post-area {
    padding: 50px 20px 50px;
  }
}
#news_single .single-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px auto;
  padding: 0;
}
#news_single .single-navigation li {
  list-style: none;
  line-height: 1.6;
}
#news_single .single-navigation li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: 0.2s;
}
@media (hover: hover) {
  #news_single .single-navigation li a:hover {
    opacity: 0.7;
  }
}
#news_single .single-navigation li.previous a {
  padding-left: 1.125em;
}
#news_single .single-navigation li.previous a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.25em;
  width: 0.5em;
  height: 0.5em;
  border-bottom: 1px solid #FF8800;
  border-left: 1px solid #FF8800;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(45deg);
}
#news_single .single-navigation li.next a {
  padding-right: 1.125em;
  text-align: right;
}
#news_single .single-navigation li.next a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: auto;
  right: 0.25em;
  width: 0.5em;
  height: 0.5em;
  border-bottom: 1px solid #FF8800;
  border-left: 1px solid #FF8800;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(-45deg) scaleX(-1);
}/*# sourceMappingURL=style.css.map */