@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
:root {
  --font_family: "Noto Sans JP", sans-serif;
  --en_font_family: "Montserrat", sans-serif;
  --main_color: #FFB420;
  --base_color: #FFFBF2;
  --accent_color: #145983;
  --light_blue_color: #E1F2FC;
  --sub_color: #FFF785;
  --white: #FFFFFF;
  --blue: #2D80B3;
  --orange: #F27F1B;
  --green: #11A66F;
  --yellowgreen: #76D34E;
  --purple: #916BDB;
  --pink: #E482B5;
  --red: #E25143;
  --brown: #9C6721;
  --yellow: #FFEF0C;
  --skyblue: #33AFB9;
  --box_shadow: 2px 2px 10px rgba(47, 150, 173, .3);
}

html{
  font-size: 62.5%;
}

body{
  font-family: var(--font_family) !important;
  font-size: 1.8rem !important;
  font-weight: 500 !important;
  background: #FFFBF2;
}

@media screen and (max-width: 834px) {
  body {
    background: var(--orange);
  }
}

button,
input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="text"]{
  border: none !important;
}

.wrap{
  width: 100%;
  max-width: 1200px;
}

@media screen and (max-width: 1023px) {
  .wrap {
    width: auto;
  }
}

/* floating_header */
/* #floating_header */
#floating_header {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 90px;
  box-sizing: border-box;
  background: var(--white);
  z-index: 1001;
  box-shadow: 0 2px 0 rgba(230, 158, 0, 0.5);
  transform: translateY(-90px);
  transition: opacity 0.5s, transform 0.3s;
}

#floating_header.on {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

#floating_header #header_logo {
  max-width: 410px;
  margin-left: 40px;
}

#floating_header ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
}

#floating_header ul li {
  width: 90px;
  height: 90px;
  border-left: 1px solid var(--blue);
}

#floating_header ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 13px;
  transition: background-color 0.5s;
  text-decoration: none;
  color: var(--accent_color);
}

#floating_header ul li a:hover {
  background-color: var(--light_blue_color);
}

#floating_header ul li a img {
  max-width: 40px;
  height: 40px;
  margin-bottom: 5px;
}

#floating_header ul li:not(:first-child) a {
  font-family: var(--en_font_family);
  font-size: 15px;
}

#floating_header ul #btn_menu {
  background: var(--blue);
  cursor: pointer;
  transition: background-color 0.5s;
}

#floating_header ul #btn_menu a {
  color: var(--white);
}

#floating_header ul #btn_menu a:hover {
  background-color: #3C9CD6;
}

#floating_header ul #btn_menu a div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}

#floating_header ul #btn_menu a div span {
  display: block;
  width: 40px;
  height: 4px;
  background: var(--white);
  transition: opacity 0.3s;
}

#floating_header ul #btn_menu a div::before,
#floating_header ul #btn_menu a div::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: var(--white);
  transition: transform 0.3s;
}

#floating_header ul #btn_menu.on a div span {
  opacity: 0;
}

#floating_header ul #btn_menu.on a div::before {
  transform: rotate(-45deg) translate(-10px, 10px);
}

#floating_header ul #btn_menu.on a div::after {
  transform: rotate(45deg) translate(-9px, -10px);
}

@media screen and (max-width: 1023px) {
  #floating_header {
    display: none;
    position: relative;
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
}

@media screen and (max-width: 750px) {
  #floating_header {
    height: 16vw;
    padding: 2.6666666667vw;
    justify-content: center;
    z-index: 1;
  }

  #floating_header #header_logo {
    width: 72vw;
    margin-left: 0;
  }

  #floating_header ul {
    display: none;
  }
}

#btn_search {
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  transition: width 0.5s;
}

#btn_search.on {
  width: 300px;
}

#btn_search a {
  min-width: 90px;
  height: 90px;
  width: 90px !important;
}

#btn_search .search-box {
  margin-top: 0 !important;
  font-size: 1.6rem;
}

#btn_search .search-box input::placeholder {
  font-size: 1.3rem;
}

