/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,::before,::after{box-sizing:border-box;border-style:solid;border-width:0}html{line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}body{margin:0}main{display:block}p,table,blockquote,address,pre,iframe,form,figure,dl{margin:0}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;margin:0}ul,ol{margin:0;padding:0;list-style:none}dt{font-weight:700}dd{margin-left:0}hr{box-sizing:content-box;height:0;overflow:visible;border-top-width:1px;margin:0;clear:both;color:inherit}pre{font-family:monospace,monospace;font-size:inherit}address{font-style:inherit}a{background-color:transparent;text-decoration:none;color:inherit}abbr[title]{text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:inherit}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}svg,img,embed,object,iframe{vertical-align:bottom}button,input,optgroup,select,textarea{-webkit-appearance:none;appearance:none;vertical-align:middle;color:inherit;font:inherit;background:transparent;padding:0;margin:0;border-radius:0;text-align:inherit;text-transform:inherit}[type="checkbox"]{-webkit-appearance:checkbox;appearance:checkbox}[type="radio"]{-webkit-appearance:radio;appearance:radio}button,[type="button"],[type="reset"],[type="submit"]{cursor:pointer}button:disabled,[type="button"]:disabled,[type="reset"]:disabled,[type="submit"]:disabled{cursor:default}:-moz-focusring{outline:auto}select:disabled{opacity:inherit}option{padding:0}fieldset{margin:0;padding:0;min-width:0}legend{padding:0}progress{vertical-align:baseline}textarea{overflow:auto}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}label[for]{cursor:pointer}details{display:block}summary{display:list-item}[contenteditable]:focus{outline:auto}table{border-color:inherit}caption{text-align:left}td,th{vertical-align:top;padding:0}th{text-align:left;font-weight:700}
* {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
}

body {
  background-color: rgb(232, 232, 232);
}

img {
  width: 100%;
  height: auto;
}

.content {
  min-height: calc(100vh - 68px);
}

.content__wrapper{
  padding: 126px 15px 70px 15px;
}

.content__inner {
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  display: block;
}

.content__inner > *+* {
  margin-top: 30px;
}

.post__column > *+* {
  margin-top: 30px;
}
.button {
  display: block;
  border-radius: 8px;
  border-width: 3px;
  border-style: solid;
  border-color: transparent;
  padding: 10px;
  text-align: center;
  font-size: 20px;
  transition: all .2s;
}

.button.size_m {
  width: 250px;
}

.button.color_blue {
  border-color: rgb(27, 144, 202);
  background-color: rgb(187, 230, 252);
}

.button:hover.color_blue {
  background-color: rgb(154, 221, 255);
}
.filter > * + * {
  margin-top: 15px;
}

.choices {
  margin-bottom: 0;
}

.choices__list--multiple .choices__item {
  background-color: #388e3c;
  border-color: #388e3c;
}

.choices__list--multiple .choices__item.is-highlighted {
  background-color: #28652b;
  border-color: #28652b;
}
.flash {
  position: fixed;
  z-index: 8888;
  top: 76px;
  right: 0;
  left: 0;
  margin: auto;
  color: white;
}

@media screen and (max-width: 850px) {
  .flash {
    top: 82px;
  }
}

.flash__message {
  padding: 15px;
}

.flash__message.is-notice {
  background-color: rgb(98, 189, 37);
}

.flash__message.is-success {
  background-color: rgb(70, 129, 255);
}

.flash__message.is-alert {
  background-color: rgb(255, 70, 70);
}

.flash__close {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  padding: 15px;
  width: auto;
  height: 100%;
}
.footer {
  box-shadow: 0px -5px 15px rgba(0, 0, 0, 0.2);
  background-color: #8D8D8D;
}

.footer__inner {
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  padding: 15px 15px;
}

.footer__text {
  font-weight: 100;
  padding: 10px;
  text-align: center;
  color: white;
}
.form {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
}

.form__title {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
}

.form__error {
  padding: 20px;
  background-color: #ffcece;
  color: #ff5e5e;
}

.form__error > *+* {
  margin-top: 15px;
}

.form-item {
  margin-top: 20px;
}

.form-item__title {
  display: block;
  font-weight: 700;
  font-size: 20px;
}

.form-item__body {
  margin-top: 10px;
  overflow-wrap: break-word;
  display: block;
  width: 100%;
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #c7c7c7;
}

.form-item__body_select > *+* {
  border-top: 1px solid #c7c7c7;
}

