/*
theme Name: sample
Author: sample
Description: original theme
version： 1.0.0
*/

/**
 * reset css
 */
html { overflow-x: hidden; background: #FFF; font-size: 62.5%; }
body { overflow-x: hidden; min-width: 320px; -webkit-text-size-adjust: none; -ms-text-size-adjust: none; word-wrap: break-word; }
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, object, iframe, pre, code, p, blockquote, form, fieldset, legend, table, th, td, caption, tbody, tfoot, thead, article, aside, figure, footer, header, hgroup, menu, nav, section, audio, video, canvas { margin: 0; padding: 0; }
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, menu { display: block; }
audio:not([controls]) { display: none; height: 0; }
[hidden] { display: none; }
table { border-collapse: collapse; border-spacing: 0; }
fieldset, img {  border: none; }
address, caption, cite, code, dfn, em, strong, th, var { font-style: normal; font-weight: normal; }
ul, ol, menu { list-style: none; }
caption, th { text-align: left; }
h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal; }
q:before, q:after { content: ''; }
abbr, acronym { border: none; font-variant: normal; }
sup { vertical-align: text-top; }
sub { vertical-align: text-bottom; }
input, textarea, select { font-family: inherit; font-size: inherit; font-weight: inherit; }
legend { color: #333; }
a { text-decoration: none; color: #333; }
.pc a, .pc object a, .pc input[type="submit"]{ -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; }
/*.pc a:hover, .pc object a:hover, .pc input[type="submit"]:hover { opacity: .5; -webkit-opacity: .5; -moz-opacity: .5; -ms-opacity: .5; -o-opacity: .5; }*/
a img, map a { border: none; }
a:hover, a:active, a:focus { outline: 0; }
embed { width: 100%; }
audio, canvas, video { display: inline-block; }
audio:not([controls]) { display: none; height: 0; }
img, object, embed { max-width: 100%; height: auto; }
object, embed { height: 100%; }
img { vertical-align: bottom; -ms-interpolation-mode: bicubic; }
div { vertical-align: top; }
strong { font-weight: normal; }
em { font-style: normal; }
select, input, button, textarea, button { font: 99% arial, sans-serif; }
pre, code, kbd, samp, tt { font-family: monospace; line-height: 1; }
a, img, button, input[type="button"], input[type="submit"], .touch-hover { -webkit-tap-highlight-color: transparent; }
* { -webkit-box-sizing: border-box; box-sizing: border-box; }
*::before, *::after { -webkit-box-sizing: border-box; box-sizing: border-box; }
table { empty-cells: show; font-size: inherit; font: 100%; }
/* IE10,11対策 main要素の高さと幅を認識させる */
@media all and (-ms-high-contrast: none){ main { display: block; } }
input { line-height: 1; }
form img, input, select { vertical-align: middle; }
textarea { resize: none; }
select { padding: 1px; }
legend { display: none; }
input, select, textarea, button { font-size: 1.6rem; vertical-align: middle; color: #333; height: 35px; }
textarea { height: auto; }
input[type="text"], input[type="tel"], input[type="email"], input[type="password"], select, textarea { -webkit-appearance: none; font-size: 1.6rem; width: 100%; padding: 1rem; border: 1px solid #ccc; background: #fff; font-weight: normal; border-radius: 3px; }
/* ======= outline ======= */
input[type="email"], input[type="text"], input[type="number"], input[type="password"], textarea, select { outline: none; }
/* ======= label ======= */
label { margin-right: 1rem; line-height: 1; }

/**
 * body, h1, h2, h3, h4, h5, p
 */
body {
  font-family: "Noto Sans JP", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #313131;
  font-weight: 400;
  letter-spacing: 0.8px;
  line-height: 1.4;
  font-kerning: normal;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, strong { font-weight: bold; }
h1 { font-size: 27px; }
h2 { font-size: 23px; }
h3 { font-size: 19px; }
h4 { font-size: 17px; }
h5, body, p { font-size: 15px; }
small{ font-size: 11px; }
p { margin-bottom: 30px; }
iframe { width: 100%; }
@media (min-width: 601px) and (max-width: 1023px) {
  h1 { font-size: 4vw; }
  h2 { font-size: 3.4vw; }
  h3 { font-size: 3.1vw; }
  h4 { font-size: 2.9vw; }
  h5 { font-size: 2.8vw; }
  body, p { font-size: 2.7vw; }
  small{ font-size: 2.4vw; }
}
@media screen and (max-width: 600px){
  h1 { font-size: 2.3rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.8rem; }
  h4 { font-size: 1.6rem; }
  h5, body, p { font-size: 1.5rem; }
  small{ font-size: 1.1rem; }
}

/**
 * utility
 */
/* display */
.noDisplay { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }
.flex{ display: -webkit-box; display: -ms-flexbox; display: flex; flex-wrap: wrap; }
.flex-reverse { flex-flow: row-reverse; }
.pcNone { display: none; }
.spNone { display: block; }
@media screen and (max-width: 991px) {
  .pcNone { display: block; }
  .spNone { display: none; }
}
/* position */
.static { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.center { text-align: center; }
.left { text-align: left; }
.right { text-align: right; }
/* float */
.leftBox { float: left; }
.rightBox { float: right; }
.nofloat { float: none !important; }
.clearfix { zoom: 1; }
.clearfix:after { display: block;  clear: both; content: ""; }
.clear { clear: both !important; }
/* IE6 */
* html .clearfix { zoom: 1; }
/* IE7 */
*:first-child + html .clearfix { zoom: 1; }
/* weight */
.bold { font-weight: bold; }
/* color */
.red { color: #F00; }
.blue { color: #00F; }
.white { color:#FFF; }
.yellow { color: #FF0; }
.pink { color: #ff3399; }
.orange { color: #FC5D17; }

/* maker */
.yellow-maker { background-image: linear-gradient(transparent 60%, #fff100 60%); }

/* fadein */
/* fadein trigger */
.fadeIn_trigger,
.fadeUp_trigger,
.fadeDown_trigger,
.fadeLeft_trigger,
.fadeRight_trigger { opacity:0; }
/* その場で */
.fadeIn {
  animation-name:fadeInAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeInAnime {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* 下から */
.fadeUp {
  animation-name:fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  animation-name:fadeDownAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  animation-name:fadeLeftAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name:fadeRightAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.container {
  max-width: 1100px;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 1100px){
  .container { margin: 0 1.2rem; }
}

/**
 * content form
 */
.content_frm2 .content_frm_flex1,
.content_frm2 .content_frm_flex2 {
  display: flex;
  flex-wrap: nowrap;
}
.content_frm2 .content_frm_flex2 {
  flex-direction: row-reverse;
}
.content_frm1 main {
  margin-right: 0;
  max-width: 100%;
  width: auto;
}
.content_frm2 main {
  max-width: 750px;
  width: 750px;
}
.content_frm2 .content_frm_flex1 main {
  margin-right: 50px;
}
.content_frm2 .content_frm_flex2 main {
  margin-left: 50px;
}
.content_frm2 aside#sidebar {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 991px){
  .content_frm2 .content_frm_flex1,
  .content_frm2 .content_frm_flex2 { display: block; }
  .content_frm2 main,
  .content_frm2 aside#sidebar {
    max-width: 100%;
    width: 100%;
  }
  .content_frm2 main { margin-right: 0; }
}

/**
 * transition
 */
.pc .transition05 {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.pc .transition1 {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}

/**
 * opacity
 */
.opacity0 {
  opacity: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
}
.pc .opacity05 {
  opacity: .5;
  -webkit-opacity: .5;
  -moz-opacity: .5;
  -ms-opacity: .5;
  -o-opacity: .5;
}
.pc .opacity1  {
  opacity: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
}

/**
 * posts form
 */
.posts_frm {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  width: 100%;
  background: #fff;
}
.posts_frm .flex { display: flex; }
.posts_frm .posts_image {
  overflow: hidden;
  width: 27%;
}
.posts_frm .posts_content {
  padding-left: 25px;
  width: 73%;
}
.posts_frm .posts_title,
.posts_frm .posts_description { margin-bottom: 10px; }
.posts_frm .posts_title h2,
.posts_frm .posts_title h3,
.posts_frm .posts_title h4,
.posts_frm .posts_title h5,
.posts_frm .posts_description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.posts_frm .posts_title h2,
.posts_frm .posts_title h3,
.posts_frm .posts_title h4,
.posts_frm .posts_title h5 { font-size: 18px; }
.posts_frm .posts_description { font-size: 14px; }
.posts_frm .posts_cat,
.posts_frm .posts_cat a,
.posts_frm .posts_date,
.posts_frm .posts_view { font-size: 12px; }
.posts_frm .posts_cat,
.posts_frm .posts_cat a {
  display: inline-block;
  padding: 2px 5px 1px;
  line-height: 1.2;
  color: #fff;
  background: #047C78;
  border-radius: 3px;
}
.posts_frm .posts_cat::before {
  content: '\f02d';
  font-family: 'Font Awesome 6 Free';
  font-weight: bold;
  margin-right: 5px;
}
.posts_frm .posts_date,
.posts_frm .posts_view { color: #959595; }
.posts_frm .posts_date::before,
.posts_frm .posts_view i { margin-right: 3px; }
.posts_frm .posts_date::before {
  content: '\f017';
  font-family: 'Font Awesome 6 Free';
  font-weight: bold;
}
.posts_frm .posts_cat,
.posts_frm .posts_date { margin-right: 15px; }
/* posts form 縦 */
.posts_frm_vertical {
  display: flex;
  flex-wrap: wrap;
}
.posts_frm_vertical .posts_frm {
  margin-bottom: 30px;
  margin-right: 2%;
  padding-bottom: 0;
  width: 49%;
  border-radius: 0;
  box-shadow: 0 0 20px #eee;
}
.posts_frm_vertical.posts_frm_column2 .posts_frm { width: 49%; }
.posts_frm_vertical.posts_frm_column3 .posts_frm { width: 32%; }
.posts_frm_vertical.posts_frm_column4 .posts_frm { width: 23.5%; }
.posts_frm_vertical.posts_frm_column2 .posts_frm:nth-of-type(2n) { margin-right: 0; }
.posts_frm_vertical.posts_frm_column3 .posts_frm:nth-of-type(3n) { margin-right: 0; }
.posts_frm_vertical.posts_frm_column4 .posts_frm:nth-of-type(4n) { margin-right: 0; }
.posts_frm_vertical .flex { display: block; }
.posts_frm_vertical .posts_image,
.posts_frm_vertical .posts_content { width: 100%; }
.posts_frm_vertical .posts_image img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
.posts_frm_vertical.posts_frm_column2 .posts_image img { max-height: 206px; }
.posts_frm_vertical.posts_frm_column3 .posts_image img { max-height: 150px; }
.posts_frm_vertical.posts_frm_column4 .posts_image img { max-height: 99px; }
.posts_frm_vertical .posts_content { padding: 10px; }
.posts_frm_vertical .posts_title h2,
.posts_frm_vertical .posts_title h3,
.posts_frm_vertical .posts_title h4,
.posts_frm_vertical .posts_title h5 { font-size: 15px; }
.posts_frm_vertical .posts_description { font-size: 13px; }
.posts_frm_vertical .posts_cat,
.posts_frm_vertical .posts_cat a,
.posts_frm_vertical .posts_date,
.posts_frm_vertical .posts_view { font-size: 12px; }
.posts_frm_vertical .posts_content .flex { display: flex; }
.posts_frm .new {
  position: absolute;
  top: 0;
  background: linear-gradient(to top left,transparent 50%,#c00 50%);
  opacity: .9;
  z-index: 10;
}
.posts_frm .new,
.posts_frm .new p {
  width: 50px;
  height: 50px;
}
.posts_frm .new p {
  text-align: center;
  margin-top: 0;
  margin-left: 2px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  -webkit-transform: rotate(-50deg);
  -moz-transform: rotate(-50deg);
  -ms-transform: rotate(-50deg);
  -o-transform: rotate(-50deg);
}
.posts_frm .number p {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  margin: 0;
  padding-left: 7px;
  width: 35px;
  height: 35px;
  line-height: 23px;
  color: #777;
  font-size: 12px;
  font-family: 'ZenKakuGothicNew-B';
  background: #f1f1f1;
  border: solid 1px #ddd;
  border-top-left-radius: 3px;
  z-index: 1;
}
.posts_frm:nth-child(1) .number p {
  background: -moz-linear-gradient(to top left,transparent 50%,#E8E00C 50%);
  background: -webkit-linear-gradient(to top left,transparent 50%,#E8E00C 50%);
  background: linear-gradient(to top left,transparent 50%,#E8E00C 50%);
}
.posts_frm:nth-child(2) .number p {
  background: -moz-linear-gradient(to top left,transparent 50%,#E5E5E5 50%);
  background: -webkit-linear-gradient(to top left,transparent 50%,#E5E5E5 50%);
  background: linear-gradient(to top left,transparent 50%,#E5E5E5 50%);
}
.posts_frm:nth-child(3) .number p {
  background: -moz-linear-gradient(to top left,transparent 50%,#E89C0C 50%);
  background: -webkit-linear-gradient(to top left,transparent 50%,#E89C0C 50%);
  background: linear-gradient(to top left,transparent 50%,#E89C0C 50%);
}
.pc .posts_frm a:hover .posts_title {
  text-decoration: underline;
  color: #03efc0;
}
/*.pc .posts_frm a:hover img { transform: scale(1.2, 1.2); }*/
@media (min-width: 601px) and (max-width: 1023px) {
  .posts_frm .posts_title h2 { font-size: 2.7vw; }
  .posts_frm_vertical .posts_description { font-size: 2.3vw; }
  .posts_frm_vertical .posts_cat,
  .posts_frm_vertical .posts_cat a,
  .posts_frm_vertical .posts_date,
  .posts_frm_vertical .posts_view { font-size: 1.8vw; }
}
@media screen and (max-width: 600px){
  .posts_frm_vertical.posts_frm_column2 .posts_frm,
  .posts_frm_vertical.posts_frm_column3 .posts_frm,
  .posts_frm_vertical.posts_frm_column4 .posts_frm { width: 100%; }
  .posts_frm {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: solid 1px #e6e6e6;
  }
  .posts_frm .posts_image { width: 31%; }
  .posts_frm .posts_content {
    padding-left: 1.5rem;
    width: 69%;
  }
  .posts_frm .posts_title { margin-top: 0; }
  .posts_frm .posts_title h2 { font-size: 1.4rem; }
  .posts_frm .posts_cat,
  .posts_frm .posts_cat a {
    padding-bottom: .2rem;
    padding: .4rem .7rem .3rem;
  }
  .posts_frm .posts_description { display: none; }
  .posts_frm_vertical .posts_frm {
    margin-right: 0;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    width: 100%;
    box-shadow: none;
  }
  .posts_frm_vertical .posts_frm .flex { display: flex; }
  .posts_frm_vertical .posts_content {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
  .posts_frm_vertical .posts_title h2,
  .posts_frm_vertical .posts_image img { height: auto; }
  .posts_frm_vertical .posts_title { margin-bottom: 1rem; }
}









main,
#sidebar { margin: 100px 0; }
.main_content { margin-bottom: 100px; }
@media screen and (max-width: 991px){
  main,
  #sidebar { margin: 5rem 0; }
  .main_content { margin-bottom: 5rem; }
}








#header .container {
  position: relative;
}
#header .flex {
  position: fixed;
  flex-wrap: nowrap;
  padding: 20px 0;
  max-width: 1100px;
  width: 100%;
  z-index: 10;
}
#header .logo {
  width: 35%;
}
#header .logo a {
  color: #fff;
  font-style: italic;
  font-size: 32px;
  font-weight: bold;
  text-shadow: 1px 1px 2px #ccc;
}
#header #global_nav_pc {
  width: 65%;
}
#header #global_nav_pc nav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  margin-top: 5px;
}
#header #global_nav_pc nav ul ul li {
  margin-right: 10px;
}
#header #global_nav_pc nav ul li .searchform {
  margin: 0 10px;
}
#header #global_nav_pc nav ul ul li:last-child {
  margin-right: 0;
}
#header #global_nav_pc nav a {
  position: relative;
  padding: 5px 10px;
  color: #fff;
  border-bottom: solid 2px #fff;
}
#header #global_nav_pc nav ul ul li.current-menu-item a {
  color: #333;
  border-bottom: solid 2px #666;
}
#header #global_nav_pc nav a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background: #666;
  bottom: -2px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
#header #global_nav_pc nav a:hover { color: #333; }
#header #global_nav_pc nav a:hover::after { transform: scale(1, 1); }




/*フォーム全体*/
#header #global_nav_pc .searchform .form {
  display: flex;
  justify-content: center;
  border: solid 1px #fff;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  background: rgb(255, 255, 255, .8);
  border-radius: 50px;
  }
/*入力フォーム*/
#header #global_nav_pc .searchform .form input {
  padding: 0 15px;
  font-size: 14px;
  border-radius: initial;
  background:transparent;
  border:none;
  outline:0;
}
/*検索ボタン*/
#header #global_nav_pc .searchform .form button {
  width: 50px;
  background:transparent;
  border-radius: initial;
  border:none;
  color:#666;
  font-size:18px;
  cursor: pointer;
}
@media screen and (max-width: 1024px){
  #header .flex {
    left: 0;
    padding: 1.2rem;

  }
}

@media screen and (max-width: 991px){
  #header #global_nav_pc ul li {
    display: none;

  }
  #header #global_nav_pc ul li:last-child {
    display: inline;

  }

}







#global_nav_btn_sp {
  cursor: pointer;
  text-align: center;
  display: block;
  top: 1rem;
  right: 1rem;
  width: 4rem;
  height: 4rem;
  background: #555;
  border-radius: 50%;
  z-index: 999;
}
#global_nav_btn_sp .btn-trigger {
  position: relative;
  width: 2rem;
  height: 4rem;
  cursor: pointer;
}
#global_nav_btn_sp .btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: .2rem;
  background-color: #fff;
  border-radius: .4rem;
}
#global_nav_btn_sp .btn-trigger, .btn-trigger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
#global_nav_btn_sp .btn-trigger span:nth-of-type(1) { top: 1.2rem; }
#global_nav_btn_sp .btn-trigger span:nth-of-type(2) { top: 1.85rem; }
#global_nav_btn_sp .btn-trigger span:nth-of-type(3) { bottom: 1.2rem; }
#global_nav_btn_sp #btn03 { position: relative; }
#global_nav_btn_sp #btn03.active {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
#global_nav_btn_sp #btn03.active span:nth-of-type(1) {
  top: 1rem;
  -webkit-transform: translateY(1rem) rotate(-45deg);
  transform: translateY(1rem) rotate(-45deg);
}
#global_nav_btn_sp #btn03.active span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
#global_nav_btn_sp #btn03.active span:nth-of-type(3) { opacity: 0; }

  #global_nav_sp {
  position: fixed;
  display: none;
    top: 7.7rem;
    right: 0;
    width: 90%;
    height: 100%;
    background: #fff;
    border-top-left-radius: 50px;
    border-top: solid 5px #777;
    border-left: solid 5px #777;
    box-shadow: inset 3px 3px 15px rgba(100, 100, 100, .3);
    z-index: 999;
  }
  #global_nav_sp .global_nav { padding: 2rem 1rem; }
  #global_nav_sp ul { padding: 2rem 0 3rem; }
  #global_nav_sp li {
    padding: 1rem;
    border-bottom: solid 1px #eee;
  }
  #global_nav_sp ul.sub-menu { padding: 0 1rem; }
  #global_nav_sp .sub-menu li {
    padding-left: 1.5rem;
    border-bottom: dotted 1px #ddd;
  }
  #global_nav_sp .sub-menu li:last-child {
    border-bottom: 0;
  }
  #global_nav_sp .global_nav li::before {
    content: "\f02d";
    font-family: 'Font Awesome 6 Free';
    font-weight: bold;
    margin-right: 1rem;
  }
  #global_nav_sp .global_nav .sub-menu li::before {
    content: "\f105";
  }
  #global_nav_sp .global_nav_sp_add ul { padding: 3rem 0; }
  #global_nav_sp .global_nav_sp_add li {
    padding: 0;
    border: 0;
  }
  #global_nav_sp .global_nav_sp_add li:first-child,
  #global_nav_sp .global_nav_sp_add li:nth-child(2),
  #global_nav_sp .global_nav_sp_add li:nth-child(3) { padding: 0 1.5rem }
  #global_nav_sp .global_nav_sp_add li:first-child { margin-bottom: 3rem; }
  #global_nav_sp .global_nav_sp_add li:nth-child(2),
  #global_nav_sp .global_nav_sp_add li:nth-child(3) { margin-bottom: 1.5rem; }
  #global_nav_sp .global_nav_sp_add li:nth-child(2) img,
  #global_nav_sp .global_nav_sp_add li:nth-child(2) img { border-radius: .5rem; }
  #global_nav_sp .global_nav_sp_add img {
    display: block;
    width: 100%;
  }
  #global_nav_sp.navOpen_active {
    visibility: visible;
    display: block;
    overflow-y: auto;
    z-index: 910;
  }






