/* g_nav */
#g_nav {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  padding: 90px 40px 50px;
  width: 100%;
  height: 100svh;
  box-sizing: border-box;
  background: var(--base_color);
  z-index: 1000;
  transition: opacity 0.3s;
  overflow-y: scroll;
}

#g_nav #btn_close {
  display: none;
}

#g_nav.on {
  opacity: 1;
  pointer-events: all;
}

#g_nav .wrap{
  max-width: none;
}

#g_nav .wrap>ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  gap: 40px 60px;
  max-width: 1460px;
  margin: 0 auto;
  padding-top: 50px;
  padding-left: 0;
}

#g_nav .wrap>ul li{
  list-style: none;
}

#g_nav .wrap>ul li a{
  text-decoration: none;
  color: var(--accent_color);
}

#g_nav .wrap>ul>li:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/4;
}

#g_nav .wrap>ul>li:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/4;
}

#g_nav .wrap>ul>li:nth-child(3) {
  grid-column: 3/4;
  grid-row: 1/4;
}

#g_nav .wrap>ul>li:nth-child(4) {
  grid-column: 4/5;
  grid-row: 1/2;
}

#g_nav .wrap>ul>li:nth-child(5) {
  grid-column: 4/5;
  grid-row: 2/3;
}

#g_nav .wrap>ul>li:nth-child(6) {
  grid-column: 1/2;
  grid-row: 4/5;
}

#g_nav .wrap>ul>li:nth-child(7) {
  grid-column: 2/3;
  grid-row: 4/5;
}

#g_nav .wrap>ul>li:nth-child(8) {
  grid-column: 3/4;
  grid-row: 4/5;
}

#g_nav .wrap>ul>li:nth-child(9) {
  grid-column: 4/5;
  grid-row: 4/5;
}

#g_nav .wrap>ul>li>a {
  position: relative;
  display: block;
  padding: 10px;
  color: var(--white);
  background: var(--main_color) url(assets/img/icon_arrow_orange.svg) no-repeat right 10px center;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, calc(100% - 10px) 100%, 10px 100%, 0 100%, 0 0);
  transition: background-color 0.5s;
}

#g_nav .wrap>ul>li>a:hover {
  background-color: var(--blue);
}

#g_nav .wrap>ul>li>a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

#g_nav .wrap>ul ul {
  margin-top: 15px;
  padding-left: 0;
}

#g_nav .wrap>ul ul li a {
  display: block;
  display: block;
  padding: 8px 30px 8px 10px;
  font-size: 1.5rem;
  border-radius: 6px;
  background: url(assets/img/icon_arrow_orange.svg) no-repeat right 10px center;
  transition: background-color 0.3s, color 0.3s;
}

#g_nav .wrap>ul ul li a:hover {
  background-color: var(--light_blue_color);
}

@media screen and (max-width: 750px) {
  #g_nav {
    width: 84vw;
    padding: 0;
    z-index: 1010;
  }

  #g_nav #btn_close {
    display: block;
    width: 16vw;
    height: 16vw;
    margin-left: auto;
    background: url(assets/img/btn_menu_close.svg) no-repeat center;
    background-size: auto 100%;
    cursor: pointer;
  }

  #g_nav .wrap {
    gap: 4vw;
    padding: 4vw;
    grid-template-columns: repeat(1, 1fr);
  }

  #g_nav .wrap .box .title {
    cursor: pointer;
  }

  #g_nav .wrap .box .title a {
    pointer-events: none;
  }

  #g_nav .wrap .box .title a span {
    font-size: 4.8vw;
    background: url(assets/img/icon_plus_minus.svg) no-repeat top right;
    background-size: auto 200%;
    overflow: hidden;
  }

  #g_nav .wrap .box .title.on span {
    background-position: bottom right;
  }

  #g_nav .wrap .box .title.mb30 {
    margin-bottom: 4vw !important;
  }

  #g_nav .wrap .box ul {
    display: none;
    padding: 0 1.3333333333vw;
    margin-top: 2.6666666667vw;
  }

  #g_nav .wrap .box ul li {
    margin-bottom: 2.6666666667vw;
  }

  #g_nav .wrap .box ul li a {
    font-size: 4.2666666667vw;
  }
}

/* ヘッダーロゴ */
.logo-header img{
  width: 80%;
  height: auto;
  max-width: none;
}

