@charset "UTF-8";
/*改善点

・768pxまではPC（タブレットも含む）
・767pxからSP


追加ルール
/*==================
 ▼ブレイクポイントのルール▼
 -スマホを基本設計にする-
 *〜479px：SP縦
 *480px〜：SP横
 *600px〜タブレット
 *960px〜小型PC
 *1280px〜大型PC
==================

*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
:root {
  --mainColor: #021976;
  --subColor: #00754a;
}

.mainColor {
  color: var(--mainColor);
}

.bgMainColor {
  background-color: var(--mainColor);
}

.mainColorDeep {
  color: #1a1a1a;
}

.bgMainColorDeep {
  background-color: #1a1a1a;
}

.mainColorExDeep {
  color: #03312e;
}

.mainColorLight {
  color: #808080;
}

.bgMainColorLight {
  background-color: #808080;
}

.mainColorExLight {
  color: #f2f2f2;
}

.bgMainColorExLight {
  background-color: #f2f2f2;
}

.mainColorUlLight {
  color: #f6f7f9;
}

.bgMainColorUlLight {
  background-color: #f6f7f9;
}

.subColor {
  color: var(--subColor);
}

.bgSubColor {
  background-color: #00754a;
}

.subColorDeep {
  color: #e3e3fb;
}

.bgSubColorDeep {
  background-color: #e3e3fb;
}

.bgSubColorLight {
  background-color: #F8FBFF;
}

.compColor {
  color: #ecfe02;
}

.bgCompColor {
  background-color: #ecfe02;
}

.grayColor {
  color: #a9a9a9;
}

.bgGrayColor {
  background-color: #a9a9a9;
}

.grayColorLight {
  color: #dcdcdc;
}

.bgGrayColorLight {
  background-color: #dcdcdc;
}

.bgGrayColorExLight {
  background-color: #ececec;
}

.bgWhiteTrans {
  background-color: rgba(255, 255, 255, 0.5);
}

.bgBlackTrans {
  background-color: rgba(0, 0, 0, 0.3);
}

.bgBlack {
  background: #000;
}

.bgGrad {
  background: rgb(255, 178, 90);
  background: linear-gradient(90deg, rgb(255, 178, 90) 0%, rgb(255, 143, 90) 100%);
}

.bgTexture {
  background-image: url(../img/bg_texture_light.gif);
}

.grayLight {
  color: #9a9a9a;
}

.lightRed {
  color: #ea5150;
}

/*フォント系*/
:root {
  --fontEn: "Poppins", sans-serif;
}

.fontEn {
  font-family: var(--fontEn);
}

:root {
  --fontNum: "Inter", sans-serif;
}

.fontNum {
  font-family: var(--fontNum);
}

.fontEnSub {
  font-family: "Philosopher", sans-serif;
}

:root {
  --fontJp: "Noto Sans JP", sans-serif;
}

.fontJp {
  font-family: var(--fontJp);
}