.form-item__body_select option {
  padding: 10px;
}

.form-item__link {
  opacity: .7;
  border-bottom: 1px solid #333;
}

.form-item__link:hover {
  opacity: .4;
}

.form-item.__flex {
  display: flex;
  justify-content: center;
  gap: 25px;
}

@media screen and (max-width: 850px) {
  .form-item.__flex {
    flex-direction: column;
    gap: 20px;
  }

  .form-item .button {
    margin-right: auto;
    margin-left: auto;
  }
}
.hamburger {
  display: none;
}

@media screen and (max-width: 850px) {
  .hamburger {
    position: relative;
    z-index: 3;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
  }
}

.hamburger__inner {
  position: relative;
  display: block;
  width: 20px;
  height: 8px;
}

.hamburger__line {
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
}

.hamburger__line_upper-side {
  transform: translateY(-4px);
}

.hamburger.is-active .hamburger__line_upper-side {
  transform: translateY(0px) rotate(45deg);
}

.hamburger__line_lower-side {
  transform: translateY(4px);
}

.hamburger.is-active .hamburger__line_lower-side {
  transform: translateY(0px) rotate(-45deg);
}
.header {
  box-shadow: 0px 5px 7px rgba(5, 173, 50, 0.2);
  background-color: rgb(4, 121, 26);
  width: 100%;
  position: fixed;
  z-index: 9999;
}

.header__inner {
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  padding: 15px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  font-size: 40px;
  color: #fff;
}

@media screen and (max-width: 850px) {
  .header__logo {
    font-size: 25px;
  }
}

.header__blur {
  display: none;
}

@media screen and (max-width: 850px) {
  .header__blur {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    display: block;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
  }
}

.header.is-active .header__blur {
  backdrop-filter: blur(5px);
  opacity: 1;
  pointer-events: initial;
}

@media screen and (max-width: 850px) {
  .header-navi {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    /* padding-top: 82px; innerにmartingで上に余白作るべきでは？ */
    padding-right: 35px;
    padding-left: 35px;
    height: 100vh;
    background-color: #222;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
  }

  .header.is-active .header-navi {
    opacity: 0.9;
    pointer-events: all;
  }
}

.header-navi__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media screen and (max-width: 850px) {
  .header-navi__inner {
    margin-top: 82px;
    padding-top: 57px;
    padding-bottom: 57px;
    display: block;
    height: calc(100vh - 82px);
    overflow-y: scroll;
  }

  .header-navi__inner > *+* {
    margin-top: 12px;
  }
}

.header-navi__link {
  position: relative;
  padding: 5px;
  display: flex;
  align-items: center;
  line-height: 24px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

@media screen and (max-width: 850px) {
  .header-navi__link {
    margin-right: auto;
    margin-left: auto;
    padding: 16px 0px;
    justify-content: center;
    max-width: 250px;
    width: 100%;
  }
}
.link-toggle {
  display: inline-flex;
  gap: 7px;
  background-color: #fff;
  padding: 5px;
  border-radius: 20px;
  align-items: center;
}

.link-toggle__button {
  border: none;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  width: 80px;
  color: #fff;
  background-color: 	#9f9f9f;
  transition: background-color 0.2s ease;
  text-align: center;
}

.link-toggle__button.is_active {
  background-color: #388e3c;
}
.memo {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
}

.memo-action {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.memo-action__link {
  width: 25px;
}

@media screen and (max-width: 850px) {
  .memo-action__link {
    width: 20px;
  }
}

.memo-action__link:hover {
  opacity: 0.6;
}

.memo__lead {
  margin-bottom: 10px;
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 5px;
  font-size: 20px;
  white-space: nowrap;
  overflow-x: scroll;
}

.memo__body {
  overflow-wrap: break-word;
}

.memo__text {
  font-size: 15px;
}

.memo__tag-list {
  margin-top: 10px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.memo__tag {
  border-radius: 3px;
  border: 1px solid #388e3c;
  color: #388e3c;
  padding: 3px;
  font-weight: 300;
  font-size: 14px;
}

.memo__url {
  margin-top: 15px;
}

.memo__link {
  color: rgb(0, 89, 255);
}

.no_result {
  background-color: white;
  padding: 20px;
  font-size: 15px;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;

  .page {
    margin-right: 5px;
    margin-left: 5px;
    padding-right: 6px;
    padding-left: 6px;
    font-size: 23px;
  }

  .page.current {
    color: green;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