@media screen and (max-width: 750px) {
  .logo-header img {
    width: 72vw;
    max-width: 410px;
  }
}

/* 検索ボックス */
.search-box {
  position: relative;
  display: block;
  max-width: 160px;
  height: 40px;
  box-sizing: border-box;
  padding-left: 45px;
  background: #F4F4F4;
  border-radius: 5px;
  margin: calc(40 / 924 * 100svh) auto 0;
  overflow: hidden;
}

@media screen and (max-height: 680px) {
  .search-box {
    margin-top: 0;
  }
}

.search-box .search-submit {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  cursor: pointer;
  transition: background-color .3s;
}

.search-box .search-submit:hover {
  background: var(--sub_color);
}

.search-box .search-submit span {
  color: var(--accent_color);
}

.search-box input {
  width: 100%;
  height: 40px;
}

.search-box input::placeholder {
    color: var(--accent_color);
    opacity: .7;
}

/* ウィジェットサイドバー */
.sidebar {
  width: 100%;
  max-width: 290px;
  padding: 0;
  background: none;
}

.sidebar .search-box {
  max-width: 100%;
}

#sidebar .textwidget #side_sns,
#sidebar .textwidget #slide-in-side_sns,
#slide-in-sidebar .textwidget #side_sns,
#slide-in-sidebar .textwidget #slide-in-side_sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-left: 0;
}

#sidebar .textwidget #side_sns li,
#sidebar .textwidget #slide-in-side_sns li,
#slide-in-sidebar .textwidget #side_sns li,
#slide-in-sidebar .textwidget #slide-in-side_sns li {
  list-style: none;
}

#sidebar .textwidget #side_sns li a,
#sidebar .textwidget #slide-in-side_sns li a,
#slide-in-sidebar .textwidget #side_sns li a,
#slide-in-sidebar .textwidget #slide-in-side_sns li a {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 2px solid #FFD80C;
  transition: background-color 0.5s;
  text-decoration: none;
  overflow: hidden;
}

#sidebar .textwidget #side_sns li a::before,
#sidebar .textwidget #slide-in-side_sns li a::before,
#slide-in-sidebar .textwidget #side_sns li a::before,
#slide-in-sidebar .textwidget #slide-in-side_sns li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: inherit;
  border-radius: 50%;
  background: var(--light_blue_color);
  transform: scale(0);
  transition: transform 0.5s;
  z-index: -1;
}

#sidebar .textwidget #side_sns li a:hover::before,
#sidebar .textwidget #slide-in-side_sns li a:hover::before,
#slide-in-sidebar .textwidget #side_sns li a:hover::before,
#slide-in-sidebar .textwidget #slide-in-side_sns li a:hover::before {
  transform: scale(1);
}

#sidebar .textwidget #side_sns li a img,
#sidebar .textwidget #slide-in-side_sns li a img,
#slide-in-sidebar .textwidget #side_sns li a img,
#slide-in-sidebar .textwidget #slide-in-side_sns li a img {
  width: 30px;
  height: auto;
}

#sidebar .textwidget #side_sns li a span,
#sidebar .textwidget #slide-in-side_sns li a span,
#slide-in-sidebar .textwidget #side_sns li a span,
#slide-in-sidebar .textwidget #slide-in-side_sns li a span {
  position: relative;
  font-family: var(--en_font_family);
  font-size: 1.4rem;
  color: var(--accent_color);
  z-index: 2;
}

#sidebar .textwidget #side_sns li:first-child a img,
#sidebar .textwidget #slide-in-side_sns li:first-child a img,
#slide-in-sidebar .textwidget #side_sns li:first-child a img,
#slide-in-sidebar .textwidget #slide-in-side_sns li:first-child a img {
  width: 40px;
}

