@charset "UTF-8";
/**
 * フロント用 scss
 *
 * @see https://rico-notes.com/programming/css/vscode%E3%81%A7sassscss%E3%82%92%E8%87%AA%E5%8B%95%E3%82%B3%E3%83%B3%E3%83%91%E3%82%A4%E3%83%AB%E3%81%99%E3%82%8B%E7%B0%A1%E5%8D%98%E3%81%AA%E8%A8%AD%E5%AE%9A%E6%96%B9%E6%B3%95/
 *
 * Live Sass Compiler というプラグインを入れた後、
 * .vscode/settings.json に以下を記載する
------------------------------------------
{
  "liveSassCompile.settings.formats":[
    {
      "format": "expanded",
      "extensionName": ".min.css",
      "savePath": "/webroot/css"
    }
  ],
  "liveSassCompile.settings.includeItems": [
    "/webroot/scss/front.scss"
  ],
  "liveSassCompile.settings.generateMap": true
}
------------------------------------------
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * キーフレーム
 *
 * @author Tsue Shogo
 * @since 2021-06-22
 */
@-webkit-keyframes move {
  from {
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes move {
  from {
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/**
 * 共通
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
@media (max-width: 767px) {
  .only_pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .only_sp {
    display: none !important;
  }
}

* {
  font-family: sans-serif;
  color: #455367;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: #8c939c;
}

#wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

#wrapper #float_banner_sp {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1;
}

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

a {
  text-decoration: none;
  color: #455367;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

a:hover {
  text-decoration: underline;
  color: #db4c68;
}

p {
  line-height: 1.5;
}

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

.heading_type_1 {
  margin: 0 0 20px;
  font-weight: normal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .heading_type_1 {
    width: calc((730 - 40) / 3 / 730 * 100%);
    border-bottom: solid 6px #eb99a9;
    margin-bottom: 20px;
    margin-right: 10px;
  }
  .heading_type_1 .text {
    font-size: 20px;
    color: #455367;
    font-weight: normal;
  }
}

@media (max-width: 767px) {
  .heading_type_1 {
    background-color: #eb99a9;
    padding: 0 20px;
    width: calc(100% + 40px);
    margin-left: -20px;
    height: 30px;
  }
  .heading_type_1 .icon {
    color: #ffffff;
  }
  .heading_type_1 .text {
    font-size: 15px;
    color: #ffffff;
    font-weight: normal;
  }
}

.heading_type_1 .icon {
  margin-right: 4px;
}

.align-left {
  margin-right: auto;
  text-align: left;
}

.align-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.align-right {
  margin-left: auto;
  text-align: right;
}

.d-inline {
  display: inline !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -webkit-inline-flex !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.justify-baseline {
  -webkit-box-pack: baseline !important;
  -webkit-justify-content: baseline !important;
      -ms-flex-pack: baseline !important;
          justify-content: baseline !important;
}

.justify-center {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-start {
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-end {
  -webkit-box-pack: end !important;
  -webkit-justify-content: flex-end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-space-around {
  -webkit-justify-content: space-around !important;
      -ms-flex-pack: distribute !important;
          justify-content: space-around !important;
}

.justify-space-between {
  -webkit-box-pack: justify !important;
  -webkit-justify-content: space-between !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-space-evenly {
  -webkit-box-pack: space-evenly !important;
  -webkit-justify-content: space-evenly !important;
      -ms-flex-pack: space-evenly !important;
          justify-content: space-evenly !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -webkit-align-items: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -webkit-align-items: flex-start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -webkit-align-items: flex-end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-stretch {
  -webkit-box-align: stretch  !important;
  -webkit-align-items: stretch  !important;
      -ms-flex-align: stretch  !important;
          align-items: stretch  !important;
}

label, input[type=checkbox], input[type=radio], select {
  cursor: pointer;
}

label {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 1px;
      -ms-flex: 1 0 1px;
          flex: 1 0 1px;
}

.bd-bottom-dashed {
  border-bottom: 1px dashed #aaaaaa;
}

.btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
  border: 1px solid #9e9e9e;
  border-radius: 4px;
  -webkit-box-shadow: 1px 1px 8px #9e9e9e;
          box-shadow: 1px 1px 8px #9e9e9e;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  background-color: #eeeeee;
  color: #455367;
  height: 36px;
  padding: 0 16px;
  cursor: pointer;
  font-size: 13px;
  text-align: center;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.btn:hover {
  opacity: 0.7;
  text-decoration: none;
}

.btns_area .btn {
  margin-bottom: 20px;
}

.btn.btn_primary {
  background-color: #db4c68;
  color: #ffffff;
}

.btn.btn_primary * {
  color: #ffffff;
}

.btn.btn_accent {
  background-color: #455367;
  color: #ffffff;
}

.btn.btn_accent * {
  color: #ffffff;
}

.btn.btn_pink {
  background-color: #eb99a9;
  color: #ffffff;
}

.btn.btn_pink * {
  color: #ffffff;
}

.btn.btn_white {
  background-color: #ffffffaa;
  color: #455367;
}

.btn.btn_white * {
  color: #455367;
}

.btn.btn_large {
  height: 42px;
  padding: 8px 20px;
}

.btn.btn_block {
  display: block;
  width: 100%;
}

.btn .icon {
  margin-right: 4px;
}

.btn.loading {
  text-indent: -300vw;
  cursor: default;
  opacity: 0.6;
  position: relative;
}

.btn.loading:after {
  font-family: 'icomoon';
  content: "\e90c";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  text-indent: 0;
  font-size: 20px;
  -webkit-animation-name: move;
          animation-name: move;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

button.btn.btn_loading {
  display: inline;
  content: "";
}

a.btn_more {
  background-color: #ffffff;
  border: 1px solid #eb99a9;
  border-radius: 4px;
  padding: 0 16px;
  height: 36px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition-property: background-color, color, border-color;
  transition-property: background-color, color, border-color;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

a.btn_more:hover {
  text-decoration: none;
  background-color: #eb99a9;
}

a.btn_more:hover .text {
  color: #ffffff;
}

a.btn_more .text {
  color: #eb99a9;
  font-size: 14px;
  font-weight: 500;
}

.ma-0 {
  margin: 0px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.pa-0 {
  padding: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.ma-1 {
  margin: 4px;
}

.mt-1 {
  margin-top: 4px;
}

.mb-1 {
  margin-bottom: 4px;
}

.ml-1 {
  margin-left: 4px;
}

.mr-1 {
  margin-right: 4px;
}

.pa-1 {
  padding: 4px;
}

.pt-1 {
  padding-top: 4px;
}

.pb-1 {
  padding-bottom: 4px;
}

.pl-1 {
  padding-left: 4px;
}

.pr-1 {
  padding-right: 4px;
}

.ma-2 {
  margin: 8px;
}

.mt-2 {
  margin-top: 8px;
}

.mb-2 {
  margin-bottom: 8px;
}

.ml-2 {
  margin-left: 8px;
}

.mr-2 {
  margin-right: 8px;
}

.pa-2 {
  padding: 8px;
}

.pt-2 {
  padding-top: 8px;
}

.pb-2 {
  padding-bottom: 8px;
}

.pl-2 {
  padding-left: 8px;
}

.pr-2 {
  padding-right: 8px;
}

.ma-3 {
  margin: 12px;
}

.mt-3 {
  margin-top: 12px;
}

.mb-3 {
  margin-bottom: 12px;
}

.ml-3 {
  margin-left: 12px;
}

.mr-3 {
  margin-right: 12px;
}

.pa-3 {
  padding: 12px;
}

.pt-3 {
  padding-top: 12px;
}

.pb-3 {
  padding-bottom: 12px;
}

.pl-3 {
  padding-left: 12px;
}

.pr-3 {
  padding-right: 12px;
}

.ma-4 {
  margin: 16px;
}

.mt-4 {
  margin-top: 16px;
}

.mb-4 {
  margin-bottom: 16px;
}

.ml-4 {
  margin-left: 16px;
}

.mr-4 {
  margin-right: 16px;
}

.pa-4 {
  padding: 16px;
}

.pt-4 {
  padding-top: 16px;
}

.pb-4 {
  padding-bottom: 16px;
}

.pl-4 {
  padding-left: 16px;
}

.pr-4 {
  padding-right: 16px;
}

.ma-5 {
  margin: 20px;
}

.mt-5 {
  margin-top: 20px;
}

.mb-5 {
  margin-bottom: 20px;
}

.ml-5 {
  margin-left: 20px;
}

.mr-5 {
  margin-right: 20px;
}

.pa-5 {
  padding: 20px;
}

.pt-5 {
  padding-top: 20px;
}

.pb-5 {
  padding-bottom: 20px;
}

.pl-5 {
  padding-left: 20px;
}

.pr-5 {
  padding-right: 20px;
}

.ma-6 {
  margin: 24px;
}

.mt-6 {
  margin-top: 24px;
}

.mb-6 {
  margin-bottom: 24px;
}

.ml-6 {
  margin-left: 24px;
}

.mr-6 {
  margin-right: 24px;
}

.pa-6 {
  padding: 24px;
}

.pt-6 {
  padding-top: 24px;
}

.pb-6 {
  padding-bottom: 24px;
}

.pl-6 {
  padding-left: 24px;
}

.pr-6 {
  padding-right: 24px;
}

/**
 * 記事一覧
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
@media (min-width: 768px) {
  .articles ul.article_list li.article {
    margin-bottom: 20px;
  }
}

.articles ul.article_list li.article a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.articles ul.article_list li.article a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.articles ul.article_list li.article a .icon_box {
  position: absolute;
}

@media (min-width: 768px) {
  .articles ul.article_list li.article a .icon_box {
    width: 46px;
    height: 46px;
    top: -20px;
    left: 4px;
  }
}

@media (max-width: 767px) {
  .articles ul.article_list li.article a .icon_box {
    width: 27px;
    height: 27px;
    top: 4px;
    left: 5px;
  }
}

.articles ul.article_list li.article a .icon_box picture {
  position: absolute;
}

@media (min-width: 768px) {
  .articles ul.article_list li.article a .icon_box picture img {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 767px) {
  .articles ul.article_list li.article a .icon_box picture img {
    width: 27px;
    height: 27px;
  }
}

.articles ul.article_list li.article a .icon_box .text {
  color: #ffffff;
  font-weight: 700;
  position: absolute;
}

@media (min-width: 768px) {
  .articles ul.article_list li.article a .icon_box .text {
    font-size: 16px;
    top: 12px;
    left: 18px;
  }
}

@media (max-width: 767px) {
  .articles ul.article_list li.article a .icon_box .text {
    font-size: 13px;
    top: 8px;
    left: 15px;
  }
}

.articles ul.article_list li.article a .image_area {
  max-height: 153px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  background-color: white;
}

.articles ul.article_list li.article a .image_area picture {
  display: block;
}

.articles ul.article_list li.article a .image_area picture img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.articles ul.article_list li.article a .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.articles ul.article_list li.article a .info .date {
  color: #9caab8;
}

.articles ul.article_list li.article a .info .article_title {
  color: #455367;
  font-weight: 700;
  width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.articles ul.article_list li.article a .info .category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.articles ul.article_list li.article a .info .category .icon-tag {
  display: inline-block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 4px;
  color: #eb99a9;
}

.articles ul.article_list li.article a .info .category .text {
  color: #eb99a9;
}

.articles ul.article_list li.article a .info .author {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.articles ul.article_list li.article a .info .author picture {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 22px;
      -ms-flex: 0 0 22px;
          flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.articles ul.article_list li.article a .info .author picture img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.articles ul.article_list li.article a .info .author .text {
  font-size: 14px;
  color: #9e9e9e;
  margin-left: 4px;
}

/**
 * ライター詳細
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.author_detail .article_card_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.author_detail .article_card_inner picture.parts_row_image {
  text-align: center;
  background-color: #faf3e4;
  padding: 40px 0;
  margin-bottom: 30px;
}

.author_detail .article_card_inner picture.parts_row_image img {
  width: 290px;
  height: 290px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.author_detail .article_card_inner h1 .parts_h1_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  font-size: 20px;
}

/**
 * ヘッダ
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
header {
  width: 100%;
  z-index: 100;
  font-size: 14px;
}

header .header_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
}

header .header_area .header_area_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

@media (min-width: 768px) {
  header .header_area .header_area_inner {
    height: 72px;
    max-width: 1000px;
  }
}

@media (max-width: 767px) {
  header .header_area .header_area_inner {
    height: 48px;
    padding: 0 20px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 1px;
        -ms-flex: 1 0 1px;
            flex: 1 0 1px;
  }
}

header .header_area .header_area_inner .logo {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 1px;
      -ms-flex: 1 0 1px;
          flex: 1 0 1px;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

header .header_area .header_area_inner .logo:hover {
  opacity: 0.7;
  text-decoration: none;
}

header .header_area .header_area_inner .logo h1 {
  margin: 0;
}

header .header_area .header_area_inner .search_area {
  border: 1px solid #9e9e9e;
  border-radius: 28px;
  line-height: 20px;
  height: 40px;
  width: 276px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 12px;
}

header .header_area .header_area_inner .search_area .search_form {
  outline: none;
  border: none;
}

header .header_area .header_area_inner .search_area ::-webkit-input-placeholder {
  color: #9e9e9e;
}

header .header_area .header_area_inner .search_area :-ms-input-placeholder {
  color: #9e9e9e;
}

header .header_area .header_area_inner .search_area ::-ms-input-placeholder {
  color: #9e9e9e;
}

header .header_area .header_area_inner .search_area ::placeholder {
  color: #9e9e9e;
}

header .header_area .header_area_inner .search_area .icon-search {
  font-size: 24px;
  display: inline-block;
  color: #eb99a9;
  margin-right: 4px;
  cursor: pointer;
}

header .header_area .header_area_inner .search_area .icon-clear {
  color: #8c939c;
  font-size: 24px;
  margin-left: auto;
  cursor: pointer;
}

header .header_area .btn_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  header .header_area .btn_area .btn {
    margin-left: 12px;
  }
}

@media (max-width: 767px) {
  header .header_area .btn_area .btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: unset;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: unset;
    color: #8c939c;
    padding: 0;
    width: 36px;
    height: 38px;
    overflow: hidden;
    border: none;
    color: #455367;
  }
  header .header_area .btn_area .btn .icon {
    font-size: 22px;
    margin-right: 0;
    color: #455367;
  }
  header .header_area .btn_area .btn .text {
    height: 16px;
    overflow: hidden;
    font-size: 13px;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    color: #455367;
  }
}

header .nav_area nav {
  background-color: #eb99a9;
}

@media (min-width: 768px) {
  header .nav_area nav {
    height: 44px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  header .nav_area nav {
    font-size: 13px;
    overflow-x: scroll;
    overflow-y: hidden;
  }
}

header .nav_area nav ul {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  header .nav_area nav ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 767px) {
  header .nav_area nav ul {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 4px 12px;
  }
}

header .nav_area nav ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

header .nav_area nav ul li:after {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #ffffff;
}

header .nav_area nav ul li:last-child:after {
  display: none;
}

header .nav_area nav ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  padding: 0 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media (min-width: 768px) {
  header .nav_area nav ul li a {
    height: 40px;
  }
}

@media (max-width: 767px) {
  header .nav_area nav ul li a {
    height: 30px;
  }
}

header .nav_area nav ul li a:hover {
  text-decoration: none;
  background-color: #db4c68;
}

/**
 * メイン
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  main .main_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
  }
}

@media (max-width: 767px) {
  main .main_inner {
    padding: 0 20px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  main .main_inner #content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(100% - 250px);
        -ms-flex: 0 0 calc(100% - 250px);
            flex: 0 0 calc(100% - 250px);
    padding: 0 10px;
    width: calc(100% - 250px);
  }
}

@media (max-width: 767px) {
  main .main_inner #content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
}

main .main_inner #sidebar_main {
  background-color: #ffffff;
}

@media (min-width: 768px) {
  main .main_inner #sidebar_main {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 250px;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px;
  }
}

@media (max-width: 767px) {
  main .main_inner #sidebar_main {
    width: 100%;
  }
}

@media (min-width: 768px) {
  main .main_inner #content_middle {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    max-width: 1000px;
  }
}

@media (min-width: 768px) {
  main .main_inner #content_sub {
    padding: 0 10px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(100% - 250px);
        -ms-flex: 0 0 calc(100% - 250px);
            flex: 0 0 calc(100% - 250px);
    width: calc(100% - 250px);
  }
}

main .main_inner #sidebar_sub {
  background-color: #ffffff;
}

@media (min-width: 768px) {
  main .main_inner #sidebar_sub {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 250px;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px;
  }
}

@media (max-width: 767px) {
  main .main_inner #sidebar_sub {
    width: 100%;
  }
}

/**
 * フッタ
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
footer .footer_description {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffffaa;
}

@media (min-width: 768px) {
  footer .footer_description {
    padding-top: 60px;
  }
}

@media (max-width: 767px) {
  footer .footer_description {
    padding: 20px;
  }
}

footer .footer_description .footer_logo {
  text-align: center;
}

@media (min-width: 768px) {
  footer .footer_description .footer_logo {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  footer .footer_description .footer_logo {
    margin-bottom: 16px;
  }
}

footer .footer_description .footer_text {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  footer .footer_description .footer_text {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  footer .footer_description .footer_text {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  footer .footer_description .footer_text p.catch_copy {
    line-height: 2.0;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  footer .footer_description .footer_text p.catch_copy {
    line-height: 2.0;
  }
}

footer .footer_description .footer_text .authors_link {
  text-align: center;
}

@media (min-width: 768px) {
  footer .footer_description .footer_text .authors_link {
    margin-top: 20px;
  }
}

@inlcude sp {
  footer .footer_description .footer_text .authors_link {
    margin-top: 16px;
  }
}

footer .footer_description .footer_text .authors_link a {
  text-decoration: underline;
  color: #1111cc;
}

footer .footer_description .categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

@media (min-width: 768px) {
  footer .footer_description .categories {
    background-color: #faf3e4;
    margin-top: 60px;
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  footer .footer_description .categories {
    margin-top: 20px;
  }
}

footer .footer_description .categories .categories_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media (min-width: 768px) {
  footer .footer_description .categories .categories_inner {
    max-width: 1000px;
  }
}

@media (min-width: 768px) {
  footer .footer_description .categories .categories_inner .title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 240px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 22px;
    font-weight: 700;
  }
}

@media (max-width: 767px) {
  footer .footer_description .categories .categories_inner .title {
    display: none;
  }
}

footer .footer_description .categories .categories_inner .title .icon-tag {
  display: inline-block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (min-width: 768px) {
  footer .footer_description .categories .categories_inner ul {
    width: calc(100% - 240px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  footer .footer_description .categories .categories_inner ul {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 768px) {
  footer .footer_description .categories .categories_inner ul li {
    margin-right: 16px;
    width: 90px;
  }
}

@media (max-width: 767px) {
  footer .footer_description .categories .categories_inner ul li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc((100% - 20px) / 2);
        -ms-flex: 0 0 calc((100% - 20px) / 2);
            flex: 0 0 calc((100% - 20px) / 2);
    margin-bottom: 12px;
  }
}

footer .footer_description .categories .categories_inner ul li a {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

footer .footer_description .categories .categories_inner ul li a:hover {
  opacity: 0.7;
  text-decoration: none;
}

@media (min-width: 768px) {
  footer .footer_description .categories .categories_inner ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 767px) {
  footer .footer_description .categories .categories_inner ul li a {
    display: block;
    width: 100%;
    height: 36px;
    background-color: #ffffff;
    font-size: 12px;
    border-radius: 4px;
    text-align: center;
  }
}

@media (min-width: 768px) {
  footer .footer_description .categories .categories_inner ul li a picture {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    -webkit-box-shadow: 1px 1px 8px #9e9e9e;
            box-shadow: 1px 1px 8px #9e9e9e;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  footer .footer_description .categories .categories_inner ul li a picture {
    display: none;
  }
}

footer .footer_description .categories .categories_inner ul li a .text {
  color: #8c939c;
}

@media (min-width: 768px) {
  footer .footer_description .categories .categories_inner ul li a .text {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  footer .footer_description .categories .categories_inner ul li a .text {
    font-size: 12px;
    line-height: 36px;
  }
}

footer .footer_sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 60px 0;
}

footer .footer_sns .sns_list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

footer .footer_sns .sns_list ul li {
  margin-right: 10px;
}

footer .footer_sns .sns_list ul li a {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

footer .footer_sns .sns_list ul li a:hover {
  opacity: 0.7;
  text-decoration: none;
}

footer .footer_nav {
  padding: 60px 0;
  background-color: #ffffffaa;
}

footer .footer_nav nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 400px;
}

footer .footer_nav nav ul li {
  line-height: 3;
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .footer_nav nav ul li a {
  text-decoration: underline;
  font-size: 14px;
}

footer .footer_copyright {
  text-align: center;
  padding: 20px 0;
}

/**
 * フローティングバナー
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
@media (min-width: 768px) {
  #float_banner_pc {
    position: fixed;
    width: 400px;
    bottom: 0;
    right: 20px;
  }
}

@media (max-width: 767px) {
  #float_banner_pc {
    display: none;
  }
}

#float_banner_pc .btn_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#float_banner_pc .btn_area .btn_close {
  background-color: #ffffffaa;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  -webkit-box-shadow: 1px 1px 8px #9e9e9e;
          box-shadow: 1px 1px 8px #9e9e9e;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

#float_banner_pc .btn_area .btn_close .icon-clear {
  color: #455367;
}

#float_banner_pc a {
  display: block;
}

#float_banner_pc a picture {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 400px;
}

#float_banner_pc a picture img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  #float_banner_sp {
    display: none;
  }
}

@media (max-width: 767px) {
  #float_banner_sp {
    width: 100%;
    opacity: 1;
  }
}

#float_banner_sp .btn_area {
  position: relative;
}

#float_banner_sp .btn_area .btn_close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ffffffaa;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  -webkit-box-shadow: 1px 1px 8px #9e9e9e;
          box-shadow: 1px 1px 8px #9e9e9e;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

#float_banner_sp .btn_area .btn_close .icon-clear {
  color: #455367;
}

#float_banner_sp a {
  display: block;
}

#float_banner_sp a picture {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

#float_banner_sp a picture img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  #float_banner_sp_action {
    display: none;
  }
}

@media (max-width: 767px) {
  #float_banner_sp_action {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: .6s;
            transition-duration: .6s;
    z-index: 110;
    pointer-events: none;
  }
}

#float_banner_sp_action .btn_area {
  position: relative;
}

#float_banner_sp_action .btn_area .btn_close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ffffffaa;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  -webkit-box-shadow: 1px 1px 8px #9e9e9e;
          box-shadow: 1px 1px 8px #9e9e9e;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

#float_banner_sp_action .btn_area .btn_close .icon-clear {
  color: #455367;
}

#float_banner_sp_action a {
  display: block;
}

#float_banner_sp_action a picture {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

#float_banner_sp_action a picture img {
  width: 100%;
  height: auto;
}

#float_banner_sp_action.show {
  opacity: 1;
  pointer-events: auto;
}

/**
 * follow us
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
#follow_us {
  width: 60px;
  height: 246px;
  background-color: #eb99a9;
  border-radius: 0 10px 10px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
  position: fixed;
  left: 0;
  top: 182px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#follow_us .title {
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  line-height: 16px;
}

#follow_us ul.follow_us_sns_links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#follow_us ul.follow_us_sns_links li {
  margin-top: 4px;
}

#follow_us ul.follow_us_sns_links li a picture {
  display: block;
}

#follow_us ul.follow_us_sns_links li a picture img {
  width: 31px;
  height: auto;
}

@media (max-width: 1120px) {
  #follow_us {
    left: -60px;
  }
}

@media (max-width: 767px) {
  #follow_us {
    left: -60px;
  }
}

/**
 * バナー一覧
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.banners ul li {
  margin: 20px 0 20px 0;
}

.banners ul li a {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  display: block;
}

.banners ul li a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.banners ul li picture {
  display: block;
  width: 100%;
}

.banners ul li picture img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .banners ul li {
    padding: 0 10px;
  }
}

/**
 * ライター一覧
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
@media (min-width: 768px) {
  .authors.side {
    width: 220px;
    margin: 0 0 30px 10px;
    padding: 0 0 20px;
    -webkit-box-shadow: 1px 1px 8px #9e9e9e;
            box-shadow: 1px 1px 8px #9e9e9e;
  }
}

@media (max-width: 767px) {
  .authors.side {
    margin: 0 0 30px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media (min-width: 768px) {
  .authors.side h2 {
    background-color: #eb99a9;
    height: 30px;
    padding: 0 20px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 700px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
  }
}

@media (max-width: 767px) {
  .authors.side h2 {
    font-size: 14px;
    color: #ffffff;
    font-weight: 700px;
    line-height: 1.5;
    padding: 0 20px;
    margin: 0;
    background-color: #eb99a9;
    height: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 -20px;
  }
}

@media (min-width: 768px) {
  .authors.large h1.heading_type_1 {
    width: 230px;
  }
}

@media (max-width: 767px) {
  .authors.large h1.heading_type_1 {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .authors.large h1.heading_type_1 span.icon.icon-user {
    display: none;
  }
}

.authors.large h1.heading_type_1 span.text {
  font-size: 20px;
}

@media (min-width: 768px) {
  .authors.large h1.heading_type_1 span.text {
    font-weight: 400;
  }
}

@media (max-width: 767px) {
  .authors.large h1.heading_type_1 span.text {
    font-weight: 700;
  }
}

.authors.large ul.authors_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}

.authors.large ul.authors_list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .authors.large ul.authors_list li {
    margin: 10px 10px 20px 10px;
    width: 160px;
  }
}

@media (max-width: 767px) {
  .authors.large ul.authors_list li {
    width: 90px;
    margin: 0 10px 20px 10px;
  }
}

.authors.large ul.authors_list li a.author_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .authors.large ul.authors_list li a.author_box .avator {
    margin-bottom: 5px;
  }
}

@media (min-width: 768px) {
  .authors.large ul.authors_list li a.author_box .avator picture {
    width: 120px;
    height: 120px;
    margin-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .authors.large ul.authors_list li a.author_box .avator picture {
    width: 50px;
    height: 50px;
  }
}

@media (min-width: 768px) {
  .authors.large ul.authors_list li a.author_box span.text {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .authors.large ul.authors_list li a.author_box span.text {
    font-size: 13px;
  }
}

.authors ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media (min-width: 768px) {
  .authors ul {
    padding: 16px 16px 0;
  }
}

@media (max-width: 767px) {
  .authors ul {
    padding-top: 16px;
  }
}

.authors ul li {
  width: calc((100% - 16px * 2) / 3);
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .authors ul li {
    margin-right: 16px;
  }
  .authors ul li:nth-of-type(3n) {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .authors ul li {
    margin-right: 10px;
  }
}

.authors ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.authors ul li a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.authors ul li a picture {
  display: inline-block;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.authors ul li a picture img {
  width: 100%;
  height: auto;
}

.authors ul li a .text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 12px;
}

.authors .more {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .authors .more {
    margin: 0 16px;
  }
}

@media (min-width: 768px) {
  .authors .more .btn_more {
    height: 40px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

@media (max-width: 767px) {
  .authors .more .btn_more {
    display: none;
  }
}

/**
 * キャンペーン一覧
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
@media (min-width: 768px) {
  .campaigns {
    width: 220px;
    margin: 0 0 30px 10px;
    padding: 0 0 20px;
    -webkit-box-shadow: 1px 1px 8px #9e9e9e;
            box-shadow: 1px 1px 8px #9e9e9e;
  }
}

@media (max-width: 767px) {
  .campaigns {
    margin: 0 0 30px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media (min-width: 768px) {
  .campaigns h2 {
    background-color: #eb99a9;
    height: 30px;
    padding: 0 20px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 700px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
  }
}

@media (max-width: 767px) {
  .campaigns h2 {
    font-size: 14px;
    color: #ffffff;
    font-weight: 700px;
    line-height: 1.5;
    padding: 0 20px;
    margin: 0;
    background-color: #eb99a9;
    height: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 -20px;
  }
}

@media (min-width: 768px) {
  .campaigns ul {
    padding: 0 16px;
  }
}

@media (max-width: 767px) {
  .campaigns ul {
    padding-top: 16px;
  }
}

@media (min-width: 768px) {
  .campaigns ul li {
    border-bottom: 1px solid #8c939c;
    padding: 16px 0;
  }
  .campaigns ul li:last-child {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .campaigns ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 768px) {
  .campaigns ul li .new {
    display: none;
  }
}

@media (max-width: 767px) {
  .campaigns ul li .new {
    font-size: 12px;
    color: #db4c68;
    margin-right: 4px;
  }
}

.campaigns ul li a {
  line-height: 1.5;
}

@media (min-width: 768px) {
  .campaigns ul li a {
    font-size: 14px;
  }
  .campaigns ul li a::before {
    display: inline-block;
    content: "";
    width: 8px;
    height: 10px;
    border: 5px solid transparent;
    border-right: none;
    border-left: 8px solid #455367;
    margin-right: 4px;
  }
}

@media (max-width: 767px) {
  .campaigns ul li a {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .campaigns ul li .btn_detail {
    display: none;
  }
}

@media (max-width: 767px) {
  .campaigns ul li .btn_detail {
    margin-left: auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20px;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
  }
}

/**
 * タグ一覧
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
@media (min-width: 768px) {
  .tags {
    width: 220px;
    margin: 0 0 30px 10px;
    padding: 0 0 20px;
    -webkit-box-shadow: 1px 1px 8px #9e9e9e;
            box-shadow: 1px 1px 8px #9e9e9e;
  }
}

@media (max-width: 767px) {
  .tags {
    margin: 0 0 30px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media (min-width: 768px) {
  .tags h2 {
    background-color: #eb99a9;
    height: 30px;
    padding: 0 20px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 700px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
  }
}

@media (max-width: 767px) {
  .tags h2 {
    font-size: 14px;
    color: #ffffff;
    font-weight: 700px;
    line-height: 1.5;
    padding: 0 20px;
    margin: 0;
    background-color: #eb99a9;
    height: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 -20px;
  }
}

.tags ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media (min-width: 768px) {
  .tags ul {
    padding: 16px 16px;
  }
}

@media (max-width: 767px) {
  .tags ul {
    padding-top: 16px;
  }
}

.tags ul li {
  margin: 0 10px 20px 0;
}

.tags ul li a {
  text-decoration: underline;
  font-size: 14px;
  line-height: 1.5;
}

/**
 * SNSリンク一覧
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
@media (min-width: 768px) {
  .sns_links {
    width: 220px;
    margin: 0 0 30px 10px;
    padding: 0 0 20px;
  }
}

@media (max-width: 767px) {
  .sns_links {
    margin: 0 0 30px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media (min-width: 768px) {
  .sns_links h2 {
    background-color: #eb99a9;
    height: 30px;
    padding: 0 20px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 700px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
  }
}

@media (max-width: 767px) {
  .sns_links h2 {
    font-size: 14px;
    color: #ffffff;
    font-weight: 700px;
    line-height: 1.5;
    padding: 0 20px;
    margin: 0;
    background-color: #eb99a9;
    height: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 -20px;
  }
}

@media (max-width: 767px) {
  .sns_links {
    display: none;
  }
}

.sns_links ul li a {
  background-color: #faf3e4;
  -webkit-box-shadow: 1px 1px 8px #9e9e9e;
          box-shadow: 1px 1px 8px #9e9e9e;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  border-radius: 4px;
  height: 65px;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.sns_links ul li a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.sns_links ul li a picture {
  margin-right: 10px;
  display: block;
  width: 38px;
  height: 30px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 38px;
      -ms-flex: 0 0 38px;
          flex: 0 0 38px;
}

.sns_links ul li a picture img {
  width: 100%;
  height: auto;
}

.sns_links ul li a .text {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 80px;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  color: #455367;
  font-size: 14px;
}

/**
 * ピックアップ一覧
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

#pickups {
  background-color: #ffffff;
  max-width: 1000px;
}

@media (min-width: 768px) {
  #pickups {
    padding: 0 10px;
    width: calc(100% - 250px);
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(100% - 250px);
        -ms-flex: 0 0 calc(100% - 250px);
            flex: 0 0 calc(100% - 250px);
  }
}

#pickups .swiper-area {
  width: 100%;
  position: relative;
  max-width: 1000px;
  background-color: #fff;
}

@media (min-width: 768px) {
  #pickups .swiper-area .swiper {
    margin: 20px 60px;
  }
}

@media (max-width: 767px) {
  #pickups .swiper-area .swiper {
    margin: 20px 0;
  }
}

#pickups .swiper-area .swiper .swiper-wrapper .swiper-slide a {
  display: block;
  max-width: 172px;
}

#pickups .swiper-area .swiper .swiper-wrapper .swiper-slide a img {
  width: 100%;
  vertical-align: bottom;
}

@media (max-width: 767px) {
  #pickups .swiper-area .swiper-button-prev,
  #pickups .swiper-area .swiper-button-next {
    display: none;
  }
}

#pickups .swiper-area .swiper-button-next img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/**
 * ランキング一覧
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 記事一覧
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
@media (min-width: 768px) {
  .articles ul.article_list li.article {
    margin-bottom: 20px;
  }
}

.articles ul.article_list li.article a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.articles ul.article_list li.article a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.articles ul.article_list li.article a .icon_box {
  position: absolute;
}

@media (min-width: 768px) {
  .articles ul.article_list li.article a .icon_box {
    width: 46px;
    height: 46px;
    top: -20px;
    left: 4px;
  }
}

@media (max-width: 767px) {
  .articles ul.article_list li.article a .icon_box {
    width: 27px;
    height: 27px;
    top: 4px;
    left: 5px;
  }
}

.articles ul.article_list li.article a .icon_box picture {
  position: absolute;
}

@media (min-width: 768px) {
  .articles ul.article_list li.article a .icon_box picture img {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 767px) {
  .articles ul.article_list li.article a .icon_box picture img {
    width: 27px;
    height: 27px;
  }
}

.articles ul.article_list li.article a .icon_box .text {
  color: #ffffff;
  font-weight: 700;
  position: absolute;
}

@media (min-width: 768px) {
  .articles ul.article_list li.article a .icon_box .text {
    font-size: 16px;
    top: 12px;
    left: 18px;
  }
}

@media (max-width: 767px) {
  .articles ul.article_list li.article a .icon_box .text {
    font-size: 13px;
    top: 8px;
    left: 15px;
  }
}

.articles ul.article_list li.article a .image_area {
  max-height: 153px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  background-color: white;
}

.articles ul.article_list li.article a .image_area picture {
  display: block;
}

.articles ul.article_list li.article a .image_area picture img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.articles ul.article_list li.article a .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.articles ul.article_list li.article a .info .date {
  color: #9caab8;
}

.articles ul.article_list li.article a .info .article_title {
  color: #455367;
  font-weight: 700;
  width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.articles ul.article_list li.article a .info .category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.articles ul.article_list li.article a .info .category .icon-tag {
  display: inline-block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 4px;
  color: #eb99a9;
}

.articles ul.article_list li.article a .info .category .text {
  color: #eb99a9;
}

.articles ul.article_list li.article a .info .author {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.articles ul.article_list li.article a .info .author picture {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 22px;
      -ms-flex: 0 0 22px;
          flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.articles ul.article_list li.article a .info .author picture img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.articles ul.article_list li.article a .info .author .text {
  font-size: 14px;
  color: #9e9e9e;
  margin-left: 4px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

@media (min-width: 768px) {
  #rankings .articles {
    display: block;
    width: 100%;
  }
  #rankings .articles ul.article_list {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  #rankings .articles ul.article_list li.article {
    width: 230px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 230px;
        -ms-flex: 0 0 230px;
            flex: 0 0 230px;
    margin-right: 40px;
  }
  #rankings .articles ul.article_list li.article a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  #rankings .articles ul.article_list li.article a .image_area {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  #rankings .articles ul.article_list li.article a .image_area picture {
    width: 100%;
  }
  #rankings .articles ul.article_list li.article a .image_area picture img {
    width: 100%;
  }
  #rankings .articles ul.article_list li.article a .info {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 8px;
  }
  #rankings .articles ul.article_list li.article a .info .date {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  #rankings .articles ul.article_list li.article a .info .article_title {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 8px;
  }
  #rankings .articles ul.article_list li.article a .info .category {
    display: none;
  }
  #rankings .articles ul.article_list li.article a .info .author {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin-left: auto;
  }
  #rankings .articles ul.article_list li.article a .info .author .text {
    display: none;
  }
}

@media (max-width: 767px) {
  #rankings .articles ul.article_list li.article {
    border-bottom: 1px solid #8c939c;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #rankings .articles ul.article_list li.article:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  #rankings .articles ul.article_list li.article a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #rankings .articles ul.article_list li.article a .icon_box {
    display: none;
  }
  #rankings .articles ul.article_list li.article a .image_area {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 100px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100px;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }
  #rankings .articles ul.article_list li.article a .info {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 16px;
  }
  #rankings .articles ul.article_list li.article a .info .date {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-left: auto;
    margin-right: 8px;
  }
  #rankings .articles ul.article_list li.article a .info .article_title {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  #rankings .articles ul.article_list li.article a .info .category {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  #rankings .articles ul.article_list li.article a .info .author {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  #rankings .articles ul.article_list li.article a .info .author .text {
    display: none;
  }
}

@media (min-width: 768px) {
  #rankings {
    background-color: #faf3e4;
    max-width: 730px;
    margin-bottom: 30px;
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #rankings h2.heading_type_3 {
    margin-bottom: 0;
  }
}

#rankings .swiper_area {
  position: relative;
  padding-left: 65px;
  padding-right: 65px;
  padding-bottom: 60px;
}

#rankings .swiper_area .swiper .swiper-wrapper {
  margin-top: 20px;
}

#rankings .swiper_area .swiper .swiper-wrapper .swiper-slide {
  max-width: 230px;
}

#rankings .swiper_area .swiper .swiper-wrapper .swiper-slide a {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  text-decoration: none;
}

#rankings .swiper_area .swiper .swiper-wrapper .swiper-slide a .image_area .icon_box {
  width: 46px;
  height: 46px;
  position: absolute;
  top: -20px;
  height: 4px;
}

#rankings .swiper_area .swiper .swiper-wrapper .swiper-slide a .image_area .icon_box.icon_box_type_2 {
  left: 4px;
}

@media (max-width: 767px) {
  #rankings .swiper_area .swiper .swiper-wrapper .swiper-slide a .image_area .icon_box {
    display: none;
  }
}

#rankings .swiper_area .swiper .swiper-wrapper .swiper-slide a .image_area .icon_box img {
  width: 46px;
  height: 46px;
  position: absolute;
}

#rankings .swiper_area .swiper .swiper-wrapper .swiper-slide a .image_area .icon_box .text {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  position: absolute;
  top: 12px;
  left: 18px;
}

#rankings .swiper_area .swiper .swiper-wrapper .swiper-slide a .image_area .main {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

#rankings .swiper_area .swiper .swiper-wrapper .swiper-slide a .info {
  margin-top: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

#rankings .swiper_area .swiper .swiper-wrapper .swiper-slide a .info .date {
  color: #9caab8;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

#rankings .swiper_area .swiper .swiper-wrapper .swiper-slide a .info .article_title {
  color: #455367;
  font-weight: bold;
  margin-top: 8px;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#rankings .swiper_area .swiper .swiper-wrapper .swiper-slide a .info .author {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  margin-left: auto;
}

#rankings .swiper_area .swiper .swiper-wrapper .swiper-slide a .info .author img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

#rankings .swiper_area .swiper-pagination-bullet {
  background-color: #db4c68;
  width: 18px;
  height: 18px;
}

#rankings .swiper_area .swiper-button-next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/**
 * 新着記事一覧
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
@media (min-width: 768px) {
  #new_articles .articles {
    display: block;
    width: 100%;
  }
  #new_articles .articles ul.article_list {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #new_articles .articles ul.article_list li.article {
    width: calc((100% - 2 * 20px) / 3);
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc((100% - 2 * 20px) / 3);
        -ms-flex: 0 0 calc((100% - 2 * 20px) / 3);
            flex: 0 0 calc((100% - 2 * 20px) / 3);
    margin-right: 20px;
  }
  #new_articles .articles ul.article_list li.article:nth-child(3n) {
    margin-right: 0;
  }
  #new_articles .articles ul.article_list li.article a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  #new_articles .articles ul.article_list li.article a .icon_box {
    display: none;
  }
  #new_articles .articles ul.article_list li.article a .image_area {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  #new_articles .articles ul.article_list li.article a .image_area picture {
    width: 100%;
  }
  #new_articles .articles ul.article_list li.article a .image_area picture img {
    width: 100%;
  }
  #new_articles .articles ul.article_list li.article a .info {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 8px;
  }
  #new_articles .articles ul.article_list li.article a .info .date {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  #new_articles .articles ul.article_list li.article a .info .article_title {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 8px;
  }
  #new_articles .articles ul.article_list li.article a .info .category {
    display: none;
  }
  #new_articles .articles ul.article_list li.article a .info .author {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin-left: auto;
  }
  #new_articles .articles ul.article_list li.article a .info .author .text {
    display: none;
  }
}

@media (max-width: 767px) {
  #new_articles .articles ul.article_list li.article {
    border-bottom: 1px solid #8c939c;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #new_articles .articles ul.article_list li.article:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  #new_articles .articles ul.article_list li.article a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #new_articles .articles ul.article_list li.article a .icon_box {
    display: none;
  }
  #new_articles .articles ul.article_list li.article a .image_area {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    width: 100px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100px;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }
  #new_articles .articles ul.article_list li.article a .info {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 16px;
  }
  #new_articles .articles ul.article_list li.article a .info .date {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-left: auto;
    margin-right: 8px;
  }
  #new_articles .articles ul.article_list li.article a .info .article_title {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  #new_articles .articles ul.article_list li.article a .info .category {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  #new_articles .articles ul.article_list li.article a .info .author {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  #new_articles .articles ul.article_list li.article a .info .author .text {
    display: none;
  }
}

/**
 * 編集部のおすすめ一覧
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
#recommended {
  background-color: #ffffff;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  #recommended .articles ul.article_list {
    width: 100%;
  }
  #recommended .articles ul.article_list li.article {
    width: 100%;
  }
  #recommended .articles ul.article_list li.article a {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-shadow: 1px 1px 8px #9e9e9e;
            box-shadow: 1px 1px 8px #9e9e9e;
  }
  #recommended .articles ul.article_list li.article a .icon_box {
    display: none;
  }
  #recommended .articles ul.article_list li.article a .image_area {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: calc((100% - 2 * 20px) / 3);
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc((100% - 2 * 20px) / 3);
        -ms-flex: 0 0 calc((100% - 2 * 20px) / 3);
            flex: 0 0 calc((100% - 2 * 20px) / 3);
  }
  #recommended .articles ul.article_list li.article a .image_area picture {
    width: 100%;
  }
  #recommended .articles ul.article_list li.article a .info {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    padding: 20px;
  }
  #recommended .articles ul.article_list li.article a .info .date {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  #recommended .articles ul.article_list li.article a .info .article_title {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  #recommended .articles ul.article_list li.article a .info .category {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  #recommended .articles ul.article_list li.article a .info .author {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
    margin-left: auto;
  }
}

@media (max-width: 767px) {
  #recommended .articles ul.article_list li.article {
    border-bottom: 1px solid #8c939c;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #recommended .articles ul.article_list li.article:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  #recommended .articles ul.article_list li.article a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #recommended .articles ul.article_list li.article a .icon_box {
    display: none;
  }
  #recommended .articles ul.article_list li.article a .image_area {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    width: 100px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100px;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }
  #recommended .articles ul.article_list li.article a .info {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 16px;
  }
  #recommended .articles ul.article_list li.article a .info .date {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-left: auto;
    margin-right: 8px;
  }
  #recommended .articles ul.article_list li.article a .info .article_title {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  #recommended .articles ul.article_list li.article a .info .category {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  #recommended .articles ul.article_list li.article a .info .author {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  #recommended .articles ul.article_list li.article a .info .author .text {
    display: none;
  }
}

/**
 * ママのミカタ by ママライター講座一覧
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
#lectures {
  background-color: #ffffff;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  #lectures .articles ul.article_list {
    width: 100%;
  }
  #lectures .articles ul.article_list li.article {
    width: 100%;
  }
  #lectures .articles ul.article_list li.article a {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-shadow: 1px 1px 8px #9e9e9e;
            box-shadow: 1px 1px 8px #9e9e9e;
  }
  #lectures .articles ul.article_list li.article a .icon_box {
    display: none;
  }
  #lectures .articles ul.article_list li.article a .image_area {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: calc((100% - 2 * 20px) / 3);
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc((100% - 2 * 20px) / 3);
        -ms-flex: 0 0 calc((100% - 2 * 20px) / 3);
            flex: 0 0 calc((100% - 2 * 20px) / 3);
  }
  #lectures .articles ul.article_list li.article a .image_area picture {
    width: 100%;
  }
  #lectures .articles ul.article_list li.article a .info {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    padding: 20px;
  }
  #lectures .articles ul.article_list li.article a .info .date {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  #lectures .articles ul.article_list li.article a .info .article_title {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  #lectures .articles ul.article_list li.article a .info .category {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  #lectures .articles ul.article_list li.article a .info .author {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
    margin-left: auto;
  }
}

@media (max-width: 767px) {
  #lectures .articles ul.article_list li.article {
    border-bottom: 1px solid #8c939c;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #lectures .articles ul.article_list li.article:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  #lectures .articles ul.article_list li.article a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #lectures .articles ul.article_list li.article a .icon_box {
    display: none;
  }
  #lectures .articles ul.article_list li.article a .image_area {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    width: 100px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100px;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }
  #lectures .articles ul.article_list li.article a .info {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 16px;
  }
  #lectures .articles ul.article_list li.article a .info .date {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-left: auto;
    margin-right: 8px;
  }
  #lectures .articles ul.article_list li.article a .info .article_title {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  #lectures .articles ul.article_list li.article a .info .category {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  #lectures .articles ul.article_list li.article a .info .author {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  #lectures .articles ul.article_list li.article a .info .author .text {
    display: none;
  }
}

@media (min-width: 768px) {
  #lectures h2 {
    width: 65%;
  }
}

/**
 * 上に移動するボタン
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
#btn_top .btn_area {
  width: 56px;
  height: 56px;
  background-color: #eb99a9;
  opacity: 0.8;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  -webkit-box-shadow: 1px 1px 8px #9e9e9e;
          box-shadow: 1px 1px 8px #9e9e9e;
  cursor: pointer;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

#btn_top .btn_area:hover {
  opacity: 0.7;
  text-decoration: none;
}

#btn_top .btn_area span.icon-chevron-up {
  color: #ffffff;
  font-size: 40px;
}

/**
 * ログイン
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
#login .forget_pass {
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#login .forget_pass a:hover {
  text-decoration: none;
}

#login .forget_pass a span.underline {
  text-decoration: underline;
}

#login .forget_pass a span.underline:hover {
  color: #eb99a9;
  text-decoration: none;
}

/**
 * モーダル
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.modal {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  opacity: 0;
  pointer-events: none;
}

.modal img {
  display: none;
}

.modal.show {
  opacity: 1;
  pointer-events: unset;
}

.modal.show img {
  display: unset;
}

.modal .bg {
  width: 100vw;
  height: 120%;
  background-color: #45536770;
  z-index: 120;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 24px;
}

.modal .bg .modal_body {
  position: relative;
  top: -130px;
  height: auto;
  background-color: #ffffff;
  border-radius: 4px;
  z-index: 110;
  -webkit-box-shadow: 1px 1px 8px #9e9e9e;
          box-shadow: 1px 1px 8px #9e9e9e;
}

@media (min-width: 768px) {
  .modal .bg .modal_body {
    width: 360px;
  }
}

@media (max-width: 767px) {
  .modal .bg .modal_body {
    width: 100%;
  }
}

.modal .bg .modal_body .modal_inner {
  padding: 20px 24px;
}

.modal .bg .modal_body .modal_inner .modal_title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #455367;
  margin-bottom: 10px;
}

.modal .bg .modal_body .modal_inner .modal_text {
  font-size: .875rem;
  color: #8c939c;
  margin-bottom: 20px;
}

.modal .bg .modal_body .modal_inner .modal_actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.search_modal .bg .search {
  position: relative;
  padding-bottom: 20px;
}

.search_modal .bg .search input {
  width: 100%;
  height: 48px;
  padding-left: 12px;
  outline: none;
  border: 1px solid #455367;
  border-radius: 4px;
}

.search_modal .bg .search input:focus {
  border: 1px solid #eb99a9;
  border-radius: 4px;
  outline: none;
}

.search_modal .bg .search span.icon-search {
  font-size: 24px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #db4c68;
  width: 40px;
  height: 48px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  position: absolute;
  top: 0;
  right: 0;
  color: #ffffff;
}

.search_modal .bg .search span.icon-clear {
  font-size: 24px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 40px;
  height: 48px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  position: absolute;
  top: 0;
  right: 40px;
  color: #9e9e9e;
}

.search_modal .bg ul.key_words {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.search_modal .bg ul.key_words li.word {
  margin-right: 20px;
  line-height: 27px;
}

.search_modal .bg ul.key_words li.word span {
  text-decoration: underline;
  font-size: 14px;
  color: #9e9e9e;
}

.dialog_menu .bg {
  background-color: #ffffff;
  opacity: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0;
}

.dialog_menu .bg .dialog_header {
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #9e9e9e;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.dialog_menu .bg .dialog_header span.icon-menu {
  font-size: 28px;
  color: #9e9e9e;
  margin-right: 20px;
}

.dialog_menu .bg .dialog_header span.text {
  color: #9e9e9e;
}

.dialog_menu .bg .dialog_header span.icon-clear {
  font-size: 28px;
  color: #eb99a9;
  position: absolute;
  top: 5px;
  right: 20px;
  cursor: pointer;
}

.dialog_menu .bg .login_user_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 160px;
  padding: 20px;
}

.dialog_menu .bg .login_user_area span.name {
  font-size: 16px;
  line-height: 30px;
  color: #eb99a9;
  margin-bottom: 8px;
}

.dialog_menu .bg .login_user_area a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 36px;
  border: 1px solid #eb99a9;
  border-radius: 4px;
  margin-bottom: 8px;
}

.dialog_menu .bg .login_user_area a:hover {
  text-decoration: none;
  cursor: pointer;
}

.dialog_menu .bg .login_user_area a span.text {
  font-size: 14px;
  color: #eb99a9;
}

.dialog_menu .bg .menu_categories .categories_inner ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 20px 10px;
}

.dialog_menu .bg .menu_categories .categories_inner ul li {
  width: calc((100% - 80px) / 4);
  margin: 10px;
}

.dialog_menu .bg .menu_categories .categories_inner ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
}

.dialog_menu .bg .menu_categories .categories_inner ul li a picture {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #faf3e4;
  -webkit-box-shadow: 1px 1px 8px #9e9e9e;
          box-shadow: 1px 1px 8px #9e9e9e;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.dialog_menu .bg .menu_categories .categories_inner ul li a picture img {
  width: unset;
  height: unset;
}

.dialog_menu .bg .menu_categories .categories_inner ul li a .text {
  color: #8c939c;
  font-size: 12px;
}

/**
 * マイページ設定画面
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
#mypage_settings ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media (min-width: 768px) {
  #mypage_settings ul li {
    width: 150px;
    height: 150px;
    margin-right: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  #mypage_settings ul li {
    width: calc((100% - 20px * 2) / 3);
    height: 120px;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  #mypage_settings ul li:nth-of-type(3n) {
    margin-right: 0;
  }
}

#mypage_settings ul li a {
  border: solid 1px #cccccc;
  border-radius: 10px;
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
  height: 100%;
}

#mypage_settings ul li a:hover {
  text-decoration: none;
  background-color: #eb99a922;
}

#mypage_settings ul li a .button_inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  #mypage_settings ul li a .button_inner {
    padding: 10px;
  }
}

@media (min-width: 768px) {
  #mypage_settings ul li a .button_inner picture {
    margin-top: 16px;
    margin-bottom: 8px;
  }
}

@media (max-width: 767px) {
  #mypage_settings ul li a .button_inner picture {
    margin-top: 8px;
    margin-bottom: 8px;
  }
}

#mypage_settings ul li a .button_inner picture img {
  width: 50px;
}

#mypage_settings ul li a .button_inner span {
  display: inline-block;
  text-align: center;
}

@media (max-width: 767px) {
  #mypage_settings ul li a .button_inner span {
    font-size: 14px;
  }
}

/**
 * サイトマップ
 *
 * @author Tsue Shogo
 * @since 2021-11-09
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
#sitemap section.map {
  font-size: 20px;
  margin-bottom: 40px;
}

#sitemap section.map .title {
  border-left: 8px solid #eb99a9;
  padding-left: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eb99a9;
  display: block;
}

#sitemap section.map .category {
  margin-bottom: 20px;
}

#sitemap section.map .category span.category_name {
  font-size: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}

#sitemap section.map .category span.category_name:before {
  font-family: 'icomoon';
  content: "\e902";
  display: inline-block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#sitemap section.map .category span.type_writer:before {
  font-family: 'icomoon';
  content: "\e908";
  display: inline-block;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

#sitemap section.map .category .subcategory ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

#sitemap section.map .category .subcategory ul:before, #sitemap section.map .category .subcategory ul:after {
  content: "";
  display: block;
  height: 0;
}

@media (min-width: 768px) {
  #sitemap section.map .category .subcategory ul:before, #sitemap section.map .category .subcategory ul:after {
    width: calc(100% / 4);
  }
}

@media (max-width: 767px) {
  #sitemap section.map .category .subcategory ul:before, #sitemap section.map .category .subcategory ul:after {
    width: 100%;
  }
}

#sitemap section.map .category .subcategory ul:before {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

#sitemap section.map .category .subcategory ul li.article_title {
  font-size: 13px;
  margin: 0 12px 12px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#sitemap section.map .category .subcategory ul li.article_title:nth-child(4n) {
  margin-right: 0;
}

@media (min-width: 768px) {
  #sitemap section.map .category .subcategory ul li.article_title {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc((100% - 3 * 16px) / 4);
        -ms-flex: 0 0 calc((100% - 3 * 16px) / 4);
            flex: 0 0 calc((100% - 3 * 16px) / 4);
  }
}

@media (max-width: 767px) {
  #sitemap section.map .category .subcategory ul li.article_title {
    width: 100%;
  }
}

#sitemap section.map .category .subcategory ul li.article_title a:before {
  display: inline-block;
  content: "";
  width: 8px;
  height: 10px;
  border: 5px solid transparent;
  border-right: none;
  border-left: 8px solid #eb99a9;
  margin-right: 4px;
}

/**
 * article_author
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.article_author {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .article_author {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .article_author {
    margin-bottom: 20px;
  }
}

.article_author .article_author_inner {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 1px;
      -ms-flex: 1 0 1px;
          flex: 1 0 1px;
}

@media (min-width: 768px) {
  .article_author .article_author_inner {
    width: 100%;
    max-width: 1000px;
  }
}

@media (max-width: 767px) {
  .article_author .article_author_inner {
    width: 100%;
    max-width: 100%;
  }
}

.article_author .article_author_inner .tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #9caab8;
}

@media (min-width: 768px) {
  .article_author .article_author_inner .tab {
    width: 190px;
    height: 31px;
    border-radius: 7px 7px 0 0;
  }
}

@media (max-width: 767px) {
  .article_author .article_author_inner .tab {
    width: 120px;
    height: 20px;
    border-radius: 5px 5px 0 0;
  }
}

.article_author .article_author_inner .tab span {
  color: #ffffff;
}

@media (min-width: 768px) {
  .article_author .article_author_inner .tab span {
    font-size: 16px;
    margin-left: 15px;
  }
}

@media (max-width: 767px) {
  .article_author .article_author_inner .tab span {
    font-size: 12.2px;
    margin-left: 5px;
  }
}

.article_author .article_author_inner .main_box {
  border: solid 1px #9caab8;
}

@media (min-width: 768px) {
  .article_author .article_author_inner .main_box {
    border-radius: 0 7px 7px 7px;
    min-height: 140px;
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .article_author .article_author_inner .main_box {
    border-radius: 0 5px 5px 5px;
    min-height: 100px;
    padding: 16px;
  }
}

.article_author .article_author_inner .main_box .author_area span.avator {
  float: left;
}

.article_author .article_author_inner .main_box .author_area span.avator picture {
  display: block;
  margin-right: 16px;
}

.article_author .article_author_inner .main_box .author_area span.avator picture img {
  width: 100px;
  min-width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.article_author .article_author_inner .main_box .author_area .subject {
  font-weight: bold;
  color: #eb99a9;
}

@media (min-width: 768px) {
  .article_author .article_author_inner .main_box .author_area .subject {
    margin-bottom: 10px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .article_author .article_author_inner .main_box .author_area .subject {
    margin-bottom: 5px;
    font-size: 13px;
  }
}

.article_author .article_author_inner .main_box .author_area .text {
  color: #455367;
}

@media (min-width: 768px) {
  .article_author .article_author_inner .main_box .author_area .text {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .article_author .article_author_inner .main_box .author_area .text {
    font-size: 12.2px;
  }
}

.article_author .article_author_inner .main_box .author_area .text p.parts_row_text {
  line-height: 26px;
  margin: 0;
}

/**
 * 記事カード
 *
 * @author Tsue Shogo
 * @since 2021-06-16
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.article_card {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .article_card.box-shadow-card {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .article_card .box-shadow {
    margin-bottom: 30px;
    margin: 0 -10px;
    padding: 0 10px;
  }
  .article_card .box-shadow .article_card_inner {
    -webkit-box-shadow: 0 0 4px 4px #00000010;
            box-shadow: 0 0 4px 4px #00000010;
    width: 100%;
    padding: 28px 20px;
  }
  .article_card .box-shadow .article_card_inner > .page_builder > *:last-child {
    margin-bottom: 0 !important;
  }
}

.article_card article {
  width: 100%;
}

.article_card article a {
  text-decoration: underline;
  color: #1111cc;
}

.article_card article .article_card_inner {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 1px;
      -ms-flex: 1 0 1px;
          flex: 1 0 1px;
  word-break: break-all;
}

@media (max-width: 767px) {
  .article_card article .article_card_inner {
    max-width: 100%;
  }
}

.article_card #new_articles .article a {
  text-decoration: unset;
  color: #455367;
}

.article_card #new_articles .more a {
  text-decoration: unset;
}

.article_card section.search_articles .article a {
  text-decoration: unset;
  color: #455367;
}

.article_card .mypage_enquetes .enquete a {
  text-decoration: unset;
  color: #455367;
}

/**
 * article_category_and_tags
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
@media (max-width: 767px) {
  .article_category_and_tags .article_category_and_tags_inner {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .article_category_and_tags .article_category_and_tags_inner {
    width: 100%;
    max-width: 1000px;
  }
}

.article_category_and_tags .article_category_and_tags_inner .category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 16px;
}

.article_category_and_tags .article_category_and_tags_inner .category .category_btn {
  cursor: pointer;
  font-size: 15px;
  color: #485365;
  text-decoration: none;
  border: 1px solid #DE9BA8;
  padding: 8px 8px;
  border-radius: 7px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 7px;
  margin-bottom: 16px;
}

.article_category_and_tags .article_category_and_tags_inner .category .category_btn:last-child {
  margin-right: 0;
}

.article_category_and_tags .article_category_and_tags_inner .category .category_btn:hover {
  background-color: #e0e0e0;
  text-decoration: none;
}

.article_category_and_tags .article_category_and_tags_inner .category .category_btn img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}

.article_category_and_tags .article_category_and_tags_inner .tag_btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 16px;
}

.article_category_and_tags .article_category_and_tags_inner .tag_btns .tag_btn {
  font-size: 13px;
  color: #485365;
  background-color: #F9F3E5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px;
  margin-right: 8px;
  margin-bottom: 16px;
  cursor: pointer;
}

.article_category_and_tags .article_category_and_tags_inner .tag_btns .tag_btn:hover {
  background-color: #e0e0e0;
  text-decoration: none;
}

.article_category_and_tags .article_category_and_tags_inner .tag_btns .tag_btn img {
  width: 10px;
  height: 18px;
  margin-right: 4px;
}

/**
 * parts_article_dates
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.parts_article_dates {
  width: 100%;
}

.parts_article_dates .parts_article_dates_inner {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 1px;
      -ms-flex: 1 0 1px;
          flex: 1 0 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.parts_article_dates .parts_article_dates_inner span {
  margin-right: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.parts_article_dates .parts_article_dates_inner span::before {
  font-family: 'icomoon' !important;
  display: inline-block;
  margin-right: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.parts_article_dates .parts_article_dates_inner .post_at::before {
  content: "\e90d";
}

.parts_article_dates .parts_article_dates_inner .update_at::before {
  content: "\e90f";
}

.parts_article_dates .parts_article_dates_inner .time::before {
  content: "\e90e";
}

.parts_article_dates .parts_article_dates_inner .author {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}

.parts_article_dates .parts_article_dates_inner .author picture {
  margin-right: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.parts_article_dates .parts_article_dates_inner .author picture img {
  width: 22px;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .parts_article_dates {
    margin-bottom: 20px;
    border-bottom: 3px solid #e0e0e0;
  }
  .parts_article_dates .parts_article_dates_inner {
    width: 100%;
    max-width: 100%;
    line-height: 30px;
  }
  .parts_article_dates .parts_article_dates_inner span {
    font-size: 12.1px;
    font-weight: normal;
    color: #455367;
  }
}

@media (min-width: 768px) {
  .parts_article_dates {
    margin: 0 0 30px;
    border-bottom: 3px solid #e0e0e0;
  }
  .parts_article_dates .parts_article_dates_inner {
    width: 100%;
    max-width: 1000px;
    line-height: 20px;
    padding: 12px 0;
  }
  .parts_article_dates .parts_article_dates_inner.pt0 {
    padding: 0 0 12px 0;
  }
  .parts_article_dates .parts_article_dates_inner span {
    font-size: 14px;
    font-weight: normal;
    color: #455367;
  }
}

/**
 * パンくずリスト
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
#breadcrumbs {
  width: 100%;
  min-height: 60px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}

#breadcrumbs ol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  line-height: 1.8;
}

#breadcrumbs ol li {
  font-size: 14px;
}

#breadcrumbs ol li:first-child a:before {
  display: inline;
  font-family: 'icomoon';
  content: "\e904";
}

#breadcrumbs ol li:before {
  display: inline-block;
  content: "▲";
  margin: 0 8px;
  font-size: 12px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

#breadcrumbs ol li:first-child:before {
  display: none;
}

#breadcrumbs ol li a {
  font-size: 14px;
}

/**
 * parts_category_eyecatch
 * 
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.parts_category_eyecatch {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.parts_category_eyecatch .parts_category_eyecatch_inner {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 1px;
      -ms-flex: 1 0 1px;
          flex: 1 0 1px;
}

.parts_category_eyecatch .parts_category_eyecatch_inner .eyecatch_info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #ffffffaa;
}

.parts_category_eyecatch .parts_category_eyecatch_inner .eyecatch_info h1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.parts_category_eyecatch .parts_category_eyecatch_inner .eyecatch_info h1:before {
  font-family: 'icomoon' !important;
  content: "\e902";
  display: inline-block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.parts_category_eyecatch .parts_category_eyecatch_inner .eyecatch_info .eyecatch_categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.parts_category_eyecatch .parts_category_eyecatch_inner .eyecatch_info .eyecatch_categories a.category_btn {
  color: #455367;
  height: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 12px 12px 0;
  padding: 0 12px;
  background-color: #faf3e4;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.parts_category_eyecatch .parts_category_eyecatch_inner .eyecatch_info .eyecatch_categories a.category_btn:hover {
  text-decoration: none;
  color: #455367;
  background-color: #e0e0e0;
}

@media (max-width: 767px) {
  .parts_category_eyecatch {
    margin-bottom: 20px;
    padding: 0;
  }
  .parts_category_eyecatch .parts_category_eyecatch_inner {
    width: 100%;
    max-width: 100%;
  }
  .parts_category_eyecatch .parts_category_eyecatch_inner .eyecatch_info {
    padding: 20px;
  }
  .parts_category_eyecatch .parts_category_eyecatch_inner .eyecatch_info h1 {
    font-size: 16px;
    color: #455367;
    font-weight: bold;
    margin: 0 0 12px 0;
    line-height: 28px;
  }
  .parts_category_eyecatch .parts_category_eyecatch_inner .eyecatch_info h1:before {
    font-size: 13px;
    line-height: 26px;
  }
  .parts_category_eyecatch .parts_category_eyecatch_inner .eyecatch_info .categories a.category_btn {
    font-size: 12.1px;
    font-weight: normal;
    line-height: 24px;
  }
}

@media (min-width: 768px) {
  .parts_category_eyecatch {
    margin-bottom: 30px;
  }
  .parts_category_eyecatch .parts_category_eyecatch_inner {
    width: 100%;
    max-width: 1000px;
  }
  .parts_category_eyecatch .parts_category_eyecatch_inner .eyecatch_info {
    padding: 20px;
  }
  .parts_category_eyecatch .parts_category_eyecatch_inner .eyecatch_info h1 {
    font-size: 22px;
    color: #455367;
    font-weight: bold;
    margin: 0 0 12px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .parts_category_eyecatch .parts_category_eyecatch_inner .eyecatch_info h1:before {
    font-size: 19px;
    line-height: 38px;
  }
  .parts_category_eyecatch .parts_category_eyecatch_inner .eyecatch_info .eyecatch_categories a.category_btn {
    font-size: 14px;
    line-height: 32px;
  }
}

/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.parts_custom_html a {
  text-decoration: underline;
}

.parts_custom_html a:link {
  color: #0000EE;
}

.parts_custom_html a:visited {
  color: #551A8B;
}

.parts_custom_html a:active {
  color: #FF0000;
}

/**
 * 定義リスト
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.parts_definition_list {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.parts_definition_list > dt {
  width: 100%;
}

.parts_definition_list > dd {
  width: 100%;
}

.parts_definition_list .terms {
  border: 2px solid #faf3e4;
  padding: 24px;
  height: 110px;
  overflow-y: scroll;
}

@media (max-width: 767px) {
  .parts_definition_list {
    margin-bottom: 20px;
  }
  .parts_definition_list.no-margin {
    padding-left: 0;
    padding-right: 0;
  }
  .parts_definition_list + .parts_definition_list {
    margin-top: -20px;
  }
  .parts_definition_list > dt {
    width: 100%;
    max-width: 100%;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #faf3e4;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 700;
    color: #455367;
    line-height: 20px;
  }
  .parts_definition_list > dd {
    width: 100%;
    max-width: 100%;
    padding: 24px;
    border-left: 2px solid #faf3e4;
    border-right: 2px solid #faf3e4;
    border-bottom: 2px solid #faf3e4;
    font-size: 14px;
    font-weight: 400;
    color: #455367;
    line-height: 28px;
  }
  .parts_definition_list .terms::-webkit-scrollbar {
    width: 10px;
  }
  .parts_definition_list .terms::-webkit-scrollbar-track {
    background: #cccccc;
  }
  .parts_definition_list .terms::-webkit-scrollbar-thumb {
    background: #8c939c;
  }
}

@media (min-width: 768px) {
  .parts_definition_list {
    margin-bottom: 30px;
  }
  .parts_definition_list.no-margin {
    padding-left: 0;
    padding-right: 0;
  }
  .parts_definition_list + .parts_definition_list {
    margin-top: -30px;
  }
  .parts_definition_list > dt {
    width: 100%;
    max-width: 1000px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #faf3e4;
    padding: 0 24px;
    font-size: 16px;
    font-weight: bold;
    color: #455367;
    line-height: 24px;
  }
  .parts_definition_list > dd {
    width: 100%;
    max-width: 1000px;
    padding: 24px;
    border-left: 2px solid #faf3e4;
    border-right: 2px solid #faf3e4;
    border-bottom: 2px solid #faf3e4;
    font-size: 16px;
    font-weight: 400;
    color: #455367;
    line-height: 24px;
  }
}

/**
 * フォーム
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.parts_form dl dt {
  margin-bottom: 4px;
}

.parts_form dl dd {
  margin-bottom: 20px;
  position: relative;
}

.parts_form span.required {
  background-color: #db4c68;
  color: #ffffff;
  border-radius: 4px;
  margin-left: 20px;
  padding: 0 12px;
}

.parts_form input[type=text],
.parts_form input[type=password],
.parts_form input[type=email],
.parts_form input[type=zip],
.parts_form input[type=tel],
.parts_form input[type=date],
.parts_form select,
.parts_form textarea {
  width: 100%;
  padding: 8px 4px;
  border-radius: 4px;
  border: 1px solid #9e9e9e;
}

.parts_form input[type=text]:disabled,
.parts_form input[type=password]:disabled,
.parts_form input[type=email]:disabled,
.parts_form input[type=zip]:disabled,
.parts_form input[type=tel]:disabled,
.parts_form input[type=date]:disabled,
.parts_form select:disabled,
.parts_form textarea:disabled {
  background-color: #cccccc;
}

.parts_form input[type=text].error,
.parts_form input[type=password].error,
.parts_form input[type=email].error,
.parts_form input[type=zip].error,
.parts_form input[type=tel].error,
.parts_form input[type=date].error,
.parts_form select.error,
.parts_form textarea.error {
  border: 1px solid #db4c68;
  background-color: #eb99a944;
}

.parts_form input[type=text].has_append_icon,
.parts_form input[type=password].has_append_icon,
.parts_form input[type=email].has_append_icon,
.parts_form input[type=zip].has_append_icon,
.parts_form input[type=tel].has_append_icon,
.parts_form input[type=date].has_append_icon,
.parts_form select.has_append_icon,
.parts_form textarea.has_append_icon {
  padding-right: 52px;
}

.parts_form p.error_message {
  font-size: 12px;
  color: #db4c68;
  font-weight: 700;
  max-height: 0;
  margin: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  overflow-y: hidden;
}

.parts_form p.error_message.has_error {
  margin: 8px 0 0 0;
  max-height: 100px;
}

/**
 * テキストフィールド
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.form_element {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form_element.is_hidden {
  display: none;
}

.form_element .form_element_inner {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 1px;
      -ms-flex: 1 0 1px;
          flex: 1 0 1px;
}

.form_element .form_element_inner dl dt {
  color: #455367;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}

.form_element .form_element_inner dl dd {
  color: #455367;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form_element .form_element_inner dl dd .confirm_email_area {
  -webkit-box-ordinal-group: 21;
  -webkit-order: 20;
      -ms-flex-order: 20;
          order: 20;
}

.form_element .form_element_inner dl dd .error_message {
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
      -ms-flex-order: 10;
          order: 10;
}

.form_element .form_element_inner dl dd .email_confirm_description {
  margin: 0 0 12px;
  font-size: 12px;
}

.form_element .form_element_inner ul.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.form_element .form_element_inner ul li {
  margin-bottom: 12px;
  margin-right: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.form_element .form_element_inner ul li input[type="radio"] {
  display: none;
}

.form_element .form_element_inner ul li .radio_text {
  display: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 26px;
  padding-right: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.form_element .form_element_inner ul li .radio_text:before {
  content: "";
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: 0;
  top: 2px;
  border: 1px solid;
  border-color: #9e9e9e;
  /* 枠の色 */
  background-color: #ffffff;
  /* 背景の色 */
}

.form_element .form_element_inner ul li input[type="radio"]:checked + .radio_text:after {
  content: "";
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 5px;
  left: 3px;
  background-color: #eb99a9;
  /* ボタン内の色*/
}

.form_element .form_element_inner ul li input[type="checkbox"] {
  display: none;
}

.form_element .form_element_inner ul li .checkbox_text {
  display: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 26px;
  padding-right: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.form_element .form_element_inner ul li .checkbox_text:before {
  content: "";
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 16px;
  height: 16px;
  left: 0;
  top: 2px;
  border: 1px solid;
  border-color: #9e9e9e;
  /* 枠の色 */
  background-color: #ffffff;
  /* 背景の色 */
}

.form_element .form_element_inner ul li input[type="checkbox"]:checked + .checkbox_text:after {
  content: "";
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 18px;
  height: 9px;
  top: 2px;
  left: 2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: #eb99a9;
  /* チェックの色 */
}

.form_element .form_element_inner ul.style-btn li {
  margin-bottom: 12px;
}

.form_element .form_element_inner ul.style-btn li input {
  display: none;
}

.form_element .form_element_inner ul.style-btn li label {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #9e9e9e;
  border-radius: 4px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  background-color: #ffffff;
  min-height: 36px;
  padding: 0 16px;
  text-align: left;
  white-space: normal;
}

.form_element .form_element_inner ul.style-btn li label:hover {
  opacity: 0.8;
}

.form_element .form_element_inner ul.style-btn li input[type="radio"]:checked + label {
  background-color: #eb99a9;
  color: #ffffff;
}

.form_element .form_element_inner ul.style-btn li input[type="checkbox"]:checked + label {
  background-color: #eb99a9;
  color: #ffffff;
}

.form_element .form_element_inner ul.style-btn li .radio_text:before,
.form_element .form_element_inner ul.style-btn li input[type="radio"]:checked + .radio_text:after,
.form_element .form_element_inner ul.style-btn li .checkbox_text:before,
.form_element .form_element_inner ul.style-btn li input[type="checkbox"]:checked + .checkbox_text:after {
  display: none;
}

.form_element .append-icon {
  font-size: 24px;
  display: inline-block;
  position: absolute;
  top: 7px;
  right: 12px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .form_element {
    margin-bottom: 10px;
  }
  .form_element .form_element_inner {
    width: 100%;
    max-width: 100%;
  }
  .form_element .form_element_inner dl {
    margin-bottom: 24px;
  }
  .form_element .form_element_inner dl dt {
    font-size: 16px;
  }
  .form_element .form_element_inner dl dt span.required {
    background-color: #db4c68;
    color: #ffffff;
    font-size: 12px;
    padding: 0 12px;
    border-radius: 4px;
    margin-left: 8px;
    line-height: 20px;
    white-space: nowrap;
  }
}

@media (min-width: 768px) {
  .form_element {
    margin-bottom: 10px;
  }
  .form_element .form_element_inner {
    width: 100%;
    max-width: 1000px;
  }
  .form_element .form_element_inner dl {
    margin-bottom: 24px;
  }
  .form_element .form_element_inner dl dt {
    font-size: 16px;
  }
  .form_element .form_element_inner dl dt span.required {
    background-color: #db4c68;
    color: #ffffff;
    font-size: 12px;
    padding: 0 12px;
    border-radius: 4px;
    margin-left: 8px;
    line-height: 20px;
    white-space: nowrap;
  }
}

.form_element .confirm_email_area {
  margin-top: 12px;
}

.ver_2 .form_element_inner dl dt {
  background-color: #EED5DA;
  border-left: 3px solid #eb99a9;
  padding: 4px 0 4px 12px;
}

/**
 * h1
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.parts_h1 {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.parts_h1 .parts_h1_inner {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 1px;
      -ms-flex: 1 0 1px;
          flex: 1 0 1px;
}

@media (max-width: 767px) {
  .parts_h1 {
    margin-bottom: 20px;
  }
  .parts_h1.no-margin {
    padding-left: 0;
    padding-right: 0;
  }
  .parts_h1 .parts_h1_inner {
    width: 100%;
    max-width: 100%;
  }
  .parts_h1.style-simple .parts_h1_inner {
    line-height: 28px;
  }
  .parts_h1.style-simple .parts_h1_inner span {
    font-size: 18px;
    font-weight: bold;
    color: #455367;
  }
  .parts_h1.style-beige .parts_h1_inner {
    line-height: 34px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
  .parts_h1.style-beige .parts_h1_inner::before {
    display: block;
    width: 100%;
    height: 12px;
    position: absolute;
    bottom: 0;
    content: "";
    background-color: #faf3e4;
    z-index: 0;
  }
  .parts_h1.style-beige .parts_h1_inner span {
    font-size: 20px;
    font-weight: bold;
    color: #455367;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (min-width: 768px) {
  .parts_h1 {
    margin-bottom: 30px;
  }
  .parts_h1.no-margin {
    padding-left: 0;
    padding-right: 0;
  }
  .parts_h1 .parts_h1_inner {
    width: 100%;
    max-width: 1000px;
  }
  .parts_h1.style-simple .parts_h1_inner {
    line-height: 28px;
  }
  .parts_h1.style-simple .parts_h1_inner span {
    font-size: 22px;
    font-weight: bold;
    color: #455367;
  }
  .parts_h1.style-beige .parts_h1_inner {
    line-height: 28px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
  .parts_h1.style-beige .parts_h1_inner::before {
    display: block;
    width: 383px;
    height: 12px;
    position: absolute;
    bottom: 0;
    content: "";
    background-color: #faf3e4;
    z-index: 0;
  }
  .parts_h1.style-beige .parts_h1_inner span {
    font-size: 24px;
    font-weight: bold;
    color: #455367;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.style-simple {
  margin: 0 0 30px 0;
}

/**
 * h2
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.parts_h2 {
  width: 100%;
}

.parts_h2 .parts_h2_inner {
  position: relative;
  text-align: center;
  padding: 20px;
}

.parts_h2 .parts_h2_inner:before, .parts_h2 .parts_h2_inner:after {
  display: block;
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  pointer-events: none;
}

.parts_h2 .parts_h2_inner:before {
  left: 0;
  top: 0;
  border-top: 3px solid #eb99a9;
  border-left: 3px solid #eb99a9;
}

.parts_h2 .parts_h2_inner:after {
  right: 0;
  bottom: 0;
  border-bottom: 3px solid #eb99a9;
  border-right: 3px solid #eb99a9;
}

.parts_h2 .parts_h2_inner span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #faf3e4));
  background: -webkit-linear-gradient(transparent 60%, #faf3e4 60%);
  background: linear-gradient(transparent 60%, #faf3e4 60%);
}

@media (max-width: 767px) {
  .parts_h2 {
    margin: -80px 0 20px 0;
    padding-top: 80px;
  }
  .parts_h2.no-margin {
    padding-left: 0;
    padding-right: 0;
  }
  .parts_h2 .parts_h2_inner {
    width: 100%;
    max-width: 100%;
    line-height: 23px;
    font-size: 16px;
    font-weight: 700;
  }
  .parts_h2 .parts_h2_inner span {
    color: #455367;
  }
}

@media (min-width: 768px) {
  .parts_h2 {
    margin: -120px 0 30px 0;
    padding-top: 120px;
  }
  .parts_h2.no-margin {
    padding-left: 0;
    padding-right: 0;
  }
  .parts_h2 .parts_h2_inner {
    width: 100%;
    max-width: 1000px;
    line-height: 34px;
    font-size: 22px;
    font-weight: 700;
  }
  .parts_h2 .parts_h2_inner span {
    color: #455367;
  }
}

/**
 * h2_index
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.parts_h2_index {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.parts_h2_index .parts_h2_index_inner {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 1px;
      -ms-flex: 1 0 1px;
          flex: 1 0 1px;
  border: 3px solid #faf3e4;
}

.parts_h2_index .parts_h2_index_inner .index_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.parts_h2_index .parts_h2_index_inner .index_link {
  cursor: pointer;
  text-decoration: unset;
}

.parts_h2_index .parts_h2_index_inner ol.parents {
  list-style: none;
  padding: 0;
}

.parts_h2_index .parts_h2_index_inner ol.parents li.parent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.parts_h2_index .parts_h2_index_inner ol.parents li.parent > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.parts_h2_index .parts_h2_index_inner ol.parents li.parent a.index_link:hover {
  text-decoration: none;
}

.parts_h2_index .parts_h2_index_inner ol.parents li.parent ol.children li.child a.text {
  text-decoration: none;
}

.parts_h2_index .parts_h2_index_inner ol.children {
  list-style: none;
  padding: 0;
}

.parts_h2_index .parts_h2_index_inner ol.children li.child {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.parts_h2_index .parts_h2_index_inner ol.children li.child::before {
  display: block;
  content: "";
  width: 10px;
  height: 8px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 0px solid transparent;
  border-left: 10px solid #eb99a9;
}

@media (max-width: 767px) {
  .parts_h2_index {
    margin-bottom: 40px;
  }
  .parts_h2_index .parts_h2_index_inner {
    max-width: 100%;
    padding: 15px;
  }
  .parts_h2_index .parts_h2_index_inner .index_title {
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: bold;
    color: #eb99a9;
  }
  .parts_h2_index .parts_h2_index_inner ol.parents li.parent {
    line-height: 18px;
    margin-bottom: 10px;
  }
  .parts_h2_index .parts_h2_index_inner ol.parents li.parent .num {
    font-size: 18px;
    font-weight: bold;
    color: #eb99a9;
    margin-right: 18px;
  }
  .parts_h2_index .parts_h2_index_inner ol.parents li.parent .text {
    font-size: 12.2px;
    font-weight: normal;
    color: #455367;
  }
  .parts_h2_index .parts_h2_index_inner ol.children {
    margin-left: 24px;
  }
  .parts_h2_index .parts_h2_index_inner ol.children li.child {
    line-height: 18px;
    margin-bottom: 10px;
  }
  .parts_h2_index .parts_h2_index_inner ol.children li.child::before {
    margin: 4px 4px 0 0;
  }
  .parts_h2_index .parts_h2_index_inner ol.children li.child:first-of-type {
    margin-top: 10px;
  }
  .parts_h2_index .parts_h2_index_inner ol.children li.child:last-of-type {
    margin-bottom: 0;
  }
  .parts_h2_index .parts_h2_index_inner ol.children li.child .text {
    font-size: 12.2px;
    font-weight: normal;
    color: #455367;
  }
}

@media (min-width: 768px) {
  .parts_h2_index {
    margin: 10px 0 60px;
    padding: 0 40px;
  }
  .parts_h2_index .parts_h2_index_inner {
    width: 100%;
    max-width: 1000px;
    padding: 30px;
  }
  .parts_h2_index .parts_h2_index_inner .index_title {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: bold;
    color: #eb99a9;
  }
  .parts_h2_index .parts_h2_index_inner ol.parents li.parent {
    line-height: 24px;
    margin-bottom: 20px;
  }
  .parts_h2_index .parts_h2_index_inner ol.parents li.parent .num {
    font-size: 22px;
    font-weight: bold;
    color: #eb99a9;
    margin-right: 22px;
    padding-top: 4px;
  }
  .parts_h2_index .parts_h2_index_inner ol.parents li.parent .text {
    font-size: 16px;
    font-weight: normal;
    color: #455367;
  }
  .parts_h2_index .parts_h2_index_inner ol.children {
    margin-left: 30px;
  }
  .parts_h2_index .parts_h2_index_inner ol.children li.child {
    line-height: 24px;
    margin-bottom: 20px;
  }
  .parts_h2_index .parts_h2_index_inner ol.children li.child::before {
    margin: 10px 10px 0 0;
  }
  .parts_h2_index .parts_h2_index_inner ol.children li.child:first-of-type {
    margin-top: 20px;
  }
  .parts_h2_index .parts_h2_index_inner ol.children li.child:last-of-type {
    margin-bottom: 0;
  }
  .parts_h2_index .parts_h2_index_inner ol.children li.child .text {
    font-size: 16px;
    font-weight: normal;
    color: #455367;
  }
}

/**
 * h3
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.parts_h3 {
  width: 100%;
}

.parts_h3 .parts_h3_inner {
  position: relative;
  text-align: center;
  padding: 16px;
  background-color: #faf3e4;
  border-left: 8px solid #eb99a9;
}

.parts_h3 .parts_h3_inner span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #faf3e4));
  background: -webkit-linear-gradient(transparent 60%, #faf3e4 60%);
  background: linear-gradient(transparent 60%, #faf3e4 60%);
}

@media (max-width: 767px) {
  .parts_h3 {
    margin: -80px 0 20px 0;
    padding-top: 80px;
  }
  .parts_h3.no-margin {
    padding-left: 0;
    padding-right: 0;
  }
  .parts_h3 .parts_h3_inner {
    font-size: 15px;
    font-weight: 700;
    width: 100%;
    max-width: 100%;
    line-height: 23px;
  }
  .parts_h3 .parts_h3_inner span {
    color: #455367;
  }
}

@media (min-width: 768px) {
  .parts_h3 {
    margin: -120px 0 30px 0;
    padding-top: 120px;
  }
  .parts_h3.no-margin {
    padding-left: 0;
    padding-right: 0;
  }
  .parts_h3 .parts_h3_inner {
    width: 100%;
    max-width: 1000px;
    line-height: 34px;
    font-size: 22px;
    font-weight: 700;
  }
  .parts_h3 .parts_h3_inner span {
    color: #455367;
  }
}

/**
 * h4
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.parts_h4 {
  width: 100%;
}

.parts_h4 .parts_h4_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.parts_h4 .parts_h4_inner:before {
  display: block;
  content: "";
  background-color: #eb99a9;
}

@media (max-width: 767px) {
  .parts_h4 {
    margin: 0 0 20px 0;
  }
  .parts_h4.no-margin {
    padding-left: 0;
    padding-right: 0;
  }
  .parts_h4 .parts_h4_inner {
    width: 100%;
    max-width: 100%;
    line-height: 23px;
    font-size: 15px;
    font-weight: 700;
  }
  .parts_h4 .parts_h4_inner:before {
    width: 15px;
    height: 15px;
    margin-right: 8px;
  }
  .parts_h4 .parts_h4_inner span {
    color: #455367;
  }
}

@media (min-width: 768px) {
  .parts_h4 {
    margin: 0 0 30px 0;
  }
  .parts_h4.no-margin {
    padding-left: 0;
    padding-right: 0;
  }
  .parts_h4 .parts_h4_inner {
    width: 100%;
    max-width: 1000px;
    line-height: 34px;
    font-size: 20px;
    font-weight: 700;
    color: #455367;
  }
  .parts_h4 .parts_h4_inner:before {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
}

/**
 * h5
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.parts_h5 {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.parts_h5 .parts_h5_inner {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 1px;
      -ms-flex: 1 0 1px;
          flex: 1 0 1px;
}

@media (max-width: 767px) {
  .parts_h5 {
    margin: 0 0 20px 0;
  }
  .parts_h5.no-margin {
    padding-left: 0;
    padding-right: 0;
  }
  .parts_h5 .parts_h5_inner {
    width: 100%;
    max-width: 100%;
    line-height: 23px;
    font-size: 14px;
    font-weight: 700;
  }
  .parts_h5 .parts_h5_inner span {
    color: #455367;
  }
}

@media (min-width: 768px) {
  .parts_h5 {
    margin: 0 0 30px;
  }
  .parts_h5.no-margin {
    padding-left: 0;
    padding-right: 0;
  }
  .parts_h5 .parts_h5_inner {
    width: 100%;
    max-width: 1000px;
    line-height: 23px;
    font-size: 18px;
    font-weight: 700;
  }
  .parts_h5 .parts_h5_inner span {
    color: #455367;
  }
}

/**
 * メインビジュアル
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

#main_visual {
  margin-top: 20px;
  margin-bottom: 30px;
  background-color: #faf3e4;
  background: #faf3e4;
  background: -webkit-gradient(linear, left bottom, left top, from(#faf3e4), color-stop(53%, #faf3e4), to(white));
  background: -webkit-linear-gradient(bottom, #faf3e4 0%, #faf3e4 53%, white 100%);
  background: linear-gradient(0deg, #faf3e4 0%, #faf3e4 53%, white 100%);
  width: 100%;
  max-width: 1000px;
  padding-left: 16px;
  padding-right: 16px;
}

#main_visual .swiper_area {
  position: relative;
}

#main_visual .swiper_area .swiper .swiper-wrapper {
  margin-bottom: 60px;
}

#main_visual .swiper_area .swiper .swiper-wrapper .swiper-slide a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 313px;
  text-decoration: none;
}

#main_visual .swiper_area .swiper .swiper-wrapper .swiper-slide a img {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 14px;
  border-radius: 8px;
}

#main_visual .swiper_area .swiper .swiper-wrapper .swiper-slide a .text {
  font-size: 16px;
  color: #455367;
}

#main_visual .swiper_area .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: #db4c68;
}

#main_visual .swiper_area .swiper-button-prev,
#main_visual .swiper_area .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #455367;
  opacity: 0.8;
  top: 100px;
}

#main_visual .swiper_area .swiper-button-prev {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

#main_visual .swiper_area .swiper-button-next {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.mypage_enquetes {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mypage_enquetes .mypage_enquetes_inner {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 1px;
      -ms-flex: 1 0 1px;
          flex: 1 0 1px;
}

@media (max-width: 767px) {
  .mypage_enquetes {
    margin-bottom: 20px;
  }
  .mypage_enquetes .mypage_enquetes_inner {
    width: 100%;
    max-width: 100%;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    list-style: none;
    padding: 0;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc((100% - 12px) / 2);
        -ms-flex: 0 0 calc((100% - 12px) / 2);
            flex: 0 0 calc((100% - 12px) / 2);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete:hover {
    opacity: 0.8;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete:hover a {
    text-decoration: none;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete:hover.disabled {
    opacity: 1;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete .enquete_image {
    margin-bottom: 10px;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete .enquete_image img {
    max-width: 100%;
    position: relative;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete.disabled {
    cursor: default;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete.disabled a {
    pointer-events: none;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete.disabled a .enquete_image {
    position: relative;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete.disabled a .enquete_image:after {
    left: 0;
    top: 0;
    content: "応募済み";
    position: absolute;
    background-color: #00000088;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    color: #ffffff;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete .enquete_title {
    font-size: 13px;
    font-weight: bold;
    line-height: 20px;
    color: #455367;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete .enquete_limit {
    font-size: 12.1px;
    font-weight: normal;
    line-height: 20px;
    color: #db4c68;
  }
}

@media (min-width: 768px) {
  .mypage_enquetes {
    margin-bottom: 30px;
    padding: 0 10px;
  }
  .mypage_enquetes .mypage_enquetes_inner {
    width: 100%;
    max-width: 1000px;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    list-style: none;
    padding: 0;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc((100% - 40px) / 3);
        -ms-flex: 0 0 calc((100% - 40px) / 3);
            flex: 0 0 calc((100% - 40px) / 3);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 20px;
    margin-bottom: 40px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete:hover {
    opacity: 0.8;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete:hover a {
    text-decoration: none;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete:hover.disabled {
    opacity: 1;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete:nth-child(3n+1) {
    margin-left: 0;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete.disabled {
    cursor: default;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete.disabled a {
    pointer-events: none;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete.disabled a .enquete_image {
    position: relative;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete.disabled a .enquete_image:after {
    left: 0;
    top: 0;
    content: "応募済み";
    position: absolute;
    background-color: #00000088;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    color: #ffffff;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete .enquete_image {
    margin-bottom: 10px;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete .enquete_image img {
    max-width: 100%;
    position: relative;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete .enquete_title {
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    color: #455367;
  }
  .mypage_enquetes .mypage_enquetes_inner ul.enquetes_ul li.enquete .enquete_limit {
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    color: #db4c68;
  }
}

/**
 * my_page_box
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
}

@media (min-width: 768px) {
  .my_page_box {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .my_page_box .my_page_box_inner {
    -webkit-box-shadow: 1px 1px 8px #9e9e9e;
            box-shadow: 1px 1px 8px #9e9e9e;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 1px;
        -ms-flex: 1 0 1px;
            flex: 1 0 1px;
    position: relative;
    padding: 20px;
  }
  .my_page_box .my_page_box_inner .control_area {
    position: absolute;
    right: 15px;
    top: 15px;
  }
  .my_page_box .my_page_box_inner .control_area a {
    padding: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    text-decoration: unset;
  }
  .my_page_box .my_page_box_inner .control_area a::before {
    font-family: icomoon;
    content: "\e913";
    display: inline-block;
    font-size: 28px;
    color: #9e9e9e;
    text-align: center;
  }
  .my_page_box .my_page_box_inner .control_area a:hover {
    text-decoration: none;
    background-color: #e0e0e077;
  }
  .my_page_box .my_page_box_inner .control_area a span.text {
    text-align: center;
    color: #455367;
    font-size: 12.2px;
    font-weight: normal;
  }
  .my_page_box .my_page_box_inner .title_area {
    width: calc(100% - 180px);
    float: right;
  }
  .my_page_box .my_page_box_inner .title_area .user_name {
    line-height: 30px;
  }
  .my_page_box .my_page_box_inner .title_area .user_name .text {
    color: #eb99a9;
    font-size: 16px;
    font-weight: normal;
  }
  .my_page_box .my_page_box_inner .title_area .info_weeks .text {
    color: #455367;
    font-size: 16px;
    font-weight: normal;
  }
  .my_page_box .my_page_box_inner .title_area .info_weeks .number {
    color: #455367;
    font-size: 20px;
    font-weight: normal;
  }
  .my_page_box .my_page_box_inner .image_area {
    width: 180px;
    float: left;
  }
  .my_page_box .my_page_box_inner .image_area .baby_picture {
    overflow: hidden;
    text-align: center;
  }
  .my_page_box .my_page_box_inner .image_area .baby_picture img {
    max-width: 100%;
  }
  .my_page_box .my_page_box_inner .image_area .baby_picture img.pulse {
    animation: pulse 1s ease-out 0s infinite alternate-reverse both;
  }
  .my_page_box .my_page_box_inner .detail_area {
    width: calc((100% - 180px) / 2);
    float: left;
    padding-right: 10px;
  }
  .my_page_box .my_page_box_inner .detail_area .info_articles .text_1 {
    color: #455367;
    font-size: 12.2px;
    font-weight: normal;
    margin-bottom: 12px;
  }
  .my_page_box .my_page_box_inner .detail_area .info_articles .text_2 {
    color: #455367;
    font-size: 12.2px;
    font-weight: normal;
    border: 2px solid #faf3e4;
    text-align: center;
    border-radius: 2px;
    margin-bottom: 12px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .my_page_box .my_page_box_inner .detail_area .info_articles .text_2:hover {
    background-color: #faf3e4;
  }
  .my_page_box .my_page_box_inner .detail_area .info_articles .text_2 a {
    display: block;
  }
  .my_page_box .my_page_box_inner .detail_area .info_articles .text_2 a:hover {
    text-decoration: none;
    color: #455367;
  }
  .my_page_box .my_page_box_inner .detail_area .message {
    color: #455367;
    font-size: 12.2px;
    font-weight: normal;
    margin-bottom: 12px;
  }
  .my_page_box .my_page_box_inner .button_area {
    width: calc((100% - 180px) / 2);
    float: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0 0 10px;
  }
  .my_page_box .my_page_box_inner .button_area a {
    border: 1px solid #eb99a9;
    border-radius: 4px;
    height: 36px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    position: relative;
    text-decoration: unset;
  }
  .my_page_box .my_page_box_inner .button_area a:hover {
    text-decoration: none;
    background-color: #eb99a922;
  }
  .my_page_box .my_page_box_inner .button_area a span.text {
    color: #eb99a9;
    font-size: 13px;
  }
  .my_page_box .my_page_box_inner .button_area a span.more {
    color: #eb99a9;
    font-size: 13px;
    position: absolute;
    right: 16px;
  }
  .my_page_box .modal.cancel_dialog .modal_actions .parts_form {
    margin-left: 8px;
  }
  .my_page_box .modal.cancel_dialog .modal_actions .parts_form button {
    height: 36px;
  }
  .my_page_box .modal.cancel_dialog .modal_actions .parts_form button.loading {
    text-indent: 0vh;
  }
  .my_page_box.in_side_bar {
    margin-top: 20px;
  }
}

@media (min-width: 768px) and (max-width: 767px) {
  .my_page_box.in_side_bar {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .my_page_box.in_side_bar .my_page_box_inner {
    max-width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 10px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (min-width: 768px) and (max-width: 767px) {
  .my_page_box.in_side_bar .my_page_box_inner {
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media (min-width: 768px) {
  .my_page_box.in_side_bar .my_page_box_inner .control_area {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    right: 5px;
    top: 5px;
  }
}

@media (min-width: 768px) and (max-width: 767px) {
  .my_page_box.in_side_bar .my_page_box_inner .control_area {
    right: 0;
    top: 0;
  }
}

@media (min-width: 768px) {
  .my_page_box.in_side_bar .my_page_box_inner .title_area {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .my_page_box.in_side_bar .my_page_box_inner .title_area .user_name {
    width: calc(100% - 35px);
    min-height: 50px;
    text-align: center;
    line-height: 20px;
  }
}

@media (min-width: 768px) and (max-width: 767px) {
  .my_page_box.in_side_bar .my_page_box_inner .title_area .user_name {
    width: 100%;
    min-height: auto;
    line-height: 30px;
  }
}

@media (min-width: 768px) {
  .my_page_box.in_side_bar .my_page_box_inner .title_area .user_name .text {
    font-size: 14px;
    display: inline-block;
  }
  .my_page_box.in_side_bar .my_page_box_inner .title_area .info_weeks {
    text-align: center;
  }
  .my_page_box.in_side_bar .my_page_box_inner .title_area .info_weeks .text {
    font-size: 20px;
  }
  .my_page_box.in_side_bar .my_page_box_inner .title_area .info_weeks .number {
    font-size: 25px;
  }
  .my_page_box.in_side_bar .my_page_box_inner .image_area {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 40%;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .my_page_box.in_side_bar .my_page_box_inner .detail_area {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 60%;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .my_page_box.in_side_bar .my_page_box_inner .button_area {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .my_page_box {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 10px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .my_page_box .my_page_box_inner {
    -webkit-box-shadow: 1px 1px 8px #9e9e9e;
            box-shadow: 1px 1px 8px #9e9e9e;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 1px;
        -ms-flex: 1 0 1px;
            flex: 1 0 1px;
    position: relative;
    padding: 20px;
  }
  .my_page_box .my_page_box_inner .control_area {
    position: absolute;
    right: 15px;
    top: 15px;
  }
  .my_page_box .my_page_box_inner .control_area a {
    padding: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    text-decoration: unset;
  }
  .my_page_box .my_page_box_inner .control_area a::before {
    font-family: icomoon;
    content: "\e913";
    display: inline-block;
    font-size: 28px;
    color: #9e9e9e;
    text-align: center;
  }
  .my_page_box .my_page_box_inner .control_area a:hover {
    text-decoration: none;
    background-color: #e0e0e077;
  }
  .my_page_box .my_page_box_inner .control_area a span.text {
    text-align: center;
    color: #455367;
    font-size: 12.2px;
    font-weight: normal;
  }
  .my_page_box .my_page_box_inner .title_area {
    width: calc(100% - 180px);
    float: right;
  }
  .my_page_box .my_page_box_inner .title_area .user_name {
    line-height: 30px;
  }
  .my_page_box .my_page_box_inner .title_area .user_name .text {
    color: #eb99a9;
    font-size: 16px;
    font-weight: normal;
  }
  .my_page_box .my_page_box_inner .title_area .info_weeks .text {
    color: #455367;
    font-size: 16px;
    font-weight: normal;
  }
  .my_page_box .my_page_box_inner .title_area .info_weeks .number {
    color: #455367;
    font-size: 20px;
    font-weight: normal;
  }
  .my_page_box .my_page_box_inner .image_area {
    width: 180px;
    float: left;
  }
  .my_page_box .my_page_box_inner .image_area .baby_picture {
    overflow: hidden;
    text-align: center;
  }
  .my_page_box .my_page_box_inner .image_area .baby_picture img {
    max-width: 100%;
  }
  .my_page_box .my_page_box_inner .image_area .baby_picture img.pulse {
    animation: pulse 1s ease-out 0s infinite alternate-reverse both;
  }
  .my_page_box .my_page_box_inner .detail_area {
    width: calc((100% - 180px) / 2);
    float: left;
    padding-right: 10px;
  }
  .my_page_box .my_page_box_inner .detail_area .info_articles .text_1 {
    color: #455367;
    font-size: 12.2px;
    font-weight: normal;
    margin-bottom: 12px;
  }
  .my_page_box .my_page_box_inner .detail_area .info_articles .text_2 {
    color: #455367;
    font-size: 12.2px;
    font-weight: normal;
    border: 2px solid #faf3e4;
    text-align: center;
    border-radius: 2px;
    margin-bottom: 12px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .my_page_box .my_page_box_inner .detail_area .info_articles .text_2:hover {
    background-color: #faf3e4;
  }
  .my_page_box .my_page_box_inner .detail_area .info_articles .text_2 a {
    display: block;
  }
  .my_page_box .my_page_box_inner .detail_area .info_articles .text_2 a:hover {
    text-decoration: none;
    color: #455367;
  }
  .my_page_box .my_page_box_inner .detail_area .message {
    color: #455367;
    font-size: 12.2px;
    font-weight: normal;
    margin-bottom: 12px;
  }
  .my_page_box .my_page_box_inner .button_area {
    width: calc((100% - 180px) / 2);
    float: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0 0 10px;
  }
  .my_page_box .my_page_box_inner .button_area a {
    border: 1px solid #eb99a9;
    border-radius: 4px;
    height: 36px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    position: relative;
    text-decoration: unset;
  }
  .my_page_box .my_page_box_inner .button_area a:hover {
    text-decoration: none;
    background-color: #eb99a922;
  }
  .my_page_box .my_page_box_inner .button_area a span.text {
    color: #eb99a9;
    font-size: 13px;
  }
  .my_page_box .my_page_box_inner .button_area a span.more {
    color: #eb99a9;
    font-size: 13px;
    position: absolute;
    right: 16px;
  }
  .my_page_box .modal.cancel_dialog .modal_actions .parts_form {
    margin-left: 8px;
  }
  .my_page_box .modal.cancel_dialog .modal_actions .parts_form button {
    height: 36px;
  }
  .my_page_box .modal.cancel_dialog .modal_actions .parts_form button.loading {
    text-indent: 0vh;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .my_page_box {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .my_page_box .my_page_box_inner {
    max-width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 10px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .my_page_box .my_page_box_inner {
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media (max-width: 767px) {
  .my_page_box .my_page_box_inner .control_area {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    right: 5px;
    top: 5px;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .my_page_box .my_page_box_inner .control_area {
    right: 0;
    top: 0;
  }
}

@media (max-width: 767px) {
  .my_page_box .my_page_box_inner .title_area {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .my_page_box .my_page_box_inner .title_area .user_name {
    width: calc(100% - 35px);
    min-height: 50px;
    text-align: center;
    line-height: 20px;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .my_page_box .my_page_box_inner .title_area .user_name {
    width: 100%;
    min-height: auto;
    line-height: 30px;
  }
}

@media (max-width: 767px) {
  .my_page_box .my_page_box_inner .title_area .user_name .text {
    font-size: 14px;
    display: inline-block;
  }
  .my_page_box .my_page_box_inner .title_area .info_weeks {
    text-align: center;
  }
  .my_page_box .my_page_box_inner .title_area .info_weeks .text {
    font-size: 20px;
  }
  .my_page_box .my_page_box_inner .title_area .info_weeks .number {
    font-size: 25px;
  }
  .my_page_box .my_page_box_inner .image_area {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 40%;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .my_page_box .my_page_box_inner .detail_area {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 60%;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .my_page_box .my_page_box_inner .button_area {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0;
  }
}

/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
#rankings h2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0;
}

@media (max-width: 767px) {
  #rankings h2 {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    background-color: #eb99a9;
    padding: 0 20px;
    width: calc(100% + 40px);
    margin-left: -20px;
    height: 30px;
  }
  #rankings h2 .icon {
    color: #ffffff;
  }
  #rankings h2 .text {
    font-size: 15px;
    color: #ffffff;
    font-weight: normal;
  }
}

@media (min-width: 768px) {
  #rankings h2 {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-height: 56px;
  }
  #rankings h2 span.icon {
    font-size: 35px;
  }
  #rankings h2 .text {
    font-size: 20px;
    color: #455367;
    font-weight: bold;
  }
}

/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.regist_user_form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.regist_user_form .regist_user_form_inner {
  width: 100%;
}

.regist_user_form .regist_user_form_inner .application {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.regist_user_form .regist_user_form_inner .application:not(:first-of-type) {
  padding-top: 20px;
}

.regist_user_form .regist_user_form_inner .application:not(:last-of-type) {
  border-bottom: 1px dashed #9caab8;
  padding-bottom: 20px;
}

.regist_user_form .regist_user_form_inner .application .image {
  margin-right: 20px;
}

.regist_user_form .regist_user_form_inner .application .image img {
  max-width: none;
}

@media (min-width: 768px) {
  .regist_user_form .regist_user_form_inner .application .image img {
    width: 130px;
  }
}

@media (max-width: 767px) {
  .regist_user_form .regist_user_form_inner .application .image img {
    width: 70px;
  }
}

.regist_user_form .regist_user_form_inner .application .right_column {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 1px;
      -ms-flex: 1 0 1px;
          flex: 1 0 1px;
}

.regist_user_form .regist_user_form_inner .application .right_column .title {
  font-weight: bold;
  color: #455367;
  font-size: 18px;
}

/**
 * regist_user_with_present
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.regist_user_with_present {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.regist_user_with_present .regist_user_with_present_inner {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 1px;
      -ms-flex: 1 0 1px;
          flex: 1 0 1px;
}

.regist_user_with_present .regist_user_with_present_inner .present_bannar_img {
  width: 100%;
}

.regist_user_with_present .regist_user_with_present_inner p.title {
  font-weight: 700;
  font-size: 12px;
}

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

.regist_user_with_present .regist_user_with_present_inner .tab {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.regist_user_with_present .regist_user_with_present_inner .tab .tab-1 {
  display: block;
  background-color: #EA99A9;
  width: 50%;
  border-radius: 20px 20px 0 0;
  padding: 20px;
  position: relative;
}

.regist_user_with_present .regist_user_with_present_inner .tab .tab-1:hover {
  text-decoration: none;
}

.regist_user_with_present .regist_user_with_present_inner .tab .tab-1 picture.left {
  position: absolute;
  bottom: 0;
  right: 68px;
}

.regist_user_with_present .regist_user_with_present_inner .tab .tab-1 picture.right {
  position: absolute;
  bottom: 0;
  right: 20px;
}

.regist_user_with_present .regist_user_with_present_inner .tab .tab-2 {
  display: block;
  background-color: #AFA6A5;
  width: 50%;
  border-radius: 20px 20px 0 0;
  padding: 20px;
  position: relative;
}

.regist_user_with_present .regist_user_with_present_inner .tab .tab-2:hover {
  text-decoration: none;
}

.regist_user_with_present .regist_user_with_present_inner .tab .tab-2 picture.left {
  position: absolute;
  bottom: 0;
  right: 60px;
}

.regist_user_with_present .regist_user_with_present_inner .tab .tab-2 picture.right {
  position: absolute;
  bottom: 0;
  right: 20px;
}

.regist_user_with_present .regist_user_with_present_inner .tab .text {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

.regist_user_with_present .regist_user_with_present_inner .tab-inner {
  padding: 8px;
  border-radius: 0 0 10px 10px;
  margin-bottom: 20px;
}

.regist_user_with_present .regist_user_with_present_inner .tab-inner.tab-1 {
  background-color: #EA99A9;
}

.regist_user_with_present .regist_user_with_present_inner .tab-inner.tab-2 {
  background-color: #AFA6A5;
}

.regist_user_with_present .regist_user_with_present_inner .tab-inner .presents2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.regist_user_with_present .regist_user_with_present_inner .tab-inner .presents2 li {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(50% - 5px);
      -ms-flex: 0 0 calc(50% - 5px);
          flex: 0 0 calc(50% - 5px);
  background-color: #fff;
  margin-right: 10px;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.regist_user_with_present .regist_user_with_present_inner .tab-inner .presents2 li:nth-of-type(2n) {
  margin-right: 0;
}

.regist_user_with_present .regist_user_with_present_inner .tab-inner .presents2 li.checked {
  background-color: #faf3e4;
}

.regist_user_with_present .regist_user_with_present_inner .tab-inner .presents2 li .head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.regist_user_with_present .regist_user_with_present_inner .tab-inner .presents2 li .head input {
  display: none;
}

.regist_user_with_present .regist_user_with_present_inner .tab-inner .presents2 li .head .custom-style {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 22px;
      -ms-flex: 0 0 22px;
          flex: 0 0 22px;
}

.regist_user_with_present .regist_user_with_present_inner .tab-inner .presents2 li .head .custom-style:before {
  width: 22px;
  /* チェックボックスの幅 */
  height: 22px;
  /* チェックボックスの高さ */
  left: 0px;
  border: 1px solid #707070;
  /* チェックボックスの枠 */
  border-radius: 4px;
  margin-top: -16px;
}

.regist_user_with_present .regist_user_with_present_inner .tab-inner .presents2 li .head .custom-style:after,
.regist_user_with_present .regist_user_with_present_inner .tab-inner .presents2 li .head .custom-style:before {
  position: absolute;
  content: "";
  top: 16px;
  background-color: #fff;
}

.regist_user_with_present .regist_user_with_present_inner .tab-inner .presents2 li .head .custom-style::after {
  position: absolute;
  width: 8px;
  height: 18px;
  top: 17px;
  left: 7px;
  border-right: 4px solid #DB4C68;
  /* チェックマークの色 */
  border-bottom: 4px solid #DB4C68;
  /* チェックマークの色 */
  content: '';
  margin-top: -16px;
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.regist_user_with_present .regist_user_with_present_inner .tab-inner .presents2 li .head input:checked + .custom-style::after {
  opacity: 1;
}

.regist_user_with_present .regist_user_with_present_inner .tab-inner .presents2 li .head .item-title {
  font-weight: bold;
  display: block;
  font-size: 13px;
}

.regist_user_with_present .regist_user_with_present_inner .tab-inner .presents2 li .foot {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  white-space: nowrap;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.regist_user_with_present .regist_user_with_present_inner .tab-inner .presents2 li .foot .detail a {
  font-size: 12px;
}

.regist_user_with_present .regist_user_with_present_inner .modal.detail-present .head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.regist_user_with_present .regist_user_with_present_inner .modal.detail-present .head .num {
  background-color: #FBF3E1;
  width: 75px;
  height: 75px;
  max-width: 75px;
  max-height: 75px;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #465367;
  font-weight: bold;
  font-size: 13px;
}

.regist_user_with_present .regist_user_with_present_inner .modal.detail-present .head .names {
  color: #465367;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 1px;
      -ms-flex: 1 0 1px;
          flex: 1 0 1px;
  padding: 0 10px;
}

.regist_user_with_present .regist_user_with_present_inner .modal.detail-present .head .names .title {
  font-weight: bold;
  font-size: 13px;
}

.regist_user_with_present .regist_user_with_present_inner .modal.detail-present .head .close a:before {
  font-family: 'icomoon' !important;
  content: "\e903";
  display: inline-block;
  font-size: 18px;
}

.regist_user_with_present .regist_user_with_present_inner .modal.detail-present .image {
  background-image: url(/img/application_form/bg_star.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.regist_user_with_present .regist_user_with_present_inner .modal.detail-present .body p {
  font-weight: bold;
  font-size: 13px;
}

.regist_user_with_present .regist_user_with_present_inner h2 .parts_h2_inner {
  padding: 16px;
  background-color: #faf3e4;
  border-left: 8px solid #eb99a9;
}

.regist_user_with_present .regist_user_with_present_inner h2 .parts_h2_inner:before {
  border: none;
}

.regist_user_with_present .regist_user_with_present_inner h2 .parts_h2_inner:after {
  border: none;
}

.regist_user_with_present .regist_user_with_present_inner h2 .parts_h2_inner span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #faf3e4));
  background: -webkit-linear-gradient(transparent 60%, #faf3e4 60%);
  background: linear-gradient(transparent 60%, #faf3e4 60%);
}

.regist_user_with_present .regist_user_with_present_inner ul.presents {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.regist_user_with_present .regist_user_with_present_inner ul.presents li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #9caab8;
  border-radius: 4px;
  cursor: pointer;
}

.regist_user_with_present .regist_user_with_present_inner ul.presents li.checked {
  border-color: #db4c68;
  background-color: #eb99a944;
}

.regist_user_with_present .regist_user_with_present_inner ul.presents li a:hover {
  text-decoration: none;
}

.regist_user_with_present .regist_user_with_present_inner ul.presents li a .head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.regist_user_with_present .regist_user_with_present_inner ul.presents li a .head input {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 24px;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
}

.regist_user_with_present .regist_user_with_present_inner ul.presents li a .body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.regist_user_with_present .regist_user_with_present_inner ul.presents li a .body .left {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 30%;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
}

.regist_user_with_present .regist_user_with_present_inner ul.presents li a .body .left img {
  width: 186px;
  height: auto;
}

.regist_user_with_present .regist_user_with_present_inner ul.presents li a .body .right {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 1px;
      -ms-flex: 1 0 1px;
          flex: 1 0 1px;
  cursor: default;
}

.regist_user_with_present .regist_user_with_present_inner ul.presents li a .body .right .question {
  padding: 12px;
  background-color: #ffffff;
  border-radius: 4px;
}

.regist_user_with_present .regist_user_with_present_inner ul.presents li a .body .right .question ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  margin-bottom: 0;
  padding: 8px;
}

.regist_user_with_present .regist_user_with_present_inner ul.presents li a .body .right .question ul li input {
  margin: 0 12px 0 0;
  cursor: pointer;
  width: 12px;
  height: 12px;
}

.regist_user_with_present .regist_user_with_present_inner ul.presents li a .body .right .question ul li label {
  width: calc(100% - 24px);
  cursor: pointer;
}

.regist_user_with_present .regist_user_with_present_inner ul.presents li a .body .right .chip {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 32px;
  color: #455367;
  background-color: #faf3e4;
  padding: 0 12px;
  border-radius: 16px;
  font-size: 14px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.regist_user_with_present .regist_user_with_present_inner .btn_next {
  width: 100%;
  height: 52px;
  background-color: #db4c68;
  color: #ffffff;
  font-size: 16px;
  border-radius: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 1px 1px 8px #9e9e9e;
          box-shadow: 1px 1px 8px #9e9e9e;
}

@media (max-width: 767px) {
  .regist_user_with_present {
    margin-bottom: 20px;
  }
  .regist_user_with_present .regist_user_with_present_inner {
    width: 100%;
    max-width: 100%;
  }
  .regist_user_with_present .regist_user_with_present_inner .tab .tab-1 {
    padding: 14px;
    position: relative;
  }
  .regist_user_with_present .regist_user_with_present_inner .tab .tab-1 span.text {
    font-size: 4vw;
  }
  .regist_user_with_present .regist_user_with_present_inner .tab .tab-1 picture.left {
    position: absolute;
    bottom: -12px;
    right: 44px;
  }
  .regist_user_with_present .regist_user_with_present_inner .tab .tab-1 picture.left img {
    max-width: 8vw;
  }
  .regist_user_with_present .regist_user_with_present_inner .tab .tab-1 picture.right {
    position: absolute;
    bottom: -9px;
    right: 8px;
  }
  .regist_user_with_present .regist_user_with_present_inner .tab .tab-1 picture.right img {
    max-width: 8vw;
  }
  .regist_user_with_present .regist_user_with_present_inner .tab .tab-2 {
    padding: 14px;
    position: relative;
  }
  .regist_user_with_present .regist_user_with_present_inner .tab .tab-2 span.text {
    font-size: 4vw;
  }
  .regist_user_with_present .regist_user_with_present_inner .tab .tab-2 picture.left {
    position: absolute;
    bottom: -2px;
    right: 34px;
  }
  .regist_user_with_present .regist_user_with_present_inner .tab .tab-2 picture.left img {
    max-width: 8vw;
  }
  .regist_user_with_present .regist_user_with_present_inner .tab .tab-2 picture.right {
    position: absolute;
    bottom: -5px;
    right: 8px;
  }
  .regist_user_with_present .regist_user_with_present_inner .tab .tab-2 picture.right img {
    max-width: 8vw;
  }
  .regist_user_with_present .regist_user_with_present_inner .foot .maker img {
    width: 60%;
  }
  .regist_user_with_present .regist_user_with_present_inner h2 .parts_h2_inner {
    font-size: 15px;
  }
  .regist_user_with_present .regist_user_with_present_inner ul.presents li {
    padding: 12px;
    margin-bottom: 20px;
  }
  .regist_user_with_present .regist_user_with_present_inner ul.presents li a .head {
    line-height: 16px;
    margin-bottom: 20px;
  }
  .regist_user_with_present .regist_user_with_present_inner ul.presents li a .head .item-title {
    color: #455367;
    font-size: 14px;
    font-weight: bold;
  }
  .regist_user_with_present .regist_user_with_present_inner ul.presents li a .body {
    display: block;
  }
  .regist_user_with_present .regist_user_with_present_inner ul.presents li a .body .left {
    width: 50%;
    float: left;
    padding-right: 12px;
  }
  .regist_user_with_present .regist_user_with_present_inner ul.presents li a .body .right .maker {
    color: #455367;
    font-size: 12.5px;
    font-weight: normal;
    margin-bottom: 8px;
  }
  .regist_user_with_present .regist_user_with_present_inner ul.presents li a .body .right .description {
    color: #455367;
    font-size: 12.5px;
    font-weight: normal;
  }
  .regist_user_with_present .regist_user_with_present_inner ul.presents li a .body .right ul li input {
    width: 12px;
    height: 12px;
  }
}

@media (min-width: 768px) {
  .regist_user_with_present {
    margin-bottom: 30px;
    padding: 0 10px;
  }
  .regist_user_with_present .regist_user_with_present_inner {
    width: 100%;
    max-width: 1000px;
  }
  .regist_user_with_present .regist_user_with_present_inner ul.presents li {
    padding: 20px;
    margin-bottom: 20px;
  }
  .regist_user_with_present .regist_user_with_present_inner ul.presents li a .head {
    line-height: 16px;
    margin-bottom: 20px;
  }
  .regist_user_with_present .regist_user_with_present_inner ul.presents li a .head .item-title {
    color: #455367;
    font-size: 16px;
    font-weight: bold;
  }
  .regist_user_with_present .regist_user_with_present_inner ul.presents li a .body .left {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 30%;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    padding-right: 20px;
  }
  .regist_user_with_present .regist_user_with_present_inner ul.presents li a .body .right {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 1px;
        -ms-flex: 1 0 1px;
            flex: 1 0 1px;
  }
  .regist_user_with_present .regist_user_with_present_inner ul.presents li a .body .right .maker {
    color: #455367;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 8px;
  }
  .regist_user_with_present .regist_user_with_present_inner ul.presents li a .body .right .description {
    color: #455367;
    font-size: 10px;
    font-weight: normal;
  }
  .regist_user_with_present .foot .maker img {
    width: 50%;
  }
}

/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.parts_row_text {
  margin: 0 0 30px;
  padding: 0;
  width: 100%;
  max-width: 1000px;
  line-height: 26px;
}

@media (max-width: 767px) {
  .parts_row_text {
    padding: 0;
  }
}

.parts_row_text a {
  text-decoration: underline;
}

.parts_row_text a:link {
  color: #0000EE;
}

.parts_row_text a:visited {
  color: #551A8B;
}

.parts_row_text a:active {
  color: #FF0000;
}

/**
 * parts_category_eyecatch
 * pagination
 * 
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * mixins
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
/**
 * 変数
 *
 * @author Tsue Shogo
 * @since 2021-06-15
 */
.search_articles {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.search_articles .search_articles_inner {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 1px;
      -ms-flex: 1 0 1px;
          flex: 1 0 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 768px) {
  .search_articles .search_articles_inner .articles {
    display: block;
    width: 100%;
  }
  .search_articles .search_articles_inner .articles ul.article_list {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article {
    width: calc((100% - 2 * 20px) / 3);
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc((100% - 2 * 20px) / 3);
        -ms-flex: 0 0 calc((100% - 2 * 20px) / 3);
            flex: 0 0 calc((100% - 2 * 20px) / 3);
    margin-right: 20px;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article:nth-child(3n) {
    margin-right: 0;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a .icon_box {
    display: none;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a .image_area {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a .image_area picture {
    width: 100%;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a .image_area picture img {
    width: 100%;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a .info {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 8px;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a .info .date {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a .info .article_title {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 8px;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a .info .category {
    display: none;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a .info .author {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin-left: auto;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a .info .author .text {
    display: none;
  }
}

@media (max-width: 767px) {
  .search_articles .search_articles_inner .articles ul.article_list li.article {
    border-bottom: 1px solid #8c939c;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a .icon_box {
    display: none;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a .image_area {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    width: 100px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100px;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a .info {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 16px;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a .info .date {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-left: auto;
    margin-right: 8px;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a .info .article_title {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a .info .category {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a .info .author {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .search_articles .search_articles_inner .articles ul.article_list li.article a .info .author .text {
    display: none;
  }
}

@media (max-width: 767px) {
  .search_articles {
    margin-bottom: 20px;
  }
  .search_articles .search_articles_inner {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .search_articles {
    margin-bottom: 30px;
  }
  .search_articles .search_articles_inner {
    width: 100%;
    max-width: 1000px;
  }
}

nav ul.pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

nav ul.pagination li a {
  width: 32px;
  height: 32px;
  margin: 5px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  nav ul.pagination li a {
    margin: 5px 5px;
  }
}

nav ul.pagination li span {
  width: 32px;
  height: 32px;
  margin: 5px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  nav ul.pagination li span {
    margin: 5px 5px;
  }
}

nav ul.pagination li span.prev {
  color: #9e9e9e;
  border: 1px solid #9e9e9e;
  border-radius: 4px;
  padding: 4px 8px;
}

nav ul.pagination li span.prev:hover {
  text-decoration: none;
}

nav ul.pagination li a.prev {
  color: #eb99a9;
  border: 1px solid #eb99a9;
  border-radius: 4px;
  padding: 4px 8px;
}

nav ul.pagination li a.prev:hover {
  text-decoration: none;
  background-color: #eb99a9;
  color: #ffffff;
}

nav ul.pagination li a.page {
  color: #9e9e9e;
}

nav ul.pagination li a.page.current {
  color: #eb99a9;
}

nav ul.pagination li a.page:hover {
  text-decoration: none;
}

nav ul.pagination li a.next {
  color: #eb99a9;
  border: 1px solid #eb99a9;
  border-radius: 4px;
  padding: 4px 8px;
}

nav ul.pagination li a.next:hover {
  text-decoration: none;
  background-color: #eb99a9;
  color: #ffffff;
}

nav ul.pagination li span.next {
  color: #9e9e9e;
  border: 1px solid #9e9e9e;
  border-radius: 4px;
  padding: 4px 8px;
}

nav ul.pagination li span.next:hover {
  text-decoration: none;
}

@media (max-width: 767px) {
  nav ul.pagination .li-first, nav ul.pagination .li--3, nav ul.pagination .li-3, nav ul.pagination .li-last, nav ul.pagination .li-dots {
    display: none;
  }
}

/**
 * parts_speech_balloon
 *
 * @author Tsue Shogo
 * @since 2022-07-29
 */
.parts_speech_balloon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0;
  width: 100%;
}

.parts_speech_balloon .face {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.parts_speech_balloon .face.circle img {
  border-radius: 50%;
}

.parts_speech_balloon .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 1px;
      -ms-flex: 1 0 1px;
          flex: 1 0 1px;
  padding: 12px;
  border-radius: 8px;
}

.parts_speech_balloon .arrow {
  width: 18px;
  height: 12px;
  position: relative;
  top: 12px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.parts_speech_balloon.face_display-left .face {
  margin-right: 4px;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.parts_speech_balloon.face_display-left .arrow {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  border-left: 0 solid;
  border-right: 18px solid;
}

.parts_speech_balloon.face_display-left .text {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}

.parts_speech_balloon.face_display-right .face {
  margin-left: 4px;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}

.parts_speech_balloon.face_display-right .arrow {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  border-left: 18px solid;
  border-right: 0 solid;
}

.parts_speech_balloon.face_display-right .text {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
/*# sourceMappingURL=front.min.css.map */