.gothic {
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.serif {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

body {
  font-family: var(--fontJp);
  color: #1f1f1f;
}

/*==================================================
 * リセットcss
 *================================================*/
/* a modern css reset*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

li {
  list-style-type: none;
}

/*==================================================
 * フォント
 *================================================*/
.italic {
  font-style: italic;
}

html {
  font-size: 10px;
}

html,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6,
h7,
p,
span,
div {
  line-height: 2;
  font-weight: 500;
}

.lh_xxl {
  line-height: 2.5;
}
.lh_xxl * {
  line-height: 2.5;
}

.lh_xl {
  line-height: 2;
}
.lh_xl * {
  line-height: 2;
}

.lh_l {
  line-height: 1.8;
}
.lh_l * {
  line-height: 1.8;
}

.lh_m {
  line-height: 1.5;
}
.lh_m * {
  line-height: 1.5;
}

.lh_s {
  line-height: 1.1;
}
.lh_s * {
  line-height: 1.1;
}

.lh_xs {
  line-height: 0.7;
}
.lh_xs * {
  line-height: 0.7;
}

.ls_xl {
  letter-spacing: 0.3em;
}

.ls_l {
  letter-spacing: 0.2em;
}

.ls_m {
  letter-spacing: 0.1em;
}

.ls_s {
  letter-spacing: 0.05em;
}

.ls_xs {
  letter-spacing: 0.01em;
}

.ls_0 {
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.bold {
  font-weight: 500 !important;
}

.bold900 {
  font-weight: 900 !important;
}

.thin {
  font-weight: 100;
}

.nowrap {
  white-space: nowrap;
}

.white {
  color: #fff;
}
.whiteAll * {
  color: #fff;
}

.black {
  color: #000;
}

.gray {
  color: #686868;
}

.red {
  color: #ff4501 !important;
}

.fsL {
  font-size: 100px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL {
    font-size: 64px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL {
    font-size: 42px;
  }
}

.fsL2 {
  font-size: 64px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL2 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL2 {
    font-size: 36px;
  }
}

.fsL3 {
  font-size: 56px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL3 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL3 {
    font-size: 36px;
  }
}

.fsL4 {
  font-size: 42px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL4 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL4 {
    font-size: 24px;
  }
}

.fsM {
  font-size: 34px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM {
    font-size: 21px;
  }
}

.fsM2 {
  font-size: 28px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM2 {
    font-size: 20px;
  }
}

.fsM3 {
  font-size: 24px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM3 {
    font-size: 17px;
  }
}

.fsM35 {
  font-size: 21px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM35 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM35 {
    font-size: 16px;
  }
}

.fsM4 {
  font-size: 18px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM4 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM4 {
    font-size: 16px;
  }
}

.fsM5 {
  font-size: 16px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM5 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM5 {
    font-size: 14px;
  }
}

.fsS {
  font-size: 14px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS {
    font-size: 13px;
  }
}

.fsS2 {
  font-size: 13px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS2 {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS2 {
    font-size: 12px;
  }
}

.fsS3 {
  font-size: 12px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS3 {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS3 {
    font-size: 11px;
  }
}

.fsS3 {
  font-size: 10px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS3 {
    font-size: 9px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS3 {
    font-size: 9px;
  }
}

.h000 {
  font-size: 100px;
}

.h00 {
  font-size: 64px;
}

.h0 {
  font-size: 42px;
}

.h1 {
  font-size: 32px;
}

.h2 {
  font-size: 28px;
}

.h3 {
  font-size: 24px;
}

.h4 {
  font-size: 18px;
}

.h5 {
  font-size: 16px;
}

.text_m {
  font-size: 14px;
}

.text_sm {
  font-size: 13px;
}

.text_s {
  font-size: 12px;
}

.text_ss {
  font-size: 10px;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  body {
    font-size: 14px;
  }
  .h000 {
    font-size: 64px;
  }
  .h00 {
    font-size: 36px;
  }
  .h0 {
    font-size: 25px;
  }
  .h1 {
    font-size: 24px;
  }
  .h2 {
    font-size: 24px;
  }
  .h3 {
    font-size: 20px;
  }
  .h4 {
    font-size: 15px;
  }
  .h5 {
    font-size: 14px;
  }
  .text_m {
    font-size: 13px;
  }
  .text_s {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .h000 {
    font-size: 42px;
  }
  .h00 {
    font-size: 36px;
  }
  .h0 {
    font-size: 24px;
  }
  .h1 {
    font-size: 22px;
  }
  .h2 {
    font-size: 20px;
  }
  .h3 {
    font-size: 17px;
  }
  .h4 {
    font-size: 15px;
  }
  .h5 {
    font-size: 15px;
  }
  .text_m {
    font-size: 13px;
  }
  .text_s {
    font-size: 11px;
  }
  a[href*="tel:"] {
    pointer-events: all;
  }
}
/*==================================================
 * 独自リセット
 *================================================*/
/*リセット関係*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
}

ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

/*
a:hover{
	opacity: 0.8;
	transition:0.3s;
}
*/
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 0;
  font-weight: 100;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

hr {
  margin: 10px auto;
}

a:hover {
  text-decoration: none;
}

/*==================================================
 * 独自クラス（どのサイトでも）
 *================================================*/
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.remove {
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 0;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relapadding {
  padding-right: 80px;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.inlineBlock {
  display: inline-block;
}

.inlineBlockUl li {
  display: inline-block;
}

.disNone {
  display: none !important;
}

.bgCenter {
  background-position: center center;
  background-size: cover;
}

.opa {
  transition: 0.3s;
  opacity: 1;
}

a:hover .opa {
  transition: 0.3s;
  opacity: 0.7;
}

.tra,
.tra:hover {
  transition: 0.3s;
}

.verticalMiddle {
  vertical-align: middle;
}

.verticalBottom {
  vertical-align: bottom;
}

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

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

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

@media only screen and (max-width: 767px) {
  .text-center-sp {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .text-right-sp {
    text-align: right;
  }
}

@media only screen and (max-width: 767px) {
  .text-left-sp {
    text-align: left;
  }
}

/*
p {
    margin-bottom: 10px;
}
*/
.linkA {
  text-decoration: underline;
  transition: 0.3s;
  color: #021976;
}
.linkA:hover {
  color: #021976;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .notTab {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
}
/*余白*/
.m0 {
  margin: 0;
}

.p0 {
  padding: 0;
}

.mb0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .mb30 {
    margin-bottom: 20px;
  }
}

.mb40 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .mb40 {
    margin-bottom: 30px;
  }
}

.mb50 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .mb50 {
    margin-bottom: 30px;
  }
}

.mb60 {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .mb60 {
    margin-bottom: 40px;
  }
}

.mb70 {
  margin-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .mb70 {
    margin-bottom: 40px;
  }
}

.mb80 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .mb80 {
    margin-bottom: 40px;
  }
}

.mb80 {
  margin-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .mb80 {
    margin-bottom: 50px;
  }
}

.mb100 {
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .mb100 {
    margin-bottom: 50px;
  }
}

.mb200 {
  margin-bottom: 200px;
}
@media only screen and (max-width: 767px) {
  .mb200 {
    margin-bottom: 70px;
  }
}

.ml0 {
  margin-left: 0;
}

.mbL {
  margin-bottom: 30%;
}

.mbL2 {
  margin-bottom: 25%;
}

.mbL3 {
  margin-bottom: 20%;
}

.mbL4 {
  margin-bottom: 15%;
}

.mbM {
  margin-bottom: 10%;
}

.mbM2 {
  margin-bottom: 7.5%;
}

.mbM3 {
  margin-bottom: 5%;
}

.mbS {
  margin-bottom: 3.5%;
}

.mbS2 {
  margin-bottom: 2%;
}

.mbS3 {
  margin-bottom: 1%;
}

@media only screen and (max-width: 767px) {
  .mbSpL {
    margin-bottom: 30%;
  }
  .mbSpL2 {
    margin-bottom: 25%;
  }
  .mbSpL3 {
    margin-bottom: 20%;
  }
  .mbSpL4 {
    margin-bottom: 15%;
  }
  .mbSpM {
    margin-bottom: 10%;
  }
  .mbSpM2 {
    margin-bottom: 7.5%;
  }
  .mbSpM3 {
    margin-bottom: 5%;
  }
  .mbSpS {
    margin-bottom: 3.5%;
  }
  .mbSpS2 {
    margin-bottom: 2%;
  }
  .mbSpS3 {
    margin-bottom: 1%;
  }
  .mbSp0 {
    margin-bottom: 0;
  }
}
/*flex・グリッド系*/
.flex {
  display: flex;
}

.justCenter {
  justify-content: center;
}

.justEnd {
  justify-content: flex-end;
}

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

.alignCenter {
  align-items: center;
}

.alignStart {
  align-items: flex-start;
}

.alignEnd {
  align-items: flex-end;
}

.flexReverse {
  flex-flow: row-reverse;
}

.flexWrap {
  flex-wrap: wrap;
}

.col {
  padding-left: 15px;
  padding-right: 15px;
}

.flexCol {
  width: 100%;
}

.col1 {
  width: 100%;
}

.col2 {
  width: 50%;
}

.col3 {
  width: 33.3333%;
}

.col-3 {
  width: 66.6666%;
}

.col4 {
  width: 25%;
}

.col-4 {
  width: 75%;
}

.col5 {
  width: 20%;
}

.col-5 {
  width: 80%;
}

.col6 {
  width: 16.666%;
}

.col-6 {
  width: 83.333%;
}

.col3-2 {
  width: 60%;
}

.col-3-2 {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .flexSplit {
    width: 100%;
  }
  .flexPc {
    display: block;
  }
  .flexWrapSp {
    flex-wrap: wrap;
  }
  .bgFixed {
    background-attachment: unset;
  }
  .flexReverse {
    flex-flow: row;
  }
  .flexSp {
    display: flex;
  }
  .flexColumnSp {
    flex-direction: column;
  }
  .justCenterSp {
    justify-content: center;
  }
  .colSp1 {
    width: 100%;
  }
  .colSp2 {
    width: 50%;
  }
  .colSp3 {
    width: 33.3333%;
  }
  .colSp-3 {
    width: 66.6666%;
  }
  .colSp4 {
    width: 25%;
  }
  .colSp-4 {
    width: 75%;
  }
  .colSp5 {
    width: 20%;
  }
  .colSp-5 {
    width: 80%;
  }
  .colSp6 {
    width: 16.666%;
  }
  .colSp-6 {
    width: 83.333%;
  }
  .colSp3-2 {
    width: 60%;
  }
  .colSp-3-2 {
    width: 40%;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .colMd1 {
    width: 100%;
  }
  .colMd2 {
    width: 50%;
  }
  .colMd3 {
    width: 33.3333%;
  }
  .colMd-3 {
    width: 66.6666%;
  }
  .colMd4 {
    width: 25%;
  }
  .colMd-4 {
    width: 75%;
  }
  .colMd5 {
    width: 20%;
  }
  .colMd-5 {
    width: 80%;
  }
  .colMd6 {
    width: 16.666%;
  }
  .colMd-6 {
    width: 83.333%;
  }
  .colMd3-2 {
    width: 60%;
  }
  .colMd-3-2 {
    width: 40%;
  }
}
/*横幅*/
.cnt {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .cnt {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.cnt.max {
  max-width: 100%;
}

.w100 {
  width: 100%;
}

.cntXS {
  max-width: 580px;
  margin-right: auto;
  margin-left: auto;
}

.cntS {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.cntM {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.cntL {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
}

.cntXl {
  max-width: 1740px;
  margin-right: 2%;
  margin-left: 2%;
}
@media screen and (min-width: 1740px) {
  .cntXl {
    margin-right: auto;
    margin-left: auto;
  }
}

.cntWide {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.menu-btn {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.rw {
  margin-left: -15px;
  margin-right: -15px;
}

:root {
  --spaceSizeS: clamp(30px, 7vw, 60px);
  --spaceSize: clamp(80px, 7vw, 90px);
  --spaceSizeWide: clamp(160px, 20vw, 240px);
}

.padding {
  padding-top: var(--spaceSize);
  padding-bottom: var(--spaceSize);
}
.paddingTop {
  padding-top: var(--spaceSize);
}

.paddingW {
  padding-top: var(--spaceSizeWide);
  padding-bottom: var(--spaceSizeWide);
}

.marginS {
  margin-top: var(--spaceSizeS);
  margin-bottom: var(--spaceSizeS);
}

.margin {
  margin-top: var(--spaceSize);
  margin-bottom: var(--spaceSize);
}

.marginW {
  margin-top: var(--spaceSizeWide);
  margin-bottom: var(--spaceSizeWide);
}

.pb0 {
  padding-bottom: 0;
}

/*背景系*/
.bgImg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bgImgHeight {
  padding-bottom: 67%;
}

.bgImgParallax {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.bgFixed {
  background-attachment: fixed;
}
@media only screen and (max-width: 767px) {
  .bgFixed {
    background-attachment: inherit;
  }
}

.bgImgCircle {
  border-radius: 50%;
  padding-bottom: 100%;
}

.bgBlur {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.bgBlur:before {
  content: "";
  background: inherit;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}

.bgWhite {
  background-color: #ffffff;
}

.bgZoom {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.bgZoomImg {
  position: absolute;
  width: 100%;
  transition: all 0.5s ease-out;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  will-change: transform;
  height: 100%;
  top: 0;
  left: 0;
}

a:hover .bgZoomImg {
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.9);
}

.bgZoomText {
  position: relative;
  pointer-events: none;
  width: 100%;
  z-index: 1;
}

/*テーブルboostrap*/
table {
  border-collapse: collapse;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th {
  text-align: inherit;
  font-weight: normal;
}
.table td,
.table th {
  padding: 1.2rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #e8edf0;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered td,
.table-bordered th {
  border: 1px solid #dee2e6;
}

/*マスクアニメーション*/
.maskCenter .maskWrap {
  margin-left: auto;
  margin-right: auto;
}

.maskWrap {
  display: table;
  overflow: hidden;
}

.maskWrap .mask {
  display: table;
  position: relative;
  margin-bottom: 0.25em;
  left: -100%;
  overflow: hidden;
}

.maskWrap .maskBg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ae9373;
}

/*角丸*/
.radiusS {
  border-radius: 5px;
}

.radiusM {
  border-radius: 10px;
}

.radiusL {
  border-radius: 20px;
}

.radiusXl {
  border-radius: 30px;
}

/*影*/
.shadowS {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
@media only screen and (max-width: 767px) {
  .shadowS {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  }
}

.shadowM {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
@media only screen and (max-width: 767px) {
  .shadowM {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  }
}

.shadowL {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
@media only screen and (max-width: 767px) {
  .shadowL {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 30px 90px;
  }
}

.shadowLL {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}

/*FVスライダー(CSS)*/
.mainImgBox,
.mainImg {
  padding-bottom: 65vw;
}
@media only screen and (max-width: 767px) {
  .mainImgBox,
  .mainImg {
    padding-bottom: 120vw;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .mainImgBox,
  .mainImg {
    padding-bottom: 95vw;
  }
}

.mainImgBox {
  overflow: hidden;
  position: relative;
  z-index: -1;
}

.mainImg {
  z-index: 10;
  opacity: 0;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  /*1枚6秒で×枚数*/
  animation: anime 18s 0s infinite;
}

/*2枚目以降6秒遅れてアニメーションスタート*/
.mainImg:nth-of-type(2) {
  animation-delay: 6s;
}

.mainImg:nth-of-type(3) {
  animation-delay: 12s;
}

/*
.mainImg:nth-of-type(4) {
    animation-delay: 18s;
}
.mainImg:nth-of-type(5) {
    animation-delay: 24s;
}

.mainImg:nth-of-type(6) {
    animation-delay: 30s;
}
*/
@keyframes anime {
  0% {
    opacity: 0;
  }
  /*3秒：フェードイン.3/alls*/
  16% {
    opacity: 1;
  }
  /*6秒：次のスライド再生.6/alls*/
  33% {
    opacity: 1;
  }
  /*9秒：フェードアウト&次のスライドフェードイン*/
  50% {
    opacity: 0;
    transform: scale(1.2);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
/*FVスライダー(CSS)ここまで*/
/*==================================================
 * 独自クラス（このサイトだけ）
 *================================================*/
/*線系*/
.titleLine {
  /*
  background: linear-gradient(transparent 50%, #f4d862 0%);
  display: inline;
  */
  position: relative;
  display: inline-block;
  z-index: 10;
  /*
  &.white{
      background: linear-gradient(transparent 70%, $subColorDeep 0%);
  }
  */
}
.titleLine:after {
  content: "";
  display: inline-block;
  background-color: #ecfe02;
  position: absolute;
  bottom: 0;
  left: -2.5%;
  width: 105%;
  height: 0.3em;
  z-index: 0;
}
.titleLine.sub {
  background: linear-gradient(transparent 70%, #00754a 0%);
}

.titleBd {
  position: relative;
  margin-bottom: 7rem;
  display: inline-block;
}
.titleBd:before {
  position: absolute;
  content: " ";
  display: block;
  width: 5rem;
  margin: 0 auto;
  text-align: center;
  left: 0;
  right: 0;
  bottom: -1.5rem;
  height: 2px;
  background-color: #021976;
  border-radius: 50px;
}
.titleBd.compColor:before {
  background-color: #021976;
}
.titleBd.white:before {
  background-color: #fff;
}
.titleBd.sub {
  display: block;
}
.titleBd.sub:before {
  width: 23rem;
  height: 2px;
  bottom: -7px;
}
@media only screen and (max-width: 767px) {
  .titleBd {
    margin-bottom: 3rem;
  }
  .titleBd:before {
    width: 2.5rem;
  }
}

.titleBdCenter {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}
.titleBdCenter:after {
  content: "";
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 80px;
  height: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #021976;
  border-radius: 2px;
}
.titleBdCenter.mini:after {
  bottom: -15px;
  width: 40px;
  height: 1.5px;
  border-radius: 0px;
}

.titleBdLeft {
  display: flex;
  align-items: center;
}
.titleBdLeft:before {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #021976;
  display: block;
  margin-right: 1.5rem;
  max-width: 3rem;
}
.titleBdLeft.white:before {
  background: #fff;
}

.titleBdLight {
  border-bottom: 1px solid #021976;
  display: inline-block;
}

.bdBox {
  border: 2px solid #021976;
}

/*==================================================
 * header
 *================================================*/
/*------------モーダルウィンドウ------------*/
/*オーバーレイメニュー*/
.overRayBox {
  position: fixed;
  display: table;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
}
.overRayBox > ul {
  vertical-align: middle;
  width: 100%;
  display: block;
}
.open .overRayBox {
  cursor: url(../images/cross.svg), auto;
  visibility: visible;
  opacity: 1;
}

html.open {
  overflow-y: hidden;
}

/*ハンバーガーメニュー*/
.menu-btn {
  cursor: pointer;
  position: relative;
  z-index: 1000;
  background: transparent;
  border: none;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

:root {
  --menuTrigeHeight: 22px;
}

.menu-trigger {
  position: relative;
  width: 40px;
  height: var(--menuTrigeHeight);
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: calc(var(--menuTrigeHeight) / 2);
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span {
  background-color: #fff;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 0.8s forwards;
  animation: active-menu-bar02 0.8s forwards;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg);
}
.menu-trigger.active span:nth-of-type(4) {
  background: none !important;
}

@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
/*------------モーダルウィンドウ終わり------------*/
/*==================================================
 * footer
 *================================================*/
/*スマホfooter追従問い合わせ*/
.footerTelSpFlexLi {
  width: 50%;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  background-color: #a9946c;
}
.footerTelSpFlexLi:last-child {
  border-right: none;
  background-color: #021976;
}
.footerTelSpFlexLi a {
  display: block;
  padding: 9px 0;
}
.footerTelSpFlexLi a i {
  font-size: 16px;
}

.footerTelSpText {
  font-size: 16px;
  line-height: 1.5;
}

.footerTelSp {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 100;
}

/*フッター追従コンタクト*/
.fixBarContact {
  padding: 1rem 2rem;
}

.fixBar {
  position: fixed;
  z-index: 10;
  right: 2%;
  bottom: 2%;
}
.fixBar .button {
  padding: 0.7rem 3rem;
  border: 1px solid #021976;
}

.fixBarA {
  margin-right: 10px;
}
.fixBarA:hover {
  background-color: #fff;
  color: #021976;
}

.fixBarTop {
  height: 44px;
  width: 44px;
  cursor: pointer;
  border: 1px solid #021976;
  border-radius: 50px;
}
.fixBarTop:hover {
  background-color: #fff;
  border: 1px solid #021976;
  color: #021976;
}

.fixBar i,
.fixBar span {
  vertical-align: middle;
}

.fixBarTop i {
  margin-top: 14px;
}

/*==================================================
 * トップページ
 *================================================*/
/*Q&Aここから*/
.topQaBoxUl li:nth-child(2) hr {
  border-top: 1px solid #dadada;
}

.topQaBoxUl li {
  display: inline-block;
  vertical-align: middle;
}

.topQaBoxDl {
  width: 48%;
  display: inline-block;
  margin-right: 1%;
  vertical-align: top;
}

.topQaBoxDl dd {
  display: none;
  margin-top: 3%;
}

.topQaBoxDl dt {
  font-weight: normal;
}

.topQaBoxDl dt:hover {
  background: rgba(242, 203, 149, 0.3);
  border-radius: 5px;
  cursor: pointer;
}

.topQaBoxUl li:nth-child(3) {
  width: 74%;
}

.topQaBoxUl li:nth-child(1) {
  margin-right: 2%;
}

.topQaBoxUl li:nth-child(2) {
  width: 8%;
  margin-right: 2%;
}

/*Q&Aここまで*/
@media screen and (max-width: 767px) {
  /*Q&Aのスマホここから*/
  .topQaBoxDl {
    width: 100%;
  }
  /*Q&Aのスマホここまで*/
}
/*==================================================
 * 下層ページ
 *================================================*/
/*共通部分------------------------------------*/
/*パンくず*/
/*パンくず終わり*/
/*about-us------------------------------------*/
/*残す--ここから*/
.pageAboutCompanyUl ul {
  display: flex;
}
.pageAboutCompanyUl li {
  padding: 0.5em 0;
}
@media only screen and (max-width: 767px) {
  .pageAboutCompanyUl li {
    padding: 0.8em 0;
    font-size: 13px;
  }
}
.pageAboutCompanyUl li:nth-child(1) {
  width: 30%;
  text-align: left;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .pageAboutCompanyUl li:nth-child(1) {
    font-size: 15px;
  }
}
.pageAboutCompanyUl li:nth-child(2) {
  width: 70%;
}
.fa-map-marker {
  color: #d9534f;
  font-size: 20px;
  margin-left: 1%;
}

/*残す--ここまで*/
.contactForm {
  width: 100%;
  margin: 0 auto;
}

.contactForm textarea {
  width: 100%;
  height: 14rem !important;
}

.contactForm input[type=checkbox] {
  width: auto;
}

.contactTelIcon {
  margin-right: 0.4em;
}

.mw_wp_form button {
  max-width: 70%;
  color: #fff;
  border-radius: 0;
  background: #deba29;
}

.cform {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.cform tr {
  border-bottom: solid 1px #eee;
}
.cform th {
  font-size: 17px;
  font-family: bold;
  width: 35%; /*変なところで改行される場合はここの数字を変更します。*/
  padding: 10px 0 10px 15px;
  font-weight: normal;
  vertical-align: middle;
  text-align: left;
  position: relative;
}
.cform th .title {
  width: 72%;
  display: inline-block;
  font-size: 15px;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
@media only screen and (max-width: 767px) {
  .cform th .title {
    vertical-align: bottom;
    width: auto;
    margin-right: 5%;
  }
}
.cform th .required-srt {
  font-size: 12px;
  padding: 0.5em 1em;
  background: #ce0000;
  color: #fff;
  border-radius: 3px;
  margin-right: 0;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}
tr:last-child .cform th .required-srt {
  top: 41%;
}
@media only screen and (max-width: 767px) {
  .cform th .required-srt {
    top: auto;
    bottom: 10%;
  }
}
.cform td {
  font-size: 15px;
  line-height: 150%;
  padding: 2.5% 0;
}
.cform td .error {
  font-size: 14px;
}
.cform td input::placeholder,
.cform td textarea::placeholder {
  color: #ddd;
}
.cform td span label span {
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .cform td,
  .cform th {
    padding-bottom: 0;
    padding-top: 10px;
    font-size: 15px;
  }
  .cform td {
    padding: 5px 0;
  }
  .cform th .required-srt {
    padding: 0.1em 0.4em;
  }
  .cform tr {
    border-bottom: none;
  }
}

.cform [type=submit] {
  display: inline-block;
  font-size: 20px;
  padding: 10px 30px;
  text-decoration: none;
  background: #ff8f00;
  color: #fff;
  border-bottom: solid 4px #b17c00;
  border-radius: 3px;
}

.cform option,
.cform textarea,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
  width: 100%;
  height: 4rem;
  font-size: 14px;
  padding: 2.5rem;
  background-color: #f7f7f7;
  border: 1px solid transparent;
  border-radius: 5px;
}
@media only screen and (max-width: 767px) {
  .cform option,
  .cform textarea,
  .cform input[type=text],
  .cform input[type=email],
  .cform input[type=search],
  .cform input[type=url] {
    padding: 2rem;
  }
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.contactFormPrivacyAlertBox {
  background-color: #f7f7f7;
  padding: 5%;
}

@media only screen and (max-width: 767px) {
  .cform th,
  .cform td {
    width: 100%;
    display: block;
    border-top: none;
  }
}
.contactAlertBox {
  border: 1px solid #dcdcdc;
  padding: 8% 5%;
  margin: 10% 0;
}
@media only screen and (max-width: 767px) {
  .contactAlertBox {
    padding: 12% 5%;
    margin: 13% 0;
  }
}

.contactAlertTitle {
  font-size: 16px;
  text-align: center;
  margin-bottom: 1.5em;
}

.submit-btn {
  text-align: center;
  margin-top: 4%;
}
.submit-btn input {
  transition: 0.3s;
  font-size: 16px;
  letter-spacing: 0.07em;
  padding: 1.25em 2em;
  background-color: #021976;
  color: #fff;
  cursor: pointer;
  border: 1px solid #021976;
  width: 340px;
  font-weight: 500;
}
.submit-btn input:hover {
  color: #021976;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .submit-btn input {
    font-size: 14px;
  }
}

.contactHr {
  margin: 7% 0;
}
@media only screen and (max-width: 767px) {
  .contactHr {
    margin: 12% 0;
  }
}

/*下層ページ共通------------------------------------*/
/*投稿詳細ページ------------------------------------*/
li.widget {
  list-style-type: none;
  margin-bottom: 20%;
}

.widgettitle {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 3%;
}

li.widget li {
  color: #a7a7a7;
  margin-bottom: 3%;
}

/*タグクラウド*/
.tagCloud li {
  list-style: none;
  background: #db4a39;
  display: inline-block;
  color: #fff;
  padding: 0.5% 2%;
  font-size: 12px;
}

.tagCloud li .glyphicon {
  right: 5px;
}

.tagCloud li a {
  color: #fff;
  font-weight: 100;
  text-decoration: none;
}

.tagcloud a {
  color: #808080;
  border: 1px solid #808080;
  border-radius: 25px;
  padding: 2%;
  margin-bottom: 5%;
  display: inline-block;
}

.entry {
  line-height: 1.8;
  letter-spacing: 0.15em;
  float: none;
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
}
.entry figcaption {
  font-size: 13px;
  color: gray;
}
.entry a {
  display: inline;
  text-decoration: underline;
  word-break: break-all;
  word-wrap: break-word;
  color: #33bad4;
}
.entry blockquote {
  padding: 2em 4em;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  color: #7b7b7b;
  background-color: #f6f7f9;
  font-style: italic;
  margin-bottom: 1.5em;
}
.entry blockquote p {
  font-size: 14px;
}
.entry strong {
  font-style: normal;
  font-weight: bold;
  background: linear-gradient(transparent 40%, #fff7c0 40%);
}
.entry p {
  margin: 0.5em 0 1.3em 0;
  line-height: 2;
  letter-spacing: 0.2em;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .entry p {
    font-size: 14px;
    line-height: 1.9;
  }
}
.entry h2 span,
.entry h3 span,
.entry h4 span,
.entry h5 span {
  font-weight: bold;
}
.entry h2 {
  font-size: 21px;
  margin: 8% auto 3%;
  background-color: #f2f2f2;
  padding: 0.5em 1em;
  border-radius: 3px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .entry h2 {
    font-size: 18px;
    margin: 12% auto 6%;
  }
}
.entry h3 {
  position: relative;
  padding-bottom: 0.3em;
  border-bottom: 1.5px solid #ccc;
  font-size: 18px;
  margin: 4% auto 3%;
  color: #021976;
  font-weight: bold;
  padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .entry h3 {
    font-size: 16px;
    padding-bottom: 0.5em;
    margin: 12% auto 6%;
  }
}
.entry h3::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 3px;
  background-color: #021976;
}
.entry h4 {
  margin: 3% auto 3%;
  border-bottom: 1px solid #021976;
  padding-bottom: 0.4em;
  color: #021976;
  font-weight: bold;
  font-size: 18px;
  padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .entry h4 {
    margin: 15% auto 8%;
  }
}
.entry table td:nth-child(1) {
  background-color: #f7f6f9;
  font-weight: bold;
  color: #515151;
}
.entry table th,
.entry table td {
  padding: 2rem 3rem;
}
@media only screen and (max-width: 767px) {
  .entry table th,
  .entry table td {
    padding: 1rem 2rem;
    width: 100%;
    display: block;
    border-bottom: 1px solid #dad8de;
  }
}
.entry table tr {
  border-bottom: 1px solid #dad8de;
}
@media only screen and (max-width: 767px) {
  .entry table tr {
    border-bottom: none;
  }
}
.entry table tr:first-child {
  border-top: 1px solid #dad8de;
}
.entry ul {
  margin-bottom: 2%;
}
.entry li {
  list-style-type: none;
  line-height: 1.7;
  font-weight: normal;
  margin-bottom: 0.3em;
  position: relative;
  padding-left: 1.5em;
  font-weight: bold;
}
.entry li:before {
  font-family: "Font Awesome 6 Pro";
  content: "\f14a";
  color: #021976;
  position: absolute;
  left: 0;
  font-weight: 400;
}

.entry h5 {
  font-weight: bold;
  margin-bottom: 10px;
}

/*目次*/
.toc_number {
  font-family: var(--fontNum);
  font-size: 18px;
  line-height: 1;
  color: #cacaca;
  font-weight: normal;
}

#toc_container {
  background: #ececec;
  border: none !important;
  margin: 0 auto;
  padding: 4% 6%;
  border-radius: 10px;
}
#toc_container a {
  color: #021976;
}

.toc_list li:before {
  display: none;
}

.toc_title {
  border-bottom: 1px solid #021976;
  font-size: 21px;
  font-weight: bold;
  padding-bottom: 0.3em;
}

.toc_toggle {
  font-size: 14px;
}

.wp-caption {
  max-width: 100% !important;
  padding: 2%;
  margin: auto auto 3% auto;
}

.wp-caption-text {
  background: rgba(195, 184, 177, 0.67);
  width: 100%;
  text-align: left;
  padding: 1% 3%;
  word-wrap: break-word;
  font-size: 10px;
  color: white !important;
  position: relative !important;
  z-index: 1;
  top: -35px;
  display: block;
  left: 5%;
}

.wp-caption-text a {
  color: white;
}

@media screen and (max-width: 767px) {
  .wp-caption-text {
    background: hsla(330, 50%, 60%, 0.48);
    width: 100%;
    text-align: left;
    padding: 1% 3%;
    word-wrap: break-word;
    font-size: 10px;
    color: white !important;
    position: relative !important;
    z-index: 1;
    top: -50px;
    display: block;
    left: 5%;
  }
}
.entry img {
  margin: 2% auto 5%;
}

/*リンクカードプラグイン*/
.lkc-title-text {
  font-weight: normal;
  letter-spacing: 0.15em;
  transition: 0.3s;
}
a:hover .lkc-title-text {
  color: #021976;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .lkc-title-text {
    font-size: 14px;
    line-height: 1.5;
  }
}

.lkc-excerpt {
  display: none;
}

.lkc-url {
  display: none;
}

.lkc-external-wrap,
.lkc-internal-wrap {
  box-shadow: none;
  border: 2px solid #021976;
  border-radius: 10px;
  background-color: #808080;
}

.lkc-external-wrap,
.lkc-internal-wrap,
.lkc-this-wrap {
  max-width: none;
}

.lkc-thumbnail-img {
  border: none;
  box-shadow: none;
  border-radius: 10px;
  transition: 0.3s;
}
a:hover .lkc-thumbnail-img {
  opacity: 0.7;
}

.lkc-thumbnail {
  margin-right: 3%;
}

.lkc-date {
  position: absolute;
  bottom: 10%;
  right: 3%;
  color: #021976;
  font-family: var(--fontNum);
  font-size: 14px;
  display: none !important;
}

.lkc-info {
  background-color: #021976;
  display: inline-block !important;
  position: absolute;
  right: 3%;
  top: -5%;
  padding: 0.5em 1em;
  border-radius: 5px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .lkc-info {
    top: -11%;
  }
}

.lkc-domain {
  color: #fff;
}

.lkc-card {
  padding: 2rem 1rem 1rem;
}
.lkc-card img {
  vertical-align: middle;
}

.lkc-content {
  overflow: auto !important;
  height: inherit !important;
}

.lkc-sns-fb {
  padding: 1%;
}

/*コメント*/
div#respond textarea,
div#respond input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #cacaca;
  padding: 10px;
}

#respond input#submit {
  background: #0a0a0a;
  color: #fff;
  border-radius: 0;
  font-size: 12px;
  transition: 0.3s;
}

#respond input#submit:hover {
  background: #cc6699;
  transition: 0.3s;
}

/*記事詳細-----------------------------------*/
/*記事コンテンツ周り*/
.singleColumnArticle {
  margin-bottom: 10%;
}

.singleColumnArticleContent {
  margin-top: 5%;
}

.singleColumnTitle {
  border-bottom: 1px solid #021976;
  padding-bottom: 0.4em;
  margin-bottom: 0.8em;
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .singleColumnTitle {
    font-size: 18px;
  }
}

.singleColumnInfoUl .date {
  margin-right: 1em;
  font-family: var(--fontNum);
  font-size: 12px;
  color: #b3b3b3;
}
.singleColumnInfoUl .cateUl {
  display: inline-block;
}
.singleColumnInfoUl .cateUl li {
  display: inline-block;
  font-size: 12px;
  background-color: var(--mainColor);
  color: #fff;
  border-radius: 5px;
  padding: 0.6em 0.8em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .singleColumnInfoUl .cateUl li {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .singleColumnInfoUl .cateUl li {
    font-size: 12px;
  }
}

/*この記事をシェアするボタン*/
.singleColumnShare {
  padding: 3% 6%;
}
@media only screen and (max-width: 767px) {
  .singleColumnShare {
    padding: 6% 9%;
  }
}

.singleColumnShareButton {
  padding: 0.7rem 1rem;
  width: 20%;
  margin-right: 3%;
  text-align: center;
  transition: 0.3s;
}
@media only screen and (max-width: 959px) {
  .singleColumnShareButton {
    width: 45%;
    margin-right: 2.5%;
  }
}
.singleColumnShareButton > * {
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .singleColumnShareButton > * {
    font-size: 12px;
  }
}
.singleColumnShareButton i {
  font-size: 22px;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .singleColumnShareButton i {
    font-size: 16px;
  }
}
.singleColumnShareButton.twitter {
  background: #1da1f2;
  border: 1px solid #1da1f2;
}
.singleColumnShareButton.twitter:hover {
  background: #fff;
  color: #1da1f2;
}
.singleColumnShareButton.facebook {
  background: #1877f2;
  border: 1px solid #1877f2;
}
.singleColumnShareButton.facebook:hover {
  background: #fff;
  color: #1877f2;
}

.singleColumnShareTitle {
  width: 50%;
}
@media only screen and (max-width: 959px) {
  .singleColumnShareTitle {
    width: 100%;
    margin-bottom: 6% !important;
  }
}

/*この記事を書いた人*/
.singleColumnWriterImg {
  padding-bottom: 100%;
  border-radius: 50%;
}

@media only screen and (max-width: 767px) {
  .singleColumnWriterImgBox {
    max-width: 140px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4%;
  }
}

.singleColumnWriter {
  padding: 3% 3%;
  margin: 6% 0 6% 0;
  border: 1px solid #021976;
}
@media only screen and (max-width: 767px) {
  .singleColumnWriter {
    padding: 8%;
    margin: 12% 0 6% 0;
  }
}

.singleColumnWriterTitle {
  border-bottom: 1px solid #021976;
}

.singleColumnWriterButton {
  background: #fff;
  border: 1px solid #021976;
  border-radius: 25px;
  padding: 0.25em;
  max-width: 280px;
  display: block;
  transition: 0.3s;
  color: #021976;
}
.singleColumnWriterButton:hover {
  background: #021976;
  color: #fff;
}

.sidebarWriterSns li {
  display: inline-block;
  margin-right: 3%;
  margin-bottom: 4%;
}
.sidebarWriterSns li a {
  border: 1px solid #d2d2d2;
  padding: 0.4em 1em;
  border-radius: 35px;
  background: #fff;
  letter-spacing: 0.05em;
}
.sidebarWriterSns li a:hover {
  background-color: #f1f1f1;
}
.sidebarWriterSns li a .fa-instagram {
  color: #fd1d1d;
}
.sidebarWriterSns li a .fa-twitter {
  color: #00acee;
}
.sidebarWriterSns li a .fa-facebook {
  color: #3b5998;
}
.sidebarWriterSns li a .fa-comment {
  color: #00b900;
}

/*次のページを見る*/
.singleColumnPreNextBox {
  position: relative;
  transition: 0.3s;
  background-color: #021976;
  border-radius: 3px;
  position: relative;
}
.singleColumnPreNextBox.pre {
  margin-right: 1.5%;
}
.singleColumnPreNextBox.next {
  margin-left: 1.5%;
}
.singleColumnPreNextBox a {
  padding: 5%;
  display: block;
  text-align: center;
  color: #fff;
}

.singleClumnPreNextDescri {
  color: #727171;
}

.singleColumnPrevNextArrow {
  position: absolute;
  top: 20px;
  right: 15px;
  width: 33px;
  height: 1px;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .singleColumnPrevNextArrow {
    width: 22px;
  }
}
.singleColumnPrevNextArrow::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 2px;
  width: 1px;
  height: 5px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(45deg);
}
.next .singleColumnPrevNextArrow {
  transform: scale(-1, 1);
  left: 15px;
  right: auto;
}
.singleColumnPrevNextArrow.arwPre {
  left: 15px;
  top: 50%;
}
.singleColumnPrevNextArrow.arwNext {
  left: auto;
  right: 15px;
  top: 50%;
}

/*アーカイブページ------------------------------------*/
.cmNewsListUl {
  display: flex;
  flex-wrap: wrap;
}
.cmNewsListUl > li {
  width: 46%;
  margin: 0 2%;
  margin-bottom: 6%;
}
@media only screen and (max-width: 767px) {
  .cmNewsListUl > li {
    width: 100%;
    margin: 0 2%;
    margin-bottom: 10%;
  }
}

.cmNewsListCard {
  transition: 0.3s;
}
a:hover .cmNewsListCard {
  opacity: 0.7;
}

.cmNewsTitle {
  font-size: 16px;
  line-height: 1.4;
  border-bottom: 1px solid #808080;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  .cmNewsTitle {
    font-size: 16px;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
  }
}

.cmNewsDescri {
  font-size: 13px;
  margin-bottom: 3%;
  color: #a0a0a0;
}
@media only screen and (max-width: 767px) {
  .cmNewsDescri {
    font-size: 12px;
    line-height: 1.5;
  }
}

.cmNewsListImg {
  transition: 0.3s;
  padding-bottom: 70%;
}
a:hover .cmNewsListImg {
  transform: scale(1.1);
}

.cmNewsListImgWrap {
  overflow: hidden;
  margin-bottom: 4%;
}

.cmNewsListInfoUl li {
  margin-right: 0.5em;
  display: inline-block;
  font-size: 12px;
  background-color: var(--mainColor);
  color: #fff;
  border-radius: 5px;
  padding: 0.6em 0.8em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .cmNewsListInfoUl li {
    font-size: 11px;
  }
}

/*Pagenation*/
.pagenation {
  margin: 1em 0;
}
.pagenation ul {
  display: flex;
  justify-content: center;
}
.pagenation li {
  font-family: var(--fontEn);
  font-size: 18px;
  margin: 0 1%;
  color: #fff;
  background: #021976;
}
.pagenation li.active {
  cursor: not-allowed;
  color: #000;
  background: #f2f2f2;
  padding: 0.5em 1em;
}
.pagenation li.prev {
  display: none;
}
.pagenation li.next {
  display: none;
}
.pagenation li a {
  display: block;
  padding: 0.5em 1em;
  transition: 0.3s;
}
.pagenation li a:hover {
  background: #808080;
}
@media only screen and (max-width: 767px) {
  .pagenation li {
    font-size: 1.5rem;
  }
  .pagenation li.active {
    padding: 7px 12px;
  }
  .pagenation li a {
    padding: 7px 12px;
  }
}

/*ページャー、ページネーション------------------------------------*/
.page-numbers {
  padding: 0.7% 1%;
}

span.page-numbers {
  color: #021976;
  font-weight: bold;
}

a.page-numbers {
  color: #c5c5c5;
}

/*==================================================
 * サイドバー
 *================================================*/
@media only screen and (max-width: 767px) {
  #sidebar {
    margin-top: 15%;
  }
}

.sidebarBox {
  margin-bottom: 15%;
  margin-left: 5%;
}
@media only screen and (max-width: 767px) {
  .sidebarBox {
    margin-left: 0;
    margin-bottom: 8%;
  }
}

.sidebarNewsUl .cat-item {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.sidebarNewsUl .cat-item a {
  transition: 0.3s;
}
.sidebarNewsUl .cat-item a:hover {
  opacity: 0.7;
}
.sidebarNewsUl .cat-item .date {
  font-family: var(--fontNum);
  font-size: 12px;
  color: #b3b3b3;
}
.sidebarNewsUl .cat-item .title {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .sidebarNewsUl .cat-item {
    padding-bottom: 0.25em;
    margin-bottom: 0.25em;
  }
}

.sidebarCategoryBlock li {
  display: inline-block;
  margin-bottom: 1em;
}
.sidebarCategoryBlock li a {
  display: inline-block;
  font-size: 12px;
  background-color: var(--mainColor);
  color: #fff;
  border-radius: 5px;
  padding: 0.6em 0.8em;
  line-height: 1;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .sidebarCategoryBlock li a {
    font-size: 11px;
  }
}
.sidebarCategoryBlock li a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .sidebarCategoryBlock li {
    font-size: 12px;
  }
}

.sidebarTitle {
  font-size: 24px;
  font-family: var(--fontEn);
  font-weight: 600;
  color: var(--mainColor);
  border-bottom: 1px solid;
  padding-bottom: 0.5em;
  margin-bottom: 1.5em;
  line-height: 1;
  padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .sidebarTitle {
    padding-bottom: 0.25em;
    margin-bottom: 1em;
  }
}

.sidebarRankingImg {
  width: 30%;
  padding-bottom: 30%;
  margin-right: 5%;
  border-radius: 5px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sidebarRankingImg {
    display: none;
  }
}

.sidebarRankingText {
  width: 65%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sidebarRankingText {
    width: 100%;
  }
}

.sidebarRankingNum {
  background: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #021976;
  right: 10px;
  top: 10px;
  position: absolute;
  font-size: 14px;
}

#sidebar select {
  width: 100%;
  padding: 0.7em;
}

.sidebarTagWrap a {
  font-size: 14px !important;
  color: #021976;
}
.sidebarTagWrap a:before {
  content: "#";
}
.sidebarTagWrap a:after {
  content: "/";
  display: inline-block;
  margin-left: 0.5em;
  margin-right: 0.5em;
  color: #a9a9a9;
}
@media only screen and (max-width: 767px) {
  .sidebarTagWrap a {
    font-size: 12px !important;
  }
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/*==================================================
 * 全サイト共通
 *================================================*/
/*共通部分*/
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.font-b {
  font-weight: 700;
}

.font-l {
  font-weight: 400;
}

@media print, screen and (min-width: 768px) {
  [data-sp] {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  [data-pc] {
    display: none;
  }
}
.grad {
  background: rgb(66, 145, 201);
  background: linear-gradient(59deg, rgb(66, 145, 201) 0%, rgb(72, 193, 194) 60%, rgb(220, 230, 115) 100%);
}

.paddingS {
  padding-top: clamp(30px, -5.427px + 4.619vw, 50px);
  padding-bottom: clamp(30px, -5.427px + 4.619vw, 50px);
}

.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.img-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  html {
    scroll-padding-top: 90px;
  }
}

body {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 500;
  font-feature-settings: "palt";
  color: #000;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 13px;
  }
}
body.open {
  height: 100%;
  overflow: hidden;
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

.head01 {
  font-size: clamp(16px, 12.457px + 0.462vw, 18px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: inline-block;
  border-radius: 100px;
  padding: 0.3em 1.5em;
  background: rgb(66, 145, 201);
  background: linear-gradient(59deg, rgb(66, 145, 201) 0%, rgb(72, 193, 194) 60%, rgb(220, 230, 115) 100%);
  flex-shrink: 0;
}

.head02 {
  position: relative;
  padding-left: 1.5em;
}
.head02::before {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  aspect-ratio: 1/1;
  background: rgb(66, 145, 201);
  background: linear-gradient(59deg, rgb(66, 145, 201) 0%, rgb(72, 193, 194) 60%, rgb(220, 230, 115) 100%);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.text {
  font-size: clamp(14px, 10.457px + 0.462vw, 16px);
}

.textPadding {
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .textPadding {
    padding: 15px;
  }
}

/* strong {
  color: #ea5150;
  font-weight: inherit;
} */
.blankLink {
  color: #5c94c0;
  text-decoration: underline;
}

.commonBtn {
  background-color: #021976;
  color: #fff;
  max-width: 330px;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(15px, 6.143px + 1.155vw, 20px);
  border-radius: 20px;
  border: solid 2px #021976;
  overflow: hidden;
  transition: 0.5s;
  position: relative;
}
.commonBtn span {
  position: relative;
  z-index: 1;
  color: #fff;
  transition: 1s;
}
@media only screen and (max-width: 767px) {
  .commonBtn {
    height: 60px;
    border-radius: 10px;
  }
}
.commonBtn:hover {
  border: solid 2px #021976;
  color: #021976;
  background-color: #fff;
}
.commonBtn:hover span {
  color: #021976;
}
.commonBtn.send {
  margin-top: 10%;
  width: 100%;
  max-width: 100%;
  height: 60px;
}

/* fadeUp */
.fade {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.9s;
}
.fade.run {
  opacity: 1;
  transform: translateY(0);
}

/* header */
@media print, screen and (min-width: 768px) {
  header.hidden,
  .header__btn.hidden {
    transform: translateY(-100%);
    opacity: 0;
  }
}

header {
  position: relative;
  z-index: 999;
  transition: 0.7s;
  transition-timing-function: cubic-bezier(0.705, 0.17, 0.325, 0.925);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width: 768px) {
  header {
    padding: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  header {
    padding: 15px;
    height: 70px;
  }
}
header .logo {
  width: 335px;
}
@media only screen and (max-width: 1199px) {
  header .logo {
    width: 240px;
  }
}
@media only screen and (max-width: 767px) {
  header .logo {
    width: 220px;
  }
}

.headerInner {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__navi {
  display: flex;
  align-items: center;
  transition: 0.8s;
}
@media only screen and (min-width: 960px) {
  .header__navi {
    justify-content: flex-end;
  }
  .header__navi ul {
    display: flex;
    align-items: center;
  }
  .header__navi ul li + li {
    border-left: solid 1px #000000;
  }
  .header__navi ul li a {
    white-space: nowrap;
    padding: 0 1.78em;
    font-size: 14px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1199px) {
  .header__navi ul li a {
    padding: 0 1.4em;
  }
}
@media only screen and (min-width: 960px) {
  .header__navi ul li a:hover {
    opacity: 0.7;
  }
  .header__navi .hasChild {
    position: relative;
  }
  .header__navi .hasChild:hover::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 55px;
    bottom: 0;
    transform: translateY(100%);
  }
  .header__navi .hasChild:hover .headerChild {
    opacity: 1;
    pointer-events: all;
  }
  .header__navi .headerChild {
    position: fixed;
    width: 1030px;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    padding: 40px 15px;
    display: flex;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
  }
  .header__navi .headerChild::before {
    content: "";
    display: block;
    position: absolute;
    width: 100vw;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
  }
  .header__navi .headerChild::after {
    content: "";
    display: block;
    position: absolute;
    width: 100vw;
    left: 50%;
    top: 0;
    transform: translateX(-50%) translateY(-50%);
    background-color: #14be39;
    height: 2px;
  }
  .header__navi .headerChild li + li {
    border-left: none !important;
  }
  .header__navi .headerChild .headerChildTtl {
    width: 130px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(66, 145, 201);
    background: linear-gradient(59deg, rgb(66, 145, 201) 0%, rgb(72, 193, 194) 60%, rgb(220, 230, 115) 100%);
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
  }
  .header__navi .headerChild .headerChildUl {
    display: flex;
    align-items: flex-start;
  }
  .header__navi .headerChild .headerChildUl .headerGrandChild li a {
    padding: 0;
  }
  .header__navi .headerChild .headerChildUl > li {
    margin-left: 2.7em;
  }
  .header__navi .headerChild .headerChildUl > li > a {
    font-weight: 700;
    border-left: solid 4px #009285;
    padding-left: 0.5em !important;
    font-size: 16px;
    padding-right: 0;
    margin-bottom: 0.5em;
    display: block;
  }
  .header__navi .headerChild .headerChildUl .headerGrandChild {
    flex-wrap: wrap;
    column-count: 2;
  }
  .header__navi .headerChild .headerChildUl .headerGrandChild li {
    margin-right: 1em;
    width: 265px;
  }
  .header__navi .menu__contact {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .header__navi .headerChild {
    top: 100px;
  }
}
@media only screen and (max-width: 959px) {
  .header__navi {
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    text-align: center;
    transform: translateY(0);
    opacity: 0;
    pointer-events: none;
    padding-top: 60px;
    padding-bottom: 200px;
    overflow-y: scroll;
    display: block;
    background: rgb(66, 145, 201);
    background: linear-gradient(59deg, rgb(66, 145, 201) 0%, rgb(72, 193, 194) 60%, rgb(220, 230, 115) 100%);
  }
  .header__navi.open {
    opacity: 1;
    pointer-events: all;
  }
  .header__navi > ul {
    display: inline-block;
  }
  .header__navi li a {
    color: #fff;
    font-weight: 700;
    margin-top: 1em;
    display: block;
    transition: 0.3s;
    text-align: left;
    font-size: 16px;
  }
  .header__navi li a:hover {
    opacity: 0.7;
  }
  .header__navi .headerChild {
    padding-left: 1em;
  }
  .header__navi .headerChild .headerChildTtl {
    display: none;
  }
  .header__navi .headerChild a {
    font-size: 14px;
    margin-top: 0.6em;
  }
  .header__navi .menu__contact {
    display: block;
  }
  .header__navi .menu__contact a {
    padding: 1em;
  }
}

@media only screen and (max-width: 959px) {
  .menu__contact {
    display: none;
  }
}
.menu__contact a {
  background-color: #14be39;
  color: #fff;
  display: block;
  border-radius: 100px;
  padding: 0.7em 1.5em;
  text-align: center;
  line-height: 1.2;
  font-size: 14px;
  font-weight: 700;
}
@media only screen and (max-width: 1199px) {
  .menu__contact a {
    font-size: 12px;
  }
}
@media only screen and (max-width: 959px) {
  .menu__contact a {
    text-align: center !important;
  }
}
@media only screen and (max-width: 959px) {
  .menu__contact.pc {
    display: none;
  }
}

.header__btn {
  display: none;
}
@media only screen and (max-width: 959px) {
  .header__btn {
    cursor: pointer;
    display: block;
    height: 16px;
    position: absolute;
    right: 15px;
    top: 50%;
    transition: 0.3s;
    transform: translateY(-50%);
    width: 30px;
  }
  .header__btn .inner {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .header__btn span {
    height: 4px;
    width: 100%;
    display: block;
    position: absolute;
    background-color: #14be39;
    transition: 0.5s;
  }
  .header__btn span:first-of-type {
    top: 0;
  }
  .header__btn span:last-child {
    bottom: 0;
  }
  .header__btn.open span:first-of-type {
    transform: rotate(45deg);
    top: 4px;
  }
  .header__btn.open span:last-of-type {
    transform: rotate(-45deg);
    bottom: 9px;
  }
}

footer .cntM {
  max-width: 1060px;
}

.footerLogo {
  width: 325px;
}
@media only screen and (max-width: 767px) {
  .footerLogo {
    width: 250px;
    margin-left: 0;
  }
}

.footerInfo {
  width: 330px;
  flex-shrink: 0;
}

.footerMenu {
  display: flex;
  flex-wrap: wrap;
  margin-left: 30px;
}
@media only screen and (max-width: 767px) {
  .footerMenu {
    margin-left: auto;
  }
}
.footerMenu ul {
  width: 33.3333333333%;
  margin-bottom: 40px;
  padding-left: 1em;
  padding-right: 1em;
}
@media only screen and (max-width: 767px) {
  .footerMenu ul {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 0;
  }
}
.footerMenu ul:nth-of-type(n + 3) {
  margin-bottom: 0;
}
.footerMenu ul li {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .footerMenu ul li {
    font-size: 12px;
  }
}
.footerMenu ul li.parent {
  font-size: 16px;
  padding-bottom: 0.5em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .footerMenu ul li.parent {
    font-size: 14px;
  }
}
.footerMenu ul li.parent::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  aspect-ratio: 1/1;
  border-radius: 10px;
  border: solid 1px #333;
  left: -7px;
  top: 50%;
  transform: translateX(-100%) translateY(-80%);
}
@media only screen and (max-width: 767px) {
  .footerMenu ul li.parent::before {
    left: -4px;
    width: 8px;
  }
}
.footerMenu ul li.grandChild {
  position: relative;
}
.footerMenu ul li.grandChild::before {
  content: ">";
}

.floatBacknumber {
  bottom: -70px;
  position: absolute;
  right: 0px;
  width: 245px;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .floatBacknumber {
    bottom: -80px;
    right: 0px;
    width: 130px;
  }
}

.foot_custom_tel {
  margin-top: 10%;
}
.foot_custom_tel dl dt {
  color: #E95150;
}

/*==================================================
 * TOP
 *================================================*/
main {
  overflow: hidden;
}

.fvWrap {
  position: relative;
  z-index: 1;
}

.fv {
  position: relative;
}
.fv .swiper-button-next, .fv .swiper-button-prev {
  width: 34px;
  height: 107px;
  background: url(../img/top/fvArw.svg) no-repeat center/contain;
}
@media only screen and (max-width: 767px) {
  .fv .swiper-button-next, .fv .swiper-button-prev {
    height: 60px;
    width: 20px;
  }
}
.fv .swiper-button-next::after, .fv .swiper-button-prev::after {
  content: none;
}
.fv .swiper-button-prev {
  left: 30px;
}
@media only screen and (max-width: 767px) {
  .fv .swiper-button-prev {
    left: 10px;
  }
}
.fv .swiper-button-next {
  transform: scale(-1, 1);
  right: 30px;
}
@media only screen and (max-width: 767px) {
  .fv .swiper-button-next {
    right: 10px;
  }
}
.fv .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  aspect-ratio: 1/1;
  background-color: #8f8f90;
  margin-left: 10px;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .fv .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.fv .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #14be39;
}
.fv img {
  width: 100%;
}

main {
  margin-top: 130px;
}
@media only screen and (max-width: 1199px) {
  main {
    margin-top: 70px;
  }
}

.topNews {
  padding: clamp(25px, -19.284px + 5.774vw, 50px) 0;
}
@media only screen and (max-width: 767px) {
  .topNews .head01 {
    margin-bottom: 1em;
  }
}

.topNewsArticle {
  margin-left: 1em;
}

.news_more {
  margin: 50px auto 0;
  width: 30%;
}
@media only screen and (max-width: 767px) {
  .news_more {
    margin: 30px auto 0;
    width: 75%;
  }
}
@media only screen and (max-width: 767px) {
  .news_more span::after {
    transform: translateY(-42%) !important;
  }
}

#topAbout {
  background: rgb(216, 226, 102);
  background: linear-gradient(59deg, rgb(216, 226, 102) 19%, rgb(72, 193, 194) 90%);
  padding: clamp(30px, -23.141px + 6.928vw, 60px) 0 clamp(30px, -5.427px + 4.619vw, 50px);
}

.topAboutItemUl {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 959px) {
  .topAboutItemUl {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .topAboutItemUl {
    flex-direction: column;
  }
}

.gradBtn.arw span {
  position: relative;
  padding-right: 1em;
  padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .gradBtn.arw span {
    padding-right: 0;
    padding-left: 0;
  }
}
.gradBtn.arw span::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 18px;
  background: url(../img/common/arw.svg) no-repeat center/contain;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .gradBtn.arw span::after {
    position: relative;
    display: inline-block;
    margin-left: 6px;
    width: 7px;
    height: 14px;
    vertical-align: bottom;
    transform: translateY(-16%);
  }
}

.gradBtn.telBtn span {
  position: relative;
  padding-right: 0.5em;
  padding-left: 1em;
}
.gradBtn.telBtn span::before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 23px;
  background: url(../img/common/tel.svg) no-repeat center/contain;
  left: 0;
  top: 54%;
  transform: translateY(-50%);
}

.topAboutItem {
  width: 25%;
  border-right: solid 1px #fff;
}
.topAboutItem:last-of-type {
  border-right: none;
}
.topAboutItem a {
  font-size: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 959px) {
  .topAboutItem {
    width: 50%;
  }
  .topAboutItem:nth-of-type(2) {
    border-right: none;
  }
  .topAboutItem:nth-of-type(3), .topAboutItem:nth-of-type(4) {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .topAboutItem {
    width: 100%;
    border-right: none;
  }
  .topAboutItem:nth-of-type(2) {
    margin-top: 30px;
  }
  .topAboutItem a {
    max-width: 240px;
    font-size: 13px;
  }
}

.gradBtn {
  background: rgb(0, 110, 59);
  background: linear-gradient(59deg, rgb(0, 110, 59) 0%, rgb(0, 147, 136) 100%);
  color: #fff;
  font-weight: 700;
  display: block;
  border-radius: 100px;
  text-align: center;
  padding: 0.6em;
}

.topAboutItemInner {
  padding: 0 15px;
}
@media only screen and (max-width: 767px) {
  .topAboutItemInner {
    display: flex;
    padding: 0;
    align-items: center;
  }
}

.topAboutItemImage {
  box-shadow: 6px 6px 10px rgba(34, 107, 77, 0.6);
  border-radius: 100%;
  overflow: hidden;
  max-width: 160px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .topAboutItemImage {
    width: 110px;
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .topAboutItemText {
    width: calc(100% - 130px);
    margin-bottom: 20px;
  }
  .topAboutItemText .gradBtn.arw span::after {
    transform: translateY(-42%);
  }
}

/*topNews------------------------------------*/
#topNews {
  background-color: #ebf6f5;
}

.tabArea .tabTtl {
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .tabArea .tabTtl {
    margin-right: 5px;
    margin-left: 0;
  }
}
.tabArea .tab-links {
  row-gap: 10px;
}
@media only screen and (max-width: 767px) {
  .tabArea .tab-links {
    row-gap: 5px;
  }
}

.catStyle {
  width: 120px;
  max-width: 100%;
  padding: 2px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .catStyle {
    font-size: 12px;
    min-width: 90px;
  }
}

.notice {
  background-color: #f5a526;
}

.seminar {
  background-color: #46aac5;
}

.recruitment {
  background-color: #2458a7;
}

.other {
  background-color: #a5a5a6;
}

.hojyokin {
  background-color: rgb(0, 110, 59);
}

.tabTtl {
  margin-left: 10px;
}

.tabContent .tabTtl {
  margin-left: 0;
  margin-right: 10px;
}
.tabContent .ttl, .tabContent .txt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.tabContent .date {
  color: #00754a;
}
@media only screen and (max-width: 767px) {
  .tabContent li {
    margin-top: 6%;
  }
}
.tabContent li + li {
  margin-top: 3%;
}
@media only screen and (max-width: 767px) {
  .tabContent li + li {
    margin-top: 6%;
  }
}

.tab-content .tab {
  display: none;
}

.tab-content .tab.active {
  display: block;
}

/* topSystem------------------------------------*/
#topSystem {
  background: rgb(216, 226, 102);
  background: linear-gradient(260deg, rgb(216, 226, 102) 19%, rgb(72, 193, 194) 90%);
}

.systemList {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
@media only screen and (max-width: 767px) {
  .systemList {
    margin-left: -5px;
    margin-right: -5px;
  }
}
.systemList li {
  width: calc(25% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .systemList li {
    width: calc(50% - 10px);
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 10px;
  }
}

/*==================================================
 * 下層ページ
 *================================================*/
/*共通部分------------------------------------*/
.fvTtl {
  background: rgb(216, 226, 102);
  background: linear-gradient(59deg, rgb(216, 226, 102) 19%, rgb(72, 193, 194) 90%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
}
.fvTtl .txt {
  font-weight: 700;
  color: #fff;
  font-size: clamp(20px, 12.915px + 0.924vw, 24px);
  letter-spacing: 0.2em;
  text-align: center;
}
.fvTtl .txt span {
  display: inline-block;
}

/*パンくず*/
.pageHeader {
  margin-top: clamp(100px, 10vw, 128px);
  margin-bottom: clamp(40px, 5vw, 64px);
}

main.page {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  main.page {
    font-size: 14px;
  }
}
main.page .head02 {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  main.page .head02 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  main.page .linkHead02 {
    font-size: 18px;
  }
  main.page .linkHead02::before {
    top: 17px;
  }
}
@media only screen and (max-width: 767px) {
  main.page .sitemapHead {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  main.page .privacyHead {
    font-size: 18px;
  }
}
main.page .aboutOperateUl li .ttl {
  font-size: 16px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  main.page .aboutOperateUl li .ttl {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  main.page .aboutOperateUl li .ttl {
    font-size: 14px;
  }
}

/*==================================================
 * お問い合わせ・アクセス
 *================================================*/
.accessIntro h2 {
  font-size: clamp(20px, 2.4vw, 24px);
  color: #E95150;
}
.accessIntro h2 + p {
  font-size: clamp(16px, 2vw, 20px);
}
@media only screen and (max-width: 767px) {
  .accessIntro h2 {
    line-height: 1.5;
  }
}
.accessIntro .gradBtn.telBtn {
  padding: 0;
  width: clamp(360px, 72vw, 720px);
  max-width: 90vw;
  line-height: normal;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .accessIntro .gradBtn.telBtn {
    width: 100%;
    max-width: 100%;
  }
}
.accessIntro .gradBtn.telBtn span {
  font-size: clamp(30px, 6vw, 60px);
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.accessIntro .gradBtn.telBtn span::before {
  width: clamp(20px, 3.6vw, 36px);
  height: clamp(28px, 4.4vw, 44px);
}
.accessIntro .contact_lists:nth-of-type(2n+1) {
  background-color: #ebf6f5;
}
.accessIntro .contact_lists:last-child {
  margin-bottom: 50px;
}

.accessInfo {
  display: flex;
  gap: 34px;
}
@media only screen and (max-width: 767px) {
  .accessInfo {
    display: block;
  }
}
.accessInfo .accessInfo-item {
  flex: 1;
}

.address h3 img {
  margin: 0;
}

.address h3 + p {
  margin: 0 0 10px 10px;
  line-height: 1.8;
}

/*==================================================
 * 中央会とは
 *================================================*/
.aboutIntroTxt {
  width: 63.1578947368%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .aboutIntroTxt {
    width: 100%;
  }
}

.aboutIntroPh {
  width: 41.0526315789%;
  margin-left: -4.7368421053%;
}
@media only screen and (max-width: 767px) {
  .aboutIntroPh {
    width: 100%;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}

.bg01 {
  background-color: #ebf6f5;
}

#aboutOrg {
  background-color: #ebf6f5;
}
#aboutOrg table {
  width: 100%;
}
#aboutOrg table th {
  color: #00754a;
  width: 200px;
}
@media only screen and (max-width: 767px) {
  #aboutOrg table th {
    width: 120px;
  }
}
#aboutOrg table th, #aboutOrg table td {
  border-top: solid 1px #00754a;
  padding: 1em 0.5em;
}
#aboutOrg table tr:last-of-type th, #aboutOrg table tr:last-of-type td {
  border-bottom: solid 1px #00754a;
}
#aboutOrg .gradBtn {
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.contactBtn {
  background: rgb(66, 145, 201);
  background: linear-gradient(59deg, rgb(66, 145, 201) 0%, rgb(72, 193, 194) 60%, rgb(220, 230, 115) 100%);
  color: #fff;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 100px;
  text-align: center;
  padding: 0.6em;
}
.contactBtn span:first-of-type {
  margin-right: 0.5em;
}

.aboutMap {
  width: 100%;
}

#aboutOperate {
  background: rgb(220, 230, 160);
  background: linear-gradient(-120deg, rgb(220, 230, 160) 28%, rgb(160, 220, 140) 91%);
}

.aboutOperateUl,
.commonUl {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
@media only screen and (max-width: 767px) {
  .aboutOperateUl,
  .commonUl {
    margin-left: auto;
    margin-right: auto;
  }
}
.aboutOperateUl li,
.commonUl li {
  background-color: #fff;
  padding: 20px;
  width: calc(50% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .aboutOperateUl li,
  .commonUl li {
    padding: 15px;
  }
}
.aboutOperateUl li:first-of-type, .aboutOperateUl li:nth-of-type(2),
.commonUl li:first-of-type,
.commonUl li:nth-of-type(2) {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .aboutOperateUl li,
  .commonUl li {
    width: 100%;
    margin-top: 20px;
  }
  .aboutOperateUl li:nth-of-type(2),
  .commonUl li:nth-of-type(2) {
    margin-top: 20px;
  }
}
.aboutOperateUl li .ttl,
.commonUl li .ttl {
  padding-left: 1em;
  text-indent: -1em;
}
.aboutOperateUl li ul > li,
.commonUl li ul > li {
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
.aboutOperateUl li.bg01,
.commonUl li.bg01 {
  background-color: #ebf6f5;
}
.aboutOperateUl li.bg01 *,
.commonUl li.bg01 * {
  background-color: #ebf6f5;
}

#aboutBottom {
  background-color: #ebf6f5;
}
@media only screen and (max-width: 767px) {
  #aboutBottom a:first-of-type {
    margin-bottom: 5%;
  }
}

/* contact ------------------------------------*/
.contact__ttl__wrap {
  width: 39.5833333333%;
  padding-right: 10.4166666667%;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .contact__ttl__wrap {
    width: 100%;
    padding-right: 0;
    padding-bottom: 95px;
  }
}

.contact__ttl {
  font-size: clamp(20px, 9.372px + 1.386vw, 26px);
  font-weight: 700;
}

.contact__cnt {
  width: 100%;
}

.form__cnt input, .form__cnt textarea {
  width: 100%;
  border: solid 1.5px #707070;
  border-radius: 10px;
  padding-left: 1em;
  padding-right: 1em;
}
.form__cnt input {
  height: 40px;
}
.form__cnt textarea {
  padding: 1em;
  height: 360px;
}
.form__cnt + .form__ttl {
  margin-top: 67px;
}

.form__ttl {
  font-size: clamp(16px, 8.915px + 0.924vw, 20px);
  font-weight: 700;
  margin-bottom: 0.5em;
}
.form__ttl .hissu {
  font-size: clamp(14px, 10.457px + 0.462vw, 16px);
  font-weight: 400;
  color: #CB0000;
  padding-left: 0.7em;
}

::placeholder {
  color: #C6C6C6;
}

.form__send {
  margin-top: clamp(100px, 183.141px + -6.928vw, 130px);
}
.form__send input {
  background-color: #021976;
  color: #fff;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(15px, 6.143px + 1.155vw, 20px);
  border-radius: 20px;
  border: solid 2px #021976;
  font-family: inherit;
  cursor: pointer;
  transition: 0.3s;
}
.form__send input:hover {
  opacity: 0.6;
}

.confirm__send {
  display: flex;
  width: 100%;
  margin-left: -10px;
  margin-right: -10px;
}
.confirm__send input {
  width: 100%;
  margin-left: 10px;
  margin-right: 10px;
}

.conf_send_cnt {
  padding-top: 20vw;
  padding-bottom: 20vw;
}
@media only screen and (max-width: 767px) {
  .conf_send_cnt {
    padding-top: 50vw;
    padding-bottom: 50vw;
  }
}

/*==================================================
 * 組合活性化情報「中央会おかやま」
 *================================================*/
.backnumberItem {
  width: 50%;
  display: flex;
  align-items: flex-end;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .backnumberItem {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
  }
}
.backnumberItem:nth-of-type(even) {
  border-left: solid 1px #000;
}
.backnumberItem .image {
  width: 160px;
  margin-right: 4.4444444444%;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .backnumberItem .image {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    width: 100%;
    max-width: 160px;
  }
}
.backnumberItem .image img {
  width: 100%;
}
.backnumberItem .text {
  width: 100%;
}

/*==================================================
 * 組合の設立について
 *================================================*/
.based li {
  position: relative;
}
.based li::before {
  content: "";
  display: block;
  position: absolute;
  width: 33px;
  height: 22px;
  background: url(../img/establish/num01.svg) no-repeat center/contain;
  left: 1em;
  top: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .based li::before {
    width: 25px;
    height: 17px;
  }
}
.based li:nth-of-type(2)::before {
  background-image: url(../img/establish/num02.svg);
}
.based li:nth-of-type(3)::before {
  background-image: url(../img/establish/num03.svg);
}
.based li:nth-of-type(4)::before {
  background-image: url(../img/establish/num04.svg);
}

.btnFlex01.flex {
  column-gap: 30px;
}
.btnFlex01 a {
  width: 225px;
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .btnFlex01 a:last-of-type {
    margin-top: 15px;
  }
}

/*==================================================
 * 組合の運営について
 *================================================*/
#kumiaiIntro a:first-of-type {
  margin-right: 1em;
}
@media only screen and (max-width: 767px) {
  #kumiaiIntro a:first-of-type {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1em;
  }
}

.kumiaiCaution {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.kumiaiCaution li {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.kumiaiCaution li + li {
  margin-top: 30px !important;
}
@media only screen and (max-width: 767px) {
  .kumiaiCaution li + li {
    margin-top: 15px !important;
  }
}
.kumiaiCaution li ul li + li {
  margin-top: 0 !important;
}

/*==================================================
 * 各種様式集
 *================================================*/
/*==================================================
 * ものづくり補助金について
 *================================================*/
.newsUl a {
  display: block;
  font-size: 16px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .newsUl a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .newsUl a {
    font-size: 14px;
  }
}
.newsUl > * {
  font-size: 16px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .newsUl > * {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .newsUl > * {
    font-size: 14px;
  }
}
.newsUl .date {
  color: #00754a;
  font-weight: 700;
}
.newsUl .ttl {
  position: relative;
  padding-right: 1em;
}
.newsUl .ttl span {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  overflow: hidden;
  font-weight: 700;
}
.newsUl .ttl::before {
  content: "＞";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.newsUl li + li {
  margin-top: 1em;
}
.newsUl .accTtl {
  cursor: pointer;
}
.newsUl .accTtl::before, .newsUl .accTtl::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #333;
}
.newsUl .accTtl::before {
  width: 1em;
  height: 1px;
}
.newsUl .accTtl::after {
  width: 1px;
  height: 1em;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.newsUl .accTtl.open::after {
  opacity: 0;
}
.newsUl .content {
  padding: 1em;
  background-color: #fff;
  margin-top: 0.5em;
  display: none;
}
.newsUl .content a {
  text-decoration: underline;
}

/*==================================================
 * 共済制度について
 *================================================*/
@media print, screen and (min-width: 768px) {
  #kyosaiIntro .flex a:first-of-type {
    margin-right: 1em;
  }
}
@media only screen and (max-width: 767px) {
  #kyosaiIntro .flex a:first-of-type {
    margin-bottom: 1em;
  }
}

/*==================================================
 * おかやま中央会ニュース
 *================================================*/
.newsTab {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.newsTabItem {
  width: 120px;
}
@media only screen and (max-width: 767px) {
  .newsTabItem {
    width: calc(50% - 6px);
  }
}
.newsTabItem a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  font-size: 14px;
  font-weight: bold;
  color: #FFF;
}

.newsItem {
  margin-top: 3%;
}
@media only screen and (max-width: 767px) {
  .newsItem {
    margin-top: 10%;
  }
}
.newsItem:first-child {
  margin-top: 0;
}
.newsItem .category {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 24px;
  margin-right: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #FFF;
}
.newsItem .date {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #00754a;
}
.newsItem .ttl {
  font-size: 16px;
  font-weight: bold;
}
@media only screen and (min-width: 960px) {
  .newsItem .ttl {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.newsItem .txt {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.newsPager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .newsPager {
    gap: 4px;
  }
}
.newsPager a, .newsPager span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: rgb(0, 110, 59);
  background: linear-gradient(59deg, rgb(0, 110, 59) 0%, rgb(0, 147, 136) 100%);
  border-radius: 50%;
}
.newsPager a img, .newsPager span img {
  width: 12px;
}
@media only screen and (max-width: 767px) {
  .newsPager a, .newsPager span {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
  .newsPager a img, .newsPager span img {
    width: 8px;
  }
}
.newsPager .pages, .newsPager .last {
  border-radius: 100px !important;
}
.newsPager .dots {
  background: none;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .newsPager .dots {
    font-size: 10px;
    width: auto;
  }
}
.newsPager span.current {
  background: #fff;
  color: #000;
}
.newsPagerLocation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 84px;
  height: 44px;
  padding: 0;
  border-radius: 22px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: rgb(0, 110, 59);
  background: linear-gradient(59deg, rgb(0, 110, 59) 0%, rgb(0, 147, 136) 100%);
  border-radius: 22px;
}

/*==================================================
 * single.php用
 * （岡山中央会ニュース詳細、ものづくり補助金ニュース詳細）
 *================================================*/
.singleMain .category {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 24px;
  margin-right: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #FFF;
}
.singleMain .date {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #00754A;
}
.singleMain .ttl {
  font-size: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .singleMain .ttl {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.singleContent p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .singleContent p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.singleContent p a {
  text-decoration: underline;
}
.singleContent strong {
  font-weight: bold;
}

/*==================================================
 * リンク集
 *================================================*/
.linkList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .linkList {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

.linkItem {
  width: calc(33.3333333333% - 14px);
}
@media only screen and (max-width: 767px) {
  .linkItem {
    width: 100%;
    max-width: 320px;
  }
}
.linkItem a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 4px 20px;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .linkItem a {
    font-size: 16px;
    padding: 4px 10px;
  }
}

.linkBtn {
  width: 278px;
}

/*==================================================
 * サイトマップ
 *================================================*/
.sitemapList {
  padding-left: 25px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sitemapList {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .sitemapList {
    padding-left: 28px;
  }
}

.sitemapItem a {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .sitemapItem a {
    font-size: 16px;
  }
}
.sitemapItemChild {
  display: block;
  margin-top: 5px;
  padding-left: 15px;
}
@media only screen and (max-width: 767px) {
  .sitemapItemChild {
    margin-top: 15px;
  }
}

/*==================================================
 * プライバシーポリシー
 *================================================*/
.privacyTxt {
  font-size: 14px;
}
.privacyTxt a {
  color: #5C94C0;
  text-decoration: underline;
}

/* ==========================================================================
   印刷用
   ========================================================================== */
/* -------------------------------------------------------------- 
 
 Hartija CSS Print Framework -MIT License
   * Version:   1.0
 
-------------------------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
    /*chrome用*/
    zoom: 0.8;
    border-top: none;
  }
  .bgImg {
    display: list-item; /* 該当箇所の表示方法をlist-itemに */
    list-style-image: url(print_bg.png); /* 表示させたい画像 */
    list-style-position: inside; /* マーカーの位置を内側に */
  }
  header {
    display: none;
  }
  footer {
    display: none;
  }
  .footerTelSp {
    display: none;
  }
  .menu-btn {
    display: none;
  }
  .fixBar {
    display: none !important;
  }
  .parallax-mirror {
    display: none;
    height: 0 !important;
  }
  .rellax {
    transform: none !important;
  }
  .PrintHidden {
    display: none;
  }
  .printArea {
    margin: 0;
    padding: 0;
  }
}/*# sourceMappingURL=import.css.map */