@media screen and (max-width: 750px) {

  #sidebar .textwidget #side_sns li a,
  #sidebar .textwidget #slide-in-side_sns li a,
  #slide-in-sidebar .textwidget #side_sns li a,
  #slide-in-sidebar .textwidget #slide-in-side_sns li a {
    width: 100px;
    height: 100px;
  }

  #sidebar .textwidget #side_sns li a img,
  #sidebar .textwidget #slide-in-side_sns li a img,
  #slide-in-sidebar .textwidget #side_sns li a img,
  #slide-in-sidebar .textwidget #slide-in-side_sns li a img {
    width: 20px;
  }

  #sidebar .textwidget #side_sns li:first-child a img,
  #sidebar .textwidget #slide-in-side_sns li:first-child a img,
  #slide-in-sidebar .textwidget #side_sns li:first-child a img,
  #slide-in-sidebar .textwidget #slide-in-side_sns li:first-child a img {
    width: 35px;
  }
}

.sidebar .textwidget p {
  padding: 0 10px;
}

.sidebar .textwidget p a {
  position: relative;
  display: block;
  padding: 15px 10px 20px;
  transition: background-color 0.5s;
  border-bottom: 2px dashed #FFD80C;
  color: var(--accent_color);
  text-decoration: none;
}

.sidebar .textwidget p a::before {
  content: "";
  opacity: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: calc(100% - 10px);
  top: 5px;
  left: 0;
  border-radius: 10px;
  background-color: var(--sub_color);
  z-index: -1;
  transition: opacity 0.5s;
}

.sidebar .textwidget p a:hover::before {
  opacity: 1;
}

.sidebar .textwidget p a strong{
  text-decoration: underline;
}

.sidebar .textwidget p a:hover strong {
  text-decoration: none;
}

.sidebar .textwidget p a .icon {
  padding: 0 8px;
  font-size: 1.4rem;
  border-radius: 5px;
  color: #fff;
}

.sidebar .textwidget p a .icon.orange {
  background: var(--orange);
}

.sidebar .textwidget p a .icon.blue {
  background: var(--blue);
}

.sidebar .textwidget p a .icon.skyblue {
  background: var(--skyblue);
}

.sidebar .textwidget p a .icon.green {
  background: var(--green);
}

.sidebar .textwidget p a .icon.yellowgreen {
  background: var(--yellowgreen);
}

.sidebar .textwidget p a .icon.pink {
  background: var(--pink);
}

.sidebar .textwidget p a .icon.purple {
  background: var(--purple);
}

.sidebar .textwidget p a .icon.red {
  background: var(--red);
}

.sidebar .textwidget p a .icon.blown {
  background: var(--blown);
}

.sidebar .textwidget p a strong {
  display: block;
  margin-top: 0.5em;
  text-decoration: underline;
}

.sidebar #cc_footercontact_widget-2 h2,
.sidebar .widget-sidebar-title,
.sidebar h2,
.sidebar h3 {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 2.8rem;
  font-weight: 500;
  margin-top: 50px;
  margin-bottom: 0;
  padding-bottom: 12px;
  color: var(--blue);
  background: none;
  border-bottom: 2px solid var(--main_color);
}

.sidebar #cc_footercontact_widget-2 h2 img,
.sidebar .widget-sidebar-title img {
  width: 30px;
  height: auto;
}

.sidebar .widget_calendar {
  margin: 40px 0 0;
  padding: 0 10px;
}

.sidebar .widget_calendar table {
  width: 100%;
  font-size: 1.6rem;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 10px;
}

.sidebar .widget_calendar table caption {
  font-size: 1.6rem;
  color: var(--accent_color);
  margin-bottom: 5px;
}

.sidebar .widget_calendar table thead tr th {
  height: 36px;
  background: #FFF6D9;
  font-weight: 500;
  color: var(--main_color);
  border-right: 1px solid #FFD80C;
  border-bottom: 1px solid #FFD80C;
}

.sidebar .widget_calendar table thead tr th:last-child {
  border-right: none;
}

.sidebar .widget_calendar table tbody {
  color: var(--accent_color);
  text-align: center;
  font-weight: 400;
}

.sidebar .widget_calendar table tbody td {
  height: 35px;
  background: var(--white);
  border-right: 1px solid #FFD80C;
  border-bottom: 1px solid #FFD80C;
}

.sidebar .widget_calendar table tbody td:last-child {
  border-right: none;
}

.sidebar .widget_calendar table tbody td a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff !important;
  text-decoration: none;
  background: #fff url(assets/img/bg_calender_orange.svg) no-repeat center !important;
  transition: background-color 0.3s;
}