#main_title {
  position: relative;
  padding: 150px 0 120px;
  background-image: url("assets/images/front/front-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#main_title h1 {
  padding: 30px 50px;
  max-width: 600px;
  width: 100%;
  color: #fff;
  background: rgb(100, 100, 100, .6);
}
#main_title svg {
  width: 100%;
  height: 100px;
  position: absolute;
  left: 0;
  bottom: -1px;
  fill: #fff;
}
@media screen and (max-width: 991px){
  #main_title { padding: 10rem 0 9rem; }
  #main_title h1 { padding: 2rem; }

}


/**
 * breadcrumbs
 */
#breadcrumbs .aioseo-breadcrumbs {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
#breadcrumbs .aioseo-breadcrumbs span,
#breadcrumbs .aioseo-breadcrumbs a {
  color: #105AAF;
  font-size: 13px;
}
#breadcrumbs .aioseo-breadcrumbs span { margin-right: 5px; }
.pc #breadcrumbs a:hover { text-decoration: underline; }
@media screen and (max-width: 991px){
  #breadcrumbs .aioseo-breadcrumbs { -webkit-line-clamp: 2; }
  #breadcrumbs .aioseo-breadcrumbs span,
  #breadcrumbs .aioseo-breadcrumbs a { font-size: 1.2rem; }
}






#sidebar li {
  list-style: none;
  margin-bottom: 30px;
}
#sidebar li li {
  margin-bottom: 0;
}
#sidebar .searchform .form {
  display: flex;
  justify-content: center;
  border: solid 1px #333;
  background: rgb(255, 255, 255, .8);
  border-radius: 50px;
}
#sidebar .searchform .form input {
  padding: 0 15px;
  font-size: 14px;
  border-radius: initial;
  background:transparent;
  border:none;
  outline:0;
}
#sidebar .searchform .form button {
  width: 50px;
  background:transparent;
  border-radius: initial;
  border:none;
  color:#666;
  font-size:18px;
  cursor: pointer;
}

















/**
 * reCAPTCHA v3
 */
.grecaptcha-badge { visibility: hidden !important; }