.sidebar .widget_calendar table tbody td a:hover {
  background-color: var(--main_color) !important;
}


.sidebar .widget_calendar table tbody #today,
.sidebar .widget_calendar table tbody #slide-in-today {
  color: var(--white);
  background: #fff url(assets/img/bg_calender_blue.svg) no-repeat center !important;
}

.sidebar .widget_calendar nav {
  font-size: 1.5rem;
}

.sidebar .widget_calendar nav a {
  text-decoration: underline;
}

.sidebar ul {
  margin-top: 10px;
}

.sidebar ul .cat-item {
  padding: 0 10px;
}

.sidebar ul .cat-item .children{
  padding-left: .5em;
}

.sidebar ul .cat-item .children .cat-item {
  display: flex;
  align-items: center;
  padding: 0;
}

.sidebar ul .cat-item .children .cat-item::before {
  content: "└";
  color: var(--accent_color);
}

.sidebar ul .cat-item a {
  display: block;
  color: var(--accent_color);
  padding: 10px 30px 10px 10px;
  font-size: 1.6rem;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  background: url(assets/img/icon_arrow_orange.svg) no-repeat right 10px center;
  transition: background-color 0.5s, color 0.3s;
}

.sidebar ul .cat-item a:hover {
  background-color: var(--light_blue_color);
}

.sidebar #cc_footercontact_widget-2 address {
  font-weight: 500;
  font-size: 1.6rem;
  padding: 10px;
}

#text-2 h3,
#slide-in-text-2 h3{
    padding-left: 40px;
    background: url(assets/img/icon_announce.svg) no-repeat center left;
  }

#categories-2 h3,
#slide-in-categories-2 h3{
    padding-left: 40px;
    background: url(assets/img/icon_blog.svg) no-repeat center left;
  }

@media screen and (max-width: 960px) {

  .sidebar #cc_footercontact_widget-2 h2,
  .sidebar .widget-sidebar-title,
  .sidebar h2,
  .sidebar h3 {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 750px) {
  .sidebar {
    width: 100%;
    max-width: 290px;
  }
}

#text-2 h3 {
  padding-left: 40px;
  background: url(assets/img/icon_announce.svg) no-repeat center left !important;
}

#categories-2 h3 {
  padding-left: 40px;
  background: url(assets/img/icon_blog.svg) no-repeat center left !important;
}

/*///////////////////*/
/* SP用　footer_menu */
/*///////////////////*/
.mobile-menu-buttons {
  background: #fff;
  box-shadow: 0 0 5px darkgrey;
  font-size: 19px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  margin: 0;
  list-style: none;
  display: none;
  align-items: center;
  line-height: 1.4;
  min-height: 70px;
  transition: .3s;
  border: 1px solid var(--blue);
}

.mobile-menu-buttons .menu-button {
  width: 100%;
  min-height: 100%;
  border-right: 1px solid var(--blue);
}

.mobile-menu-buttons li:last-child {
  border-right: none;
}

.mobile-menu-buttons .menu-icon {
  text-align: center;
  display: block;
  width: 35px;
  height: 35px;
  position: relative;
}

.mobile-menu-buttons .menu-icon span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(assets/img/icon_sp_footer_menu_1.svg) no-repeat center;
  background-size: 100% auto;
}

.mobile-menu-buttons .menu-icon .fa-home:before {
  background-image: url(assets/img/icon_sp_footer_menu_2.svg);
}

.mobile-menu-buttons .menu-icon .fa-search:before {
  background-image: url(assets/img/icon_sp_footer_menu_3.svg);
}

.mobile-menu-buttons .menu-icon .fa-arrow-up:before {
  background-image: url(assets/img/icon_sp_footer_menu_4.svg);
}

.mobile-menu-buttons .menu-icon .fa-outdent:before {
  background-image: url(assets/img/icon_sp_footer_menu_5.svg);
}

.mobile-menu-buttons .menu-open.menu-button-in {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu-buttons .menu-caption {
  font-size: 9px;
  text-align: center;
  opacity: 0.8;
  color: var(--blue);
}

.mobile-menu-buttons .menu-button {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.mobile-menu-buttons .menu-button>a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  color: #333;
  text-decoration: none;
}

.mobile-menu-buttons .menu-button:hover .menu-button-in {
  opacity: 0.8;
}

.mobile-menu-buttons .ad-area {
  display: none;
}

.mobile-menu-buttons .menu-content {
  cursor: default;
}

.mobile-footer-menu-buttons {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

.logo-menu-button {
  text-align: center;
  font-weight: 900;
  line-height: 50px;
  min-width: 200px;
  overflow: hidden;
}

.logo-menu-button img {
  max-height: 44px;
  display: block;
  margin: 0 auto;
}

.fa.menu-icon {
  font: inherit;
}

/*閉じる用の薄黒カバー*/
#navi-menu-close,
.sidebar-menu-close,
#search-menu-close,
#share-menu-close,
#follow-menu-close {
  display: none;
  /*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;
  /*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  transition: .3s ease-in-out;
}

/*中身*/
.menu-content {
  overflow: auto;
  position: fixed;
  top: 0;
  z-index: 9999;
  /*最前面に*/
  width: 100%;
  /*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 400px;
  /*最大幅（調整してください）*/
  height: 100%;
  background: #FFFBF2;
  /*背景色*/
  transition: .3s ease-in-out;
  /*滑らかに表示*/
  opacity: 1;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}

/* メニュー一覧 */
.menu-content .menu-drawer {
  padding: 0 1em 30px;
}

.menu-content .sidebar {
  width: 100%;
  display: block;
  margin: 0;
}

.navi-menu-content {
  left: 0;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

/* サイドバー一覧 */
.sidebar-menu-content {
  right: 0;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
}

#slide-in-sidebar {
  display: block;
  margin: 0 auto 50px;
}

.search-menu-content,
.share-menu-content,
.follow-menu-content {
  transition: .3s ease-in-out;
  position: fixed;
  top: 40%;
  z-index: 99;
  width: 90%;
  left: 5%;
  right: 5%;
  -webkit-transform: translateY(900%);
  transform: translateY(900%);
  opacity: 0;
}

.search-menu-content .search-edit,
.share-menu-content .search-edit,
.follow-menu-content .search-edit {
  width: 100%;
}

/*チェックが入ったらもろもろ表示*/
#navi-menu-input:checked~#navi-menu-close,
.sidebar-menu-input:checked~.sidebar-menu-close,
#search-menu-input:checked~#search-menu-close,
#share-menu-input:checked~#share-menu-close,
#follow-menu-input:checked~#follow-menu-close {
  display: block;
  /*カバーを表示*/
  opacity: .5;
}

#navi-menu-input:checked~#navi-menu-content,
.sidebar-menu-input:checked~.sidebar-menu-content,
#search-menu-input:checked~#search-menu-content,
#share-menu-input:checked~#share-menu-content,
#follow-menu-input:checked~#follow-menu-content {
  transition: .3s ease-in-out;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
}

#main .search-box,
.search-menu-content .search-box{
  max-width: none;
}

/* メニュー一覧 */
.menu-drawer>li {
  margin-bottom: 20px;
}

.menu-drawer>li>a {
  display: block;
  padding: 10px 10px 10px 0;
  margin-bottom: 10px;
  color: var(--accent_color);
  border-bottom: 2px solid var(--main_color);
  cursor: pointer;
  background: url(assets/img/icon_plus_minus.svg) no-repeat top right;
  background-size: auto 200%;
  transition: none !important;
}

.menu-drawer>li>a:hover {
  color: var(--accent_color);
  background-color: transparent;
}

.menu-drawer>li>a.on {
  background-position: bottom right;
}

.menu-drawer>li:nth-last-child(-n+2)>a {
  pointer-events: all;
  background: url(assets/img/icon_arrow_orange.svg) no-repeat right 13px center;
}

.menu-drawer .sub-menu {
  display: none;
  padding-left: 0;
}

.menu-drawer .sub-menu li a {
  display: block;
  padding: 10px;
  color: var(--accent_color);
  border-radius: 5px;
  background: url(assets/img/icon_arrow_orange.svg) no-repeat right 10px center;
  transition: background-color .5s;
}

.menu-drawer .sub-menu li a:hover {
  background-color: var(--light_blue_color);
}

.menu-close-button {
  display: block;
  cursor: pointer;
  text-align: center;
  font-size: 2em;
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
  margin-left: auto;
  background: url(assets/img/btn_menu_close.svg) no-repeat right top;
  background-size: auto 100%;

  span {
    display: none;
  }
}

.sidebar-menu-close-button {
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 0;
}

.wpo-collapsible-content,
.display-none {
  display: none;
}

@media screen and (max-width: 1023px) {
  .mobile-menu-buttons {
    display: flex;
    align-items: stretch;
  }

  .mobile-header-menu-buttons {
    top: 0;
    bottom: auto;
    justify-content: space-around;
    min-width: 46px;
    z-index: 3;
    box-shadow: 0 0 5px darkgrey;
  }

  .has-logo-button .menu-button {
    width: 70px;
  }

  .has-logo-button .logo-menu-button {
    flex-grow: 99;
  }

  .no-mobile-sidebar .sidebar,
  .mobile-button-fmb .go-to-top-button,
  .no-mobile-header-logo #header .logo-header {
    display: none;
  }

  .mblt-header-mobile-buttons {
    margin-top: 46px;
  }

  .mblt-footer-mobile-buttons {
    margin-bottom: 50px;
  }

  .mblt-header-and-footer-mobile-buttons {
    margin-top: 46px;
    margin-bottom: 50px;
  }

  .scrollable-mobile-buttons {
    margin-bottom: 0;
  }

  .navi-footer-in>.menu-footer {
    justify-content: center;
  }

  .footer-bottom.fdt-left-and-right .footer-bottom-content {
    flex-direction: column;
  }

  .mblt-footer-mobile-buttons .go-to-top-button,
  .mblt-header-and-footer-mobile-buttons .go-to-top-button {
    display: none;
  }

  .mblt-header-mobile-buttons .menu-pc {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .menu-content {
    max-width: 84%;
  }
}


/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

/*フロント固定ページのタイトルを非表示*/
.home.page .entry-title{
  display: none;
}

/*フロント固定ページの投稿日を非表示*/
.home.page .post-date{
  display: none;
}

/*フロント固定ページの更新日を非表示*/
.home.page .post-update{
  display: none;
}

/*フロント固定ページの投稿者名を非表示*/
.home.page .author-info{
  display: none;
}

/* 新着記事表示 */

.new-entry-cards.large-thumb {
display: flex;
flex-wrap: wrap;
}

.new-entry-cards.large-thumb a {
width: 33.333%;
}

/*768px以下*/
@media screen and (max-width: 768px){
.new-entry-cards.large-thumb a {
width: 50%;
}
}

/*480px以下*/
@media screen and (max-width: 480px){
.new-entry-cards.large-thumb a {
width: 100%;
}
}

span.wpcf7-list-item { display: block; }

.page .date-tags {
display: none;
}

/* font-size / color */
.fs110 {
  font-size: 110% !important;
}

.fs120 {
  font-size: 120% !important;
}

.fs130 {
  font-size: 130% !important;
}

.fs140 {
  font-size: 140% !important;
}

.fs150 {
  font-size: 150% !important;
}

.fs160 {
  font-size: 160% !important;
}

.fs170 {
  font-size: 170% !important;
}

.fs180 {
  font-size: 180% !important;
}

.fs190 {
  font-size: 190% !important;
}

.fs200 {
  font-size: 200% !important;
}

.c_red {
  color: var(--red) !important;
}

.c_blue {
  color: var(--blue) !important;
}

.c_skyblue {
  color: var(--skyblue) !important;
}

.c_green {
  color: var(--green) !important;
}

.c_yellow {
  color: var(--yellow) !important;
}

.c_orange {
  color: var(--orange) !important;
}

.c_purple {
  color: var(--purple) !important;
}

.c_pink {
  color: var(--pink) !important;
}

.c_brown {
  color: var(--brown) !important;
}

.entry-card-title font,
.related-entry-card-title font{
  font-size: inherit !important;
  color: inherit !important;
}

