@charset "UTF-8";
/* ***************************************************
　変数やmixinなどを定義するCSS
 *************************************************** */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
/* ***************************************************
　ヘッダー・フッターやページ全体のレイアウトに関するCSS
 *************************************************** */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
* {
  font-size: inherit;
  line-height: 1em;
  font-weight: normal;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
* i {
  color: inherit;
  font-size: inherit;
}
* strong,
* em {
  font-style: normal;
}

html {
  font-size: 16px;
  color: #222222;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media only screen and (min-width: 960px) {
  body {
    border-top: 4px solid #d50013;
  }
}
header {
  position: relative;
}
header section.logo {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}
header section.logo .siteid {
  flex: 1;
}
@media only screen and (min-width: 960px) {
  header section.logo .siteid {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 961px) {
  header section.logo .siteid {
    padding: 8px 20px;
  }
  header section.logo .siteid img {
    height: 37px;
  }
}
@media only screen and (min-width: 960px) {
  header section.logo div.tel {
    flex: 1;
    padding: 20px 0;
  }
}
@media only screen and (max-width: 961px) {
  header section.logo div.tel {
    display: none;
  }
}
header section.logo div.tel img {
  display: block;
  margin-left: auto;
}
@media only screen and (min-width: 960px) {
  header section.logo div.menu {
    display: none;
  }
}
@media only screen and (max-width: 961px) {
  header section.logo div.menu {
    z-index: 99999;
  }
  header section.logo div.menu a {
    display: block;
    width: 55px;
    height: 55px;
    background: #d50013;
    line-height: 1em;
    text-align: center;
    padding: 10px 0;
  }
  header section.logo div.menu a i {
    font-size: 30px;
    color: #fff;
  }
}
@media only screen and (min-width: 960px) {
  header .gnav {
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
  }
}
@media only screen and (max-width: 961px) {
  header .gnav {
    display: none;
    width: 80%;
    position: fixed;
    z-index: 9999;
    right: 0;
    top: 0;
  }
}
@media only screen and (min-width: 960px) {
  header .gnav ul {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    border-left: 1px solid #eeeeee;
  }
}
@media only screen and (max-width: 961px) {
  header .gnav ul {
    display: block;
    background: #d50013;
    height: 100vh;
  }
}
header .gnav ul li {
  display: block;
}
@media only screen and (min-width: 960px) {
  header .gnav ul li {
    display: flex;
    align-items: center;
    height: 60px; /* 必要な高さに調整してください */
    flex: 1;
  }
}
@media only screen and (max-width: 961px) {
  header .gnav ul li {
    border-bottom: 1px solid #e28991;
  }
}
header .gnav ul li a {
  display: block;
  width: 100%;
  text-decoration: none;
}
@media only screen and (min-width: 960px) {
  header .gnav ul li a {
    color: #222222;
    text-align: center;
    line-height: 1.3em;
    flex: 1; /* インライン要素の幅を均等に分配 */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* テキストを縦方向に配置 */
    height: 100%; /* 親要素（li）の高さに合わせて高さを100%に設定 */
  }
}
@media only screen and (max-width: 961px) {
  header .gnav ul li a {
    text-align: left;
    padding: 18px 25px;
    color: #fff;
  }
}
header .gnav ul li a:hover {
  background: #d50013;
  color: #fff;
}

section.contact_link {
  position: fixed;
  right: 1rem;
  top: 0;
  z-index: 9999;
}
section.contact_link.admin_show {
  top: 32px;
}
@media only screen and (max-width: 961px) {
  section.contact_link {
    display: none;
  }
}
section.contact_link ul {
  display: block;
}
section.contact_link ul li {
  display: block;
}
section.contact_link ul li:nth-of-type(1) a {
  color: #fff;
  background: #d50013;
}
section.contact_link ul li:nth-of-type(2) a {
  color: #d50013;
  background: #fff;
}
section.contact_link ul li:nth-of-type(3) a {
  color: #d50013;
  background: #fff;
}
section.contact_link ul li a {
  border: 1px solid #d50013;
  display: block;
  padding: 1rem 12px 0.5rem;
  text-decoration: none;
  letter-spacing: 0.5rem;
  font-size: 1.2rem;
  -webkit-writing-mode: vertical-rl; /* 縦書きにする */
  -ms-writing-mode: tb-rl; /* 縦書きにする */
  writing-mode: vertical-rl; /* 縦書きにする */
}

footer {
  position: relative;
  background: #f4f4f4;
}
@media only screen and (min-width: 960px) {
  footer {
    padding: 30px 0 180px;
  }
}
@media only screen and (max-width: 961px) {
  footer {
    padding: 50px 20px;
  }
}
footer section.footer {
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (min-width: 960px) {
  footer section.footer {
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 960px) {
  footer section.footer div.logo {
    flex: 1;
  }
}
footer section.footer div.logo p {
  font-size: 14px;
  color: #707070;
}
footer section.footer div.logo p img {
  display: block;
}
@media only screen and (min-width: 960px) {
  footer section.footer div.logo p.logo img {
    width: 60%;
  }
}
@media only screen and (max-width: 961px) {
  footer section.footer div.logo p.logo img {
    width: 50%;
  }
}
footer section.footer div.logo p.tel {
  margin-top: 5px;
}
footer section.footer div.logo p.tel img {
  width: 80%;
}
footer section.footer div.logo p.address {
  margin-top: 5px;
}
@media only screen and (min-width: 960px) {
  footer section.footer nav {
    flex: 2;
  }
}
@media only screen and (max-width: 961px) {
  footer section.footer nav {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 960px) {
  footer section.footer nav ul {
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 961px) {
  footer section.footer nav ul {
    display: block;
  }
}
footer section.footer nav ul li {
  display: block;
}
@media only screen and (min-width: 960px) {
  footer section.footer nav ul li {
    margin-bottom: 20px;
    width: 33%;
  }
}
footer section.footer nav ul li a {
  font-size: 14px;
  color: #848484;
  text-decoration: none;
}
@media only screen and (max-width: 961px) {
  footer section.footer nav ul li a {
    display: block;
    padding: 15px 0;
  }
}
footer section.footer nav ul li a i {
  font-size: 14px;
  margin-right: 5px;
}
footer section.footer div.copyright {
  width: 100%;
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
  color: #707070;
}

div#content {
  overflow-x: hidden;
}
div#content span.under_border {
  display: block;
  width: 100%;
  position: relative;
  border-top: 5px solid #d50013;
}
@media only screen and (min-width: 960px) {
  div#content span.under_border {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 961px) {
  div#content span.under_border {
    margin-top: 10px;
  }
}
div#content span.under_border:after {
  display: block;
  content: " ";
  border-right: 5px solid #d50013;
  border-bottom: 5px solid #d50013;
  transform: rotate(45deg) translate(-50%, 0);
  background: #fff;
  position: absolute;
  left: 50%;
}
@media only screen and (min-width: 960px) {
  div#content span.under_border:after {
    bottom: 7px;
    height: 30px;
    width: 30px;
  }
}
@media only screen and (max-width: 961px) {
  div#content span.under_border:after {
    bottom: 4px;
    height: 20px;
    width: 20px;
  }
}
div#content .musashi_title {
  margin-top: 30px;
}
div#content .musashi_title strong {
  width: 100%;
  text-align: center;
  display: inline-block;
}
@media only screen and (max-width: 961px) {
  div#content .musashi_title strong {
    margin-bottom: 10px;
  }
}
div#content .musashi_title strong em {
  display: inline-block;
  text-align: center;
  color: #d50013;
  font-weight: bold;
}
@media only screen and (min-width: 960px) {
  div#content .musashi_title strong em {
    font-size: 30px;
    max-width: 40%;
    margin: 0 15px;
  }
}
@media only screen and (max-width: 961px) {
  div#content .musashi_title strong em {
    font-size: 1rem;
    margin: 0 10px;
  }
}
div#content .musashi_title strong em span {
  display: block;
  width: 100%;
  position: relative;
  border-top: 5px solid #d50013;
}
@media only screen and (min-width: 960px) {
  div#content .musashi_title strong em span {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 961px) {
  div#content .musashi_title strong em span {
    margin-top: 10px;
  }
}
div#content .musashi_title strong em span:after {
  display: block;
  content: " ";
  border-right: 5px solid #d50013;
  border-bottom: 5px solid #d50013;
  transform: rotate(45deg) translate(-50%, 0);
  background: #fff;
  position: absolute;
  left: 50%;
}
@media only screen and (min-width: 960px) {
  div#content .musashi_title strong em span:after {
    height: 30px;
    width: 30px;
    bottom: 6px;
  }
}
@media only screen and (max-width: 961px) {
  div#content .musashi_title strong em span:after {
    height: 20px;
    width: 20px;
    bottom: 0;
  }
}
div#content .musashi_title strong:before, div#content .musashi_title strong:after {
  content: " ";
  background-size: contain;
  display: inline-block;
}
@media only screen and (min-width: 960px) {
  div#content .musashi_title strong:before, div#content .musashi_title strong:after {
    width: 94px;
    height: 94px;
  }
}
@media only screen and (max-width: 961px) {
  div#content .musashi_title strong:before, div#content .musashi_title strong:after {
    width: 40px;
    height: 40px;
  }
}
div#content .musashi_title strong:before {
  background-image: url(../images/common/musashititle_left.png);
}
div#content .musashi_title strong:after {
  background-image: url(../images/common/musashititle_right.png);
}
div#content .movie_wrap {
  margin: 50px auto;
  width: 80%; /* ここに動画の横幅を指定 */
}
div#content .movie_wrap .movie {
  position: relative;
  width: 100%; /* 横幅は100%で固定 */
  height: 0; /* 高さは0にしておく(padding-topで高さを指定するため) */
  padding-top: 56.25%; /* 高さを指定(16:9) */
}
div#content .movie_wrap .movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
div#content .imagelist_wrap {
  margin: 0 auto;
}
div#content .imagelist_wrap .imageitem {
  margin: 20px 0;
}
@media only screen and (min-width: 960px) {
  div#content .imagelist_wrap .imageitem p {
    height: 400px;
  }
}
@media only screen and (max-width: 961px) {
  div#content .imagelist_wrap .imageitem p {
    height: 300px;
  }
}
div#content .imagelist_wrap .imageitem p img {
  display: block;
  object-fit: contain;
  height: 100%;
  width: 100%;
}
div#content .image_list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}
div#content .image_list li {
  display: block;
  margin-right: 10px;
  width: 150px;
  height: 150px;
  background: #f0f0f0;
  margin-bottom: 10px;
}
div#content .image_list li img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (min-width: 1200px) {
  div#content .button.center_button {
    padding-top: 30px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  div#content .button.center_button {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 961px) {
  div#content .button.center_button {
    padding-top: 20px;
  }
}
div#content .button.center_button p {
  text-align: center;
}
div#content .button.fullsize_button p a {
  text-align: center;
  display: block;
  padding: 10px 0;
}
div#content .button.flex_button {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
}
div#content .button.flex_button p {
  flex: 1;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  div#content .button.flex_button p:first-of-type {
    text-align: left;
  }
  div#content .button.flex_button p:last-of-type {
    text-align: right;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  div#content .button.flex_button p:first-of-type {
    text-align: left;
  }
  div#content .button.flex_button p:last-of-type {
    text-align: right;
  }
}
@media only screen and (max-width: 961px) {
  div#content .button.flex_button p i {
    display: none;
  }
}
@media only screen and (min-width: 960px) {
  div#content .button.large_button p a {
    padding: 20px 60px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 961px) {
  div#content .button.large_button p a {
    padding: 20px;
    font-size: 20px;
  }
}
div#content .button p a {
  border: 1px solid #d50013;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #d50013;
  background-color: #fff;
}
@media only screen and (min-width: 960px) {
  div#content .button p a {
    padding: 10px 60px;
    display: inline-block;
  }
}
@media only screen and (max-width: 961px) {
  div#content .button p a {
    display: block;
    padding: 10px 5px;
    margin: 0 5px;
  }
}
div#content .button p a:hover {
  background: #d50013;
  color: #fff;
}
div#content .button p a i {
  display: inline-block;
}
@media only screen and (min-width: 1200px) {
  div#content .button p a i {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  div#content .button p a i {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media only screen and (max-width: 961px) {
  div#content .button p a i {
    margin-right: 5px;
    margin-left: 5px;
  }
}
div#content .footerbanner {
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (min-width: 960px) {
  div#content .footerbanner {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 961px) {
  div#content .footerbanner {
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 960px) {
  .sp_bottom_nav {
    display: none;
  }
}
@media only screen and (max-width: 961px) {
  .sp_bottom_nav {
    width: 100%;
    z-index: 100;
    background-color: #fff;
    border-top: 3px solid #d50013;
    position: fixed;
    bottom: 0;
    left: 0;
  }
}
@media only screen and (max-width: 961px) {
  .sp_bottom_nav ul {
    display: flex;
    justify-content: space-evenly;
    margin: 0;
    padding: 15px 0;
    list-style-type: none;
  }
}
@media only screen and (max-width: 961px) {
  .sp_bottom_nav ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 23%;
    /*
            1. ラベンダー（#D7BDE2）・ ミント（#ABEBC6）・ ペールピンク（#FADBD8） ・ ペールイエロー（#F9E79F）
            2. ペパーミントグリーン（#A3E4D7）・ ペールブルー（#85C1E9）・ ローズ（#F1948A） ・ ライトオレンジ（#F5CBA7）
            3. ソフトグリーン（#82E0AA） ・ ライトパープル（#D2B4DE）・ ペールピンク（#FADBD8） ・ イエロー（#F7DC6F）
            4. ルビーレッド（#E74C3C） ・ オリーブグリーン（#7DCEA0） ・ ペールターコイズ（#AED6F1） ・ ペールイエロー（#F9E79F）
    */
    /*
            $color_1: #d7bde2;
            $color_2: #abebc6;
            $color_3: #fadbd8;
            $color_4: #f9e79f;
    */
  }
  .sp_bottom_nav ul li:nth-of-type(1) a {
    background: #f44336;
  }
  .sp_bottom_nav ul li:nth-of-type(2) a {
    background: #00bcd4;
  }
  .sp_bottom_nav ul li:nth-of-type(3) a {
    background: #e91e63;
  }
  .sp_bottom_nav ul li:nth-of-type(4) a {
    background: #8bc34a;
  }
}
.sp_bottom_nav ul li a {
  display: block;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  text-decoration: none;
  border-bottom: 2px solid #909090;
  border-right: 2px solid #909090;
  border-radius: 3px;
  line-height: 1em;
  font-size: 12px;
}
.sp_bottom_nav ul li a span {
  line-height: 1em;
  font-size: 12px;
  color: #fff;
  font-weight: bold;
}

.kengaku_caution {
  margin-top: 20px;
  padding: 20px;
  background: #f0f0f0;
}
.kengaku_caution p {
  font-size: 16px;
  line-height: 1.5em;
}
.kengaku_caution p.desc {
  font-size: 20px;
}
.kengaku_caution p.desc span {
  font-weight: bold;
  text-decoration: underline;
}
.kengaku_caution p.red {
  color: #f00;
}

.plan_top_wrap .plan_top .fukidasi {
  position: relative;
}
.plan_top_wrap .plan_top .fukidasi .text {
  position: relative;
  z-index: 1;
  max-width: 95vw;
  border-radius: 5px;
  background: #1b2880;
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  padding: 15px 0;
  margin: 0 auto;
}
.plan_top_wrap .plan_top .fukidasi .koma {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  background: #1b2880;
  text-indent: -9999px;
  transform: translate(0, -50%) rotate(45deg);
}
.plan_top_wrap .plan_top .plan_top_detail {
  margin-bottom: 20px;
}
.plan_top_wrap .plan_top .plan_top_detail p {
  text-align: center;
  line-height: 1.5em;
}

/* ***************************************************
　変数やmixinなどを定義するCSS
 *************************************************** */
/* ***************************************************
　個別ページのスタイルを記述するCSS
 *************************************************** */
h1 {
  font-size: 1.5rem;
}

.slick_slider_wrap {
  overflow-x: hidden;
}
@media only screen and (min-width: 960px) {
  .slick_slider_wrap {
    min-width: 1000px;
  }
}
@media only screen and (max-width: 961px) {
  .slick_slider_wrap {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 960px) {
  .slick_slider_wrap .slick-slide {
    padding: 0 10px;
  }
}
.slick_slider_wrap .slick-slide img {
  width: 100%;
}
.slick_slider_wrap .slick-prev:before,
.slick_slider_wrap .slick-next:before {
  color: #fff;
}
.slick_slider_wrap .slick-prev {
  z-index: 1;
}
@media only screen and (min-width: 960px) {
  .slick_slider_wrap .slick-prev {
    left: calc((100% - 1000px) / 2);
  }
}
@media only screen and (max-width: 961px) {
  .slick_slider_wrap .slick-prev {
    left: 5px;
  }
}
.slick_slider_wrap .slick-next {
  z-index: 1;
}
@media only screen and (min-width: 960px) {
  .slick_slider_wrap .slick-next {
    right: calc((100% - 1000px) / 2);
  }
}
@media only screen and (max-width: 961px) {
  .slick_slider_wrap .slick-next {
    right: 5px;
  }
}

.events_wrap {
  background: url(../images/top/top_event_bg.jpg);
  background-repeat: no-repeat;
  position: relative;
}
@media only screen and (min-width: 960px) {
  .events_wrap {
    background-size: cover;
    margin-top: 30px;
  }
}
.events_wrap .events {
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (min-width: 960px) {
  .events_wrap .events {
    padding: 70px 0 70px;
  }
}
@media only screen and (max-width: 961px) {
  .events_wrap .events {
    padding: 70px 0 30px;
  }
}
.events_wrap .events h2 {
  margin: 30px auto;
  text-align: center;
  font-weight: bold;
  color: #d50013;
}
@media only screen and (min-width: 960px) {
  .events_wrap .events h2 {
    font-size: 32px;
    width: 280px;
  }
}
@media only screen and (max-width: 961px) {
  .events_wrap .events h2 {
    font-size: 20px;
    width: 200px;
  }
}
.events_wrap .events .event_wrap {
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (min-width: 960px) {
  .events_wrap .events .event_wrap {
    display: flex;
  }
}
@media only screen and (max-width: 961px) {
  .events_wrap .events .event_wrap {
    margin: 0 20px;
    display: block;
  }
}
.events_wrap .events .event_wrap div.event {
  background-color: #fff;
}
@media only screen and (min-width: 960px) {
  .events_wrap .events .event_wrap div.event {
    width: 48%;
  }
  .events_wrap .events .event_wrap div.event:nth-of-type(2n + 1) {
    margin-right: 1%;
  }
  .events_wrap .events .event_wrap div.event:nth-of-type(2n + 2) {
    margin-left: 1%;
  }
}
@media only screen and (max-width: 961px) {
  .events_wrap .events .event_wrap div.event {
    border-radius: 6px 6px 0 0;
    border: 1px solid rgba(213, 0, 13, 0.8);
    border-top: none;
    margin-bottom: 10px;
  }
}
.events_wrap .events .event_wrap div.event h3 {
  border-radius: 6px 6px 0 0;
  background: rgba(213, 0, 13, 0.8);
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
.events_wrap .events .event_wrap div.event .thumb {
  height: 320px;
  width: 100%;
  background: #f0f0f0;
}
.events_wrap .events .event_wrap div.event .thumb img {
  margin: 0 auto;
  object-fit: contain;
  height: 100%;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .events_wrap .events .event_wrap div.event .detail {
    padding: 30px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .events_wrap .events .event_wrap div.event .detail {
    padding: 20px 10px;
  }
}
@media only screen and (max-width: 961px) {
  .events_wrap .events .event_wrap div.event .detail {
    padding: 20px 10px;
  }
}
.events_wrap .events .event_wrap div.event .detail h4 {
  position: relative;
  color: #d50013;
  font-weight: bold;
}
@media only screen and (min-width: 960px) {
  .events_wrap .events .event_wrap div.event .detail h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 961px) {
  .events_wrap .events .event_wrap div.event .detail h4 {
    font-size: 20px;
  }
}
.events_wrap .events .event_wrap div.event .detail h4:before {
  position: absolute;
  display: block;
  content: " ";
  border-top: 5px solid #d50013;
}
@media only screen and (min-width: 960px) {
  .events_wrap .events .event_wrap div.event .detail h4:before {
    top: 10px;
    left: -50px;
    width: 37px;
  }
}
@media only screen and (max-width: 961px) {
  .events_wrap .events .event_wrap div.event .detail h4:before {
    display: none;
    top: 8px;
    left: -40px;
    width: 24px;
  }
}
.events_wrap .events .event_wrap div.event .detail ul {
  display: block;
}
@media only screen and (max-width: 961px) {
  .events_wrap .events .event_wrap div.event .detail ul {
    padding-top: 10px;
  }
}
.events_wrap .events .event_wrap div.event .detail ul li {
  margin-top: 1rem;
  line-height: 1.6rem;
  display: block;
}
@media only screen and (max-width: 961px) {
  .events_wrap .events .event_wrap div.event .detail ul li {
    font-size: 0.9rem;
    line-height: 1.2rem;
    padding-bottom: 20px;
    border-bottom: 1px solid #d0d0d0;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .events_wrap .events .event_wrap div.event .detail ul li span {
    display: inline-block;
    margin-right: 1rem;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .events_wrap .events .event_wrap div.event .detail ul li span {
    display: inline-block;
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 961px) {
  .events_wrap .events .event_wrap div.event .detail ul li span {
    display: block;
    font-weight: bold;
    color: #d50013;
    font-size: 0.9rem;
    line-height: 1.2rem;
    margin-bottom: 5px;
  }
}
.events_wrap .events .event_wrap div.event .detail .body_content {
  line-height: 1.5em;
}
.events_wrap .events .event_wrap div.event .detail .body_content * {
  line-height: 1.5em;
}
.events_wrap .events .event_wrap div.event .detail .googlemap {
  margin-top: 30px;
}
.events_wrap .events .event_wrap div.event .detail .googlemap iframe {
  width: 100%;
  height: 240px;
}
.events_wrap .events .event_wrap div.event .detail .banner {
  margin-top: 30px;
}
.events_wrap .events .event_wrap div.event .detail .banner img {
  width: 100%;
}
.events_wrap .event_cracker {
  position: absolute;
  width: 10%;
}
@media only screen and (min-width: 1200px) {
  .events_wrap .event_cracker {
    top: 50px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .events_wrap .event_cracker {
    top: 40px;
  }
}
@media only screen and (max-width: 961px) {
  .events_wrap .event_cracker {
    display: none;
  }
}
.events_wrap .event_cracker.left {
  left: -10px;
}
.events_wrap .event_cracker.right {
  right: -10px;
}
.events_wrap .event_cracker img {
  display: block;
  width: 100%;
}

@media only screen and (min-width: 960px) {
  .pickups {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 961px) {
  .pickups {
    padding: 0 0 30px;
  }
}
.pickups h2 {
  margin: 30px 0 0;
  text-align: center;
}
.pickups .pickup_wrap {
  background: #f0f0f0;
}
@media only screen and (min-width: 960px) {
  .pickups .pickup_wrap {
    padding: 80px 0 30px;
  }
}
@media only screen and (max-width: 961px) {
  .pickups .pickup_wrap {
    padding: 5px;
  }
}
.pickups .pickup_wrap .pickup_items {
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (min-width: 960px) {
  .pickups .pickup_wrap .pickup_items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 961px) {
  .pickups .pickup_wrap .pickup_items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 960px) {
  .pickups .pickup_wrap .pickup_items div.pickup {
    width: 24%;
  }
}
@media only screen and (max-width: 961px) {
  .pickups .pickup_wrap .pickup_items div.pickup {
    width: 33%;
  }
  .pickups .pickup_wrap .pickup_items div.pickup:nth-of-type(n + 4) {
    display: none;
  }
}
.pickups .pickup_wrap .pickup_items div.pickup a {
  display: block;
  text-decoration: none;
}
@media only screen and (max-width: 961px) {
  .pickups .pickup_wrap .pickup_items div.pickup a {
    display: flex;
    background: #fff;
    margin-bottom: 1px;
  }
}
.pickups .pickup_wrap .pickup_items div.pickup a p.img {
  background: #f0f0f0;
}
@media only screen and (min-width: 960px) {
  .pickups .pickup_wrap .pickup_items div.pickup a p.img {
    height: 140px;
    width: 100%;
  }
}
@media only screen and (max-width: 961px) {
  .pickups .pickup_wrap .pickup_items div.pickup a p.img {
    height: 80px;
    width: 100%;
  }
}
.pickups .pickup_wrap .pickup_items div.pickup a p.img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pickups .pickup_wrap .pickup_items div.pickup a p.text {
  width: 100%;
  padding: 20px;
  background: #fff;
  color: #d50013;
}
@media only screen and (max-width: 961px) {
  .pickups .pickup_wrap .pickup_items div.pickup a p.text {
    display: none;
  }
}
.pickups .pickup_wrap .pickup_items div.pickup a p.text i {
  float: right;
  margin-left: auto;
  color: #dbdbdb;
}
@media only screen and (min-width: 960px) {
  .pickups .pickup_wrap .pickup_items div.pickup a p.text i {
    font-size: 18px;
  }
}
@media only screen and (max-width: 961px) {
  .pickups .pickup_wrap .pickup_items div.pickup a p.text i {
    font-size: 22px;
  }
}

.menus {
  max-width: 1000px;
  margin: 0 auto;
}
.menus h2 {
  margin: 30px 0;
  text-align: center;
}
@media only screen and (min-width: 960px) {
  .menus .menu_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 961px) {
  .menus .menu_wrap {
    width: 90%;
    margin: 0 auto;
    justify-content: space-evenly;
  }
}
.menus .menu_wrap div.menu {
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid #e3e3e3;
}
@media only screen and (min-width: 960px) {
  .menus .menu_wrap div.menu {
    width: 30%;
  }
}
@media only screen and (max-width: 961px) {
  .menus .menu_wrap div.menu {
    width: 100%;
  }
}
.menus .menu_wrap div.menu.ads {
  padding: 0;
  border: none;
}
.menus .menu_wrap div.menu.ads img {
  width: 100%;
}
.menus .menu_wrap div.menu a {
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  display: block;
}
.menus .menu_wrap div.menu a p.title {
  width: 100%;
  color: #d50013;
  font-size: 17px;
  font-weight: bold;
}
.menus .menu_wrap div.menu a p.title i {
  display: inline-block;
  font-size: 18px;
  margin-right: 10px;
}
.menus .menu_wrap div.menu a p.img {
  width: 100%;
  margin-top: 20px;
}
.menus .menu_wrap div.menu a p.img img {
  display: block;
  width: 100%;
}
.menus .menu_wrap div.menu a .text {
  margin-top: 20px;
  width: 90%;
}
.menus .menu_wrap div.menu a .text .subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #2c2c2c;
}
.menus .menu_wrap div.menu a .text .desc {
  margin-top: 15px;
  color: #adadad;
}
.menus .menu_wrap div.menu a .angle {
  width: 10%;
  margin-top: 25px;
  text-align: right;
}
.menus .menu_wrap div.menu a .angle i {
  display: block;
  font-size: 24px;
  color: #dbdbdb;
}

.subpage_title {
  background: #f0f0f0;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 960px) {
  .subpage_title {
    height: 300px;
  }
}
@media only screen and (max-width: 961px) {
  .subpage_title {
    height: 130px;
  }
}
.subpage_title h1,
.subpage_title h2 {
  color: #d50013;
  margin: 0 auto;
}
@media only screen and (min-width: 960px) {
  .subpage_title h1,
  .subpage_title h2 {
    width: 1000px;
  }
}
@media only screen and (max-width: 961px) {
  .subpage_title h1,
  .subpage_title h2 {
    width: 90%;
  }
}
.subpage_title h1 span,
.subpage_title h2 span {
  display: block;
  margin-bottom: 10px;
}
.subpage_title h1 span.eng,
.subpage_title h2 span.eng {
  color: #bfbfbf;
  font-size: 18px;
  font-weight: bold;
}
.subpage_title h1 span.jp,
.subpage_title h2 span.jp {
  color: #d50013;
  font-weight: bold;
  letter-spacing: 0.036em;
}
@media only screen and (max-width: 961px) {
  .subpage_title h1 span.jp,
  .subpage_title h2 span.jp {
    font-size: 24px;
  }
}
@media only screen and (min-width: 960px) {
  .subpage_title h1 span.jp,
  .subpage_title h2 span.jp {
    font-size: 42px;
  }
}

.archive_pagelink {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  margin-top: 20px;
}
.archive_pagelink p {
  flex: 1;
}
.archive_pagelink p:last-of-type {
  text-align: right;
}
.archive_pagelink p a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #d50013;
  color: #d50013;
  text-decoration: none;
}
.archive_pagelink p a:hover {
  color: #fff;
  background: #d50013;
}

.event_end_caution {
  padding: 15px;
  background: #d50013;
  margin-bottom: 20px;
}
.event_end_caution p {
  color: #fff;
  font-weight: bold;
}

.table_wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.table_wrap .table.table_01 {
  width: 100%;
  border-collapse: collapse;
}
.table_wrap .table.table_01 tr {
  border-bottom: 1px solid #434343;
  display: table-row;
}
.table_wrap .table.table_01 tr th,
.table_wrap .table.table_01 tr td {
  text-align: left;
}
@media only screen and (min-width: 960px) {
  .table_wrap .table.table_01 tr th,
  .table_wrap .table.table_01 tr td {
    font-size: 20px;
    font-weight: bold;
    padding: 25px 1rem 25px 1rem;
  }
}
@media only screen and (max-width: 961px) {
  .table_wrap .table.table_01 tr th,
  .table_wrap .table.table_01 tr td {
    font-size: 16px;
    display: block;
    padding: 0 1rem;
  }
}
.table_wrap .table.table_01 tr th img,
.table_wrap .table.table_01 tr th iframe,
.table_wrap .table.table_01 tr td img,
.table_wrap .table.table_01 tr td iframe {
  width: 100%;
  margin-top: 20px;
  display: block;
}
.table_wrap .table.table_01 tr th {
  color: #d50013;
  white-space: nowrap;
  margin: 1rem 0;
}
.table_wrap .table.table_01 tr td {
  color: #707070;
  margin: 0.5rem 0 1rem;
  line-height: 1.5rem;
}
.table_wrap .table.table_02 {
  margin-top: 50px;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  .table_wrap .table.table_02 {
    table-layout: fixed;
    border-collapse: collapse;
  }
}
@media only screen and (max-width: 961px) {
  .table_wrap .table.table_02 {
    display: block;
  }
}
@media only screen and (max-width: 961px) {
  .table_wrap .table.table_02 tbody {
    display: block;
  }
}
@media only screen and (max-width: 961px) {
  .table_wrap .table.table_02 tbody tr {
    display: block;
  }
}
.table_wrap .table.table_02 tbody tr th,
.table_wrap .table.table_02 tbody tr td {
  text-align: left;
  line-height: 1.5em;
}
@media only screen and (min-width: 960px) {
  .table_wrap .table.table_02 tbody tr th,
  .table_wrap .table.table_02 tbody tr td {
    border-bottom: 1px solid #c1c1c1;
    padding: 20px 15px;
  }
}
@media only screen and (max-width: 961px) {
  .table_wrap .table.table_02 tbody tr th,
  .table_wrap .table.table_02 tbody tr td {
    display: block;
    padding: 15px;
    box-sizing: border-box;
  }
}
.table_wrap .table.table_02 tbody tr th {
  vertical-align: top;
}
@media only screen and (min-width: 960px) {
  .table_wrap .table.table_02 tbody tr th {
    width: 40%;
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 961px) {
  .table_wrap .table.table_02 tbody tr th {
    font-size: 1rem;
    padding: 15px 15px 0;
  }
}
.table_wrap .table.table_02 tbody tr td {
  font-size: 1rem;
  color: #707070;
}
@media only screen and (min-width: 960px) {
  .table_wrap .table.table_02 tbody tr td {
    width: 60%;
  }
}
@media only screen and (max-width: 961px) {
  .table_wrap .table.table_02 tbody tr td {
    border-bottom: 1px solid #c1c1c1;
  }
}
.table_wrap .table.table_02 tbody tr td.center {
  text-align: center;
}
.table_wrap .table.table_02 tbody tr td.right {
  text-align: right;
}
.table_wrap .table.table_03 {
  margin-top: 30px;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  .table_wrap .table.table_03 {
    table-layout: fixed;
    border-collapse: collapse;
  }
}
@media only screen and (max-width: 961px) {
  .table_wrap .table.table_03 {
    table-layout: fixed;
    border-collapse: collapse;
  }
}
.table_wrap .table.table_03 tbody tr th,
.table_wrap .table.table_03 tbody tr td {
  text-align: left;
  line-height: 1.5em;
}
@media only screen and (min-width: 960px) {
  .table_wrap .table.table_03 tbody tr th,
  .table_wrap .table.table_03 tbody tr td {
    border-bottom: 1px solid #c1c1c1;
    padding: 20px 15px;
  }
}
@media only screen and (max-width: 961px) {
  .table_wrap .table.table_03 tbody tr th,
  .table_wrap .table.table_03 tbody tr td {
    border-bottom: 1px solid #c1c1c1;
    padding: 20px 15px;
  }
}
.table_wrap .table.table_03 tbody tr th {
  vertical-align: top;
}
@media only screen and (min-width: 960px) {
  .table_wrap .table.table_03 tbody tr th {
    width: 20%;
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 961px) {
  .table_wrap .table.table_03 tbody tr th {
    width: 20%;
    font-size: 1rem;
  }
}
.table_wrap .table.table_03 tbody tr td {
  font-size: 1rem;
  color: #707070;
}
@media only screen and (min-width: 960px) {
  .table_wrap .table.table_03 tbody tr td {
    width: 10%;
  }
}
@media only screen and (max-width: 961px) {
  .table_wrap .table.table_03 tbody tr td {
    width: 10%;
  }
}
.table_wrap .table.table_03 tbody tr td.center {
  text-align: center;
}
.table_wrap .table.table_03 tbody tr td.right {
  text-align: right;
}

@media only screen and (min-width: 1200px) {
  .event_column {
    background-color: #fff9e5;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .event_column {
    background-color: #fff9e5;
  }
}
@media only screen and (min-width: 960px) {
  .event_column {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 80px;
    padding: 74px 33px;
  }
}
@media only screen and (max-width: 961px) {
  .event_column {
    width: 90%;
    margin: 0 auto;
    margin-top: 1rem;
  }
}
.event_column_title {
  color: #d50013;
  font-weight: bold;
  display: flex;
}
@media only screen and (min-width: 960px) {
  .event_column_title {
    font-size: 42px;
    transform: translateX(-53px);
    line-height: 1.3em;
  }
}
@media only screen and (max-width: 961px) {
  .event_column_title {
    font-size: 1.2rem;
    background: #d50013;
    color: #fff;
    padding: 10px;
    line-height: 1.5rem;
  }
}
.event_column_title:before {
  content: "";
  display: block;
  background-color: #d50013;
}
@media only screen and (min-width: 960px) {
  .event_column_title:before {
    width: 37px;
    height: 5px;
    margin-top: 18px;
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 961px) {
  .event_column_title:before {
    display: none;
    width: 24px;
    height: 5px;
    margin-top: 8px;
    margin-right: 0.5rem;
  }
}
.event_column .top_photos {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
}
.event_column .top_photos .photo_item {
  margin: 0 1%;
  border: 1px solid #f0f0f0;
  background: #fff;
}
@media only screen and (min-width: 960px) {
  .event_column .top_photos .photo_item {
    width: 48%;
    padding: 20px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 961px) {
  .event_column .top_photos .photo_item {
    padding: 0 20px 20px;
    width: 98%;
  }
  .event_column .top_photos .photo_item:last-of-type {
    margin-bottom: 0;
  }
}
.event_column .top_photos .photo_item h4 {
  background: #f0f0f0;
  padding: 8px 10px 11px;
  margin-bottom: 10px;
  text-align: center;
}
.event_column .top_photos .photo_item .image_wrap {
  width: 100%;
}
.event_column .top_photos .photo_item img {
  display: block;
}
@media only screen and (min-width: 960px) {
  .event_column .top_photos .photo_item img {
    height: 300px;
    object-fit: cover;
    margin: 0 auto;
  }
}
.event_column .top_photos .photo_item p {
  margin-top: 30px;
  line-height: 1.5em;
}
.event_column .event_column_unit {
  display: flex;
}
@media only screen and (min-width: 960px) {
  .event_column .event_column_unit {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 961px) {
  .event_column .event_column_unit {
    flex-wrap: wrap;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 961px) {
  .event_column .event_column_unit_img {
    width: 100%;
    order: 1;
    margin: 0 auto 0;
  }
}
@media only screen and (min-width: 960px) {
  .event_column .event_column_unit_img {
    width: 280px;
    margin-top: 38px;
  }
}
.event_column .event_column_unit_img figure {
  background-color: #f0f0f0;
  position: relative;
  width: 100%;
}
.event_column .event_column_unit_img figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
@media only screen and (min-width: 960px) {
  .event_column .event_column_unit_txt {
    width: 587px;
    margin-top: 38px;
  }
}
@media only screen and (max-width: 961px) {
  .event_column .event_column_unit_txt {
    width: 100%;
    order: 2;
    margin-top: 1rem;
    background-color: #fff9e5;
  }
}
@media only screen and (min-width: 1200px) {
  .event_column .event_column_unit_txt .event_info {
    display: block;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .event_column .event_column_unit_txt .event_info {
    display: block;
  }
}
@media only screen and (max-width: 961px) {
  .event_column .event_column_unit_txt .event_info {
    display: block;
    padding: 1rem;
  }
}
@media only screen and (min-width: 1200px) {
  .event_column .event_column_unit_txt .event_info .event_info_row {
    display: flex;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .event_column .event_column_unit_txt .event_info .event_info_row {
    display: flex;
  }
}
@media only screen and (max-width: 961px) {
  .event_column .event_column_unit_txt .event_info .event_info_row {
    display: block;
  }
}
.event_column .event_column_unit_txt .event_info .event_info_row .event_info_cell,
.event_column .event_column_unit_txt .event_info .event_info_row .event_info_label {
  font-weight: bold;
  color: #535353;
  padding: 0.5rem 0;
  line-height: 1.3;
}
@media only screen and (min-width: 1200px) {
  .event_column .event_column_unit_txt .event_info .event_info_row .event_info_cell,
  .event_column .event_column_unit_txt .event_info .event_info_row .event_info_label {
    display: table-cell;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .event_column .event_column_unit_txt .event_info .event_info_row .event_info_cell,
  .event_column .event_column_unit_txt .event_info .event_info_row .event_info_label {
    display: table-cell;
  }
}
@media only screen and (max-width: 961px) {
  .event_column .event_column_unit_txt .event_info .event_info_row .event_info_cell,
  .event_column .event_column_unit_txt .event_info .event_info_row .event_info_label {
    display: block;
  }
}
.event_column .event_column_unit_txt .event_info .event_info_row .event_info_cell {
  flex: 1;
}
.event_column .event_column_unit_txt .event_info .event_info_row .event_info_label {
  width: 50px;
  color: #d50013;
}
.event_column .event_column_unit .event_column_summary * {
  line-height: 2;
}
.event_column_summary {
  line-height: 1.7;
  font-weight: bold;
  color: #535353;
}
@media only screen and (min-width: 960px) {
  .event_column_summary {
    margin-top: 36px;
  }
}
@media only screen and (max-width: 961px) {
  .event_column_summary {
    padding: 0 1rem 0;
  }
}
.event_column_map {
  position: relative;
  width: 100%;
  padding-top: 58.0919931857%;
}
@media only screen and (min-width: 960px) {
  .event_column_map {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 961px) {
  .event_column_map {
    margin-top: 1rem;
  }
}
.event_column_map iframe {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 960px) {
  .event_column_bnrs {
    margin-top: 38px;
  }
}
@media only screen and (max-width: 961px) {
  .event_column_bnrs {
    margin-top: 1rem;
  }
}
@media only screen and (min-width: 960px) {
  .event_column .center_button {
    margin-top: 38px;
  }
}
@media only screen and (max-width: 961px) {
  .event_column .center_button {
    margin-top: 1rem;
  }
}

@media only screen and (min-width: 960px) {
  .plan_section {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 80px;
  }
}
@media only screen and (max-width: 961px) {
  .plan_section {
    width: 90%;
    margin: 0 auto;
  }
}
.plan_section .plan_title {
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
  position: relative;
}
@media only screen and (min-width: 960px) {
  .plan_section .plan_title {
    font-size: 32px;
    padding: 21px 32px;
  }
}
@media only screen and (max-width: 961px) {
  .plan_section .plan_title {
    padding: 11px;
  }
}
.plan_section .plan_title:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 960px) {
  .plan_section .plan_column {
    display: flex;
    flex-wrap: wrap;
  }
}
.plan_section .plan_column .column {
  border: 1px solid #d1d1d1;
  border-top: none;
}
@media only screen and (min-width: 960px) {
  .plan_section .plan_column .column {
    width: 320px;
    margin-right: 20px;
    margin-top: 26px;
  }
}
@media only screen and (max-width: 961px) {
  .plan_section .plan_column .column {
    margin-top: 2rem;
  }
}
.plan_section .plan_column .column:nth-child(3n) {
  margin-right: 0;
}
.plan_section .plan_column .column .plan_column_body {
  padding: 18px;
}
@media only screen and (max-width: 961px) {
  .plan_section .plan_column .column .plan_column_body {
    display: flex;
    flex-wrap: wrap;
  }
}
.plan_section .plan_column .plan_column_title {
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  border-radius: 6px 6px 0 0;
  font-size: 20px;
  padding: 10px 0;
}
.plan_section .plan_column .plan_column_figure img {
  width: 100%;
}
@media only screen and (max-width: 961px) {
  .plan_section .plan_column .plan_column_figure {
    width: 37.8548895899%;
    margin-right: 3.1545741325%;
  }
}
.plan_section .plan_column .plan_column_info {
  border-radius: 6px;
}
@media only screen and (min-width: 960px) {
  .plan_section .plan_column .plan_column_info {
    padding: 22px;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 961px) {
  .plan_section .plan_column .plan_column_info {
    width: 58.9905362776%;
    padding: 10px 12px;
  }
}
.plan_section .plan_column .plan_column_info .plan_column_info_row + .plan_column_info_row {
  margin-top: 15px;
}
.plan_section .plan_column .plan_column_info .plan_column_info_row dt {
  font-weight: bold;
}
.plan_section .plan_column .plan_column_info .plan_column_info_row dd {
  display: inline-block;
  margin-top: 10px;
}
.plan_section .plan_column .plan_column_info .plan_column_info_row dd + dd {
  margin-left: 1rem;
}
.plan_section .plan_column .plan_column_info .plan_column_info_row dd .number {
  font-weight: bold;
  color: #d50013;
}
@media only screen and (min-width: 960px) {
  .plan_section .plan_column .plan_column_info .plan_column_info_row dd .number {
    font-size: 24px;
  }
}
.plan_section .plan_column .plan_column_info .plan_column_info_row dd .unit {
  color: #707070;
  font-weight: bold;
}
.plan_section .plan_column .btn_plan {
  margin-top: 15px;
}
@media only screen and (max-width: 961px) {
  .plan_section .plan_column .btn_plan {
    width: 100%;
  }
}
.plan_section .plan_column .btn_plan a {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 14px 0;
}
.plan_section .plan_column .btn_plan a .fa {
  margin-right: 8px;
}
.plan_section .plan_detail_info {
  border-radius: 6px;
  margin-top: 2rem;
}
@media only screen and (min-width: 960px) {
  .plan_section .plan_detail_info {
    display: flex;
    padding: 22px;
  }
}
@media only screen and (max-width: 961px) {
  .plan_section .plan_detail_info {
    padding: 10px 12px;
  }
}
.plan_section .plan_detail_info .plan_detail_info_row {
  display: flex;
  align-items: flex-end;
  margin-right: 2rem;
}
@media only screen and (max-width: 961px) {
  .plan_section .plan_detail_info .plan_detail_info_row + .plan_detail_info_row {
    margin-top: 15px;
  }
}
.plan_section .plan_detail_info .plan_detail_info_row dt {
  font-weight: bold;
  margin-right: 1rem;
}
.plan_section .plan_detail_info .plan_detail_info_row dd + dd {
  margin-left: 1rem;
}
.plan_section .plan_detail_info .plan_detail_info_row dd .number {
  font-weight: bold;
  color: #d50013;
}
@media only screen and (min-width: 960px) {
  .plan_section .plan_detail_info .plan_detail_info_row dd .number {
    font-size: 24px;
  }
}
.plan_section .plan_detail_info .plan_detail_info_row dd .unit {
  color: #707070;
  font-weight: bold;
}
.plan_section.p01 .plan_title {
  background-color: #d960a2;
}
.plan_section.p01 .plan_title:after {
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #d960a2;
  border-bottom: 15px solid transparent;
}
.plan_section.p01 .column .plan_column_title {
  background-color: #d960a2;
}
.plan_section.p01 .column .plan_column_info {
  background-color: #fde7f3;
}
.plan_section.p01 .column .btn_plan a {
  border: 1px solid #d960a2;
  color: #d960a2;
}
.plan_section.p01 .plan_detail_info {
  background-color: #fde7f3;
}
.plan_section.p02 .plan_title {
  background-color: #8a60d9;
}
.plan_section.p02 .plan_title:after {
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #8a60d9;
  border-bottom: 15px solid transparent;
}
.plan_section.p02 .column .plan_column_title {
  background-color: #8a60d9;
}
.plan_section.p02 .column .plan_column_info {
  background-color: #f5e7fd;
}
.plan_section.p02 .column .btn_plan a {
  border: 1px solid #8a60d9;
  color: #8a60d9;
}
.plan_section.p03 .plan_title {
  background-color: #60a1d9;
}
.plan_section.p03 .plan_title:after {
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #60a1d9;
  border-bottom: 15px solid transparent;
}
.plan_section.p03 .column .plan_column_title {
  background-color: #60a1d9;
}
.plan_section.p03 .column .plan_column_info {
  background-color: #e7eefd;
}
.plan_section.p03 .column .btn_plan a {
  border: 1px solid #60a1d9;
  color: #60a1d9;
}
.plan_section.p04 .plan_title {
  background-color: #60cbd9;
}
.plan_section.p04 .plan_title:after {
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #60cbd9;
  border-bottom: 15px solid transparent;
}
.plan_section.p04 .column .plan_column_title {
  background-color: #60cbd9;
}
.plan_section.p04 .column .plan_column_info {
  background-color: #e7eefd;
}
.plan_section.p04 .column .btn_plan a {
  border: 1px solid #60cbd9;
  color: #60cbd9;
}

.plan_detail_imgs .plan_detail_img {
  margin-top: 2rem;
}

.blog_column {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #707070;
  display: flex;
}
.blog_column .thumb {
  flex: 1;
  margin-right: 20px;
}
.blog_column .thumb p {
  height: 250px;
  background: #f0f0f0;
}
.blog_column .thumb p img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.blog_column .postinfo {
  flex: 2;
}
.blog_column .postinfo h3 {
  font-size: 20px;
  font-weight: bold;
  color: #d50013;
  margin-bottom: 20px;
}
.blog_column .postinfo .detail {
  margin-bottom: 60px;
}
.blog_column .postinfo .detail p {
  font-size: 16px;
  line-height: 1.5em;
}

.blog_detail {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 100px;
}
.blog_detail h3 {
  font-size: 36px;
  color: #d50013;
}
.blog_detail .post_date {
  font-size: 20px;
  margin-top: 20px;
}
.blog_detail .post_thumb {
  margin-top: 20px;
}
.blog_detail .post_detail {
  margin-top: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid #707070;
}
.blog_detail .post_detail p {
  line-height: 1.5em;
}

.cases_column_wrap {
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.cases_column_wrap .cases_column {
  border-top: 4px solid #d50013;
  border-radius: 2px 2px 4px 4px;
  border-left: 1px solid #707070;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) {
  .cases_column_wrap .cases_column {
    width: 32%;
    margin-right: 2%;
  }
  .cases_column_wrap .cases_column:nth-of-type(3n + 3) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .cases_column_wrap .cases_column {
    width: 32%;
    margin-right: 2%;
  }
}
@media only screen and (max-width: 961px) {
  .cases_column_wrap .cases_column {
    width: 46%;
    margin-right: 2%;
  }
  .cases_column_wrap .cases_column:nth-of-type(2n + 1) {
    margin-left: 2%;
  }
}
.cases_column_wrap .cases_column a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.cases_column_wrap .cases_column a:hover {
  opacity: 0.8;
}
@media only screen and (min-width: 1200px) {
  .cases_column_wrap .cases_column a {
    padding: 20px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .cases_column_wrap .cases_column a {
    padding: 20px;
  }
}
@media only screen and (max-width: 961px) {
  .cases_column_wrap .cases_column a {
    padding: 5px;
  }
}
.cases_column_wrap .cases_column a .thumb {
  background: #f0f0f0;
}
.cases_column_wrap .cases_column a .thumb img {
  width: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 1200px) {
  .cases_column_wrap .cases_column a .thumb img {
    height: 200px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .cases_column_wrap .cases_column a .thumb img {
    height: 200px;
  }
}
@media only screen and (max-width: 961px) {
  .cases_column_wrap .cases_column a .thumb img {
    height: 120px;
  }
}
.cases_column_wrap .cases_column a .postinfo h3 {
  color: #d50013;
  font-weight: bold;
}
@media only screen and (min-width: 1200px) {
  .cases_column_wrap .cases_column a .postinfo h3 {
    font-size: 1.25rem;
    margin: 20px 0;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .cases_column_wrap .cases_column a .postinfo h3 {
    font-size: 1.25rem;
    margin: 20px 0;
  }
}
@media only screen and (max-width: 961px) {
  .cases_column_wrap .cases_column a .postinfo h3 {
    font-size: 0.8rem;
    margin-top: 5px;
  }
}

.cases_detail {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 50px;
}
.cases_detail h3 {
  color: #d50013;
}
@media only screen and (min-width: 1200px) {
  .cases_detail h3 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .cases_detail h3 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 961px) {
  .cases_detail h3 {
    font-size: 1.5rem;
    padding: 0 10px;
  }
}
.cases_detail .images {
  margin-top: 30px;
}
.cases_detail .post_detail {
  border-bottom: 1px solid #707070;
}
@media only screen and (min-width: 1200px) {
  .cases_detail .post_detail {
    margin-top: 50px;
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .cases_detail .post_detail {
    margin-top: 50px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 961px) {
  .cases_detail .post_detail {
    margin-top: 20px;
    padding-bottom: 20px;
  }
}
.cases_detail .post_detail p {
  line-height: 1.5em;
}
@media only screen and (max-width: 961px) {
  .cases_detail .post_detail p {
    padding: 0 10px;
  }
}

.plan_cat {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 50px;
}
.plan_cat h2 {
  border-radius: 6px;
  padding: 20px;
  font-size: 2rem;
  margin-bottom: 40px;
  position: relative;
  line-height: 2.2rem;
}
@media only screen and (max-width: 961px) {
  .plan_cat h2 {
    border-radius: 0;
    padding: 0.5rem;
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.plan_cat .h2_koma {
  display: block;
  content: " ";
  width: 20px;
  height: 20px;
  margin: -40px auto 0;
  transform: translate(0, -50%) rotate(45deg);
}
.plan_cat .plan_column_wrap {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1200px) {
  .plan_cat .plan_column_wrap {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .plan_cat .plan_column_wrap {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 961px) {
  .plan_cat .plan_column_wrap {
    justify-content: space-around;
  }
}
@media only screen and (min-width: 1200px) {
  .plan_cat .plan_column_wrap .plan_column {
    width: 32%;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .plan_cat .plan_column_wrap .plan_column {
    width: 32%;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 961px) {
  .plan_cat .plan_column_wrap .plan_column {
    width: 47%;
    margin-bottom: 10px;
  }
}
.plan_cat .plan_column_wrap .plan_column h3 {
  text-align: center;
  padding: 10px 0;
  border-radius: 6px 6px 0 0;
}
@media only screen and (min-width: 1200px) {
  .plan_cat .plan_column_wrap .plan_column h3 {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .plan_cat .plan_column_wrap .plan_column h3 {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 961px) {
  .plan_cat .plan_column_wrap .plan_column h3 {
    font-size: 1rem;
  }
}
.plan_cat .plan_column_wrap .plan_column .info {
  border-left: 1px solid #707070;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  border-radius: 0 0 6px 6px;
}
.plan_cat .plan_column_wrap .plan_column .info a {
  display: block;
  text-decoration: none;
  color: inherit;
}
@media only screen and (min-width: 1200px) {
  .plan_cat .plan_column_wrap .plan_column .info a {
    padding: 20px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .plan_cat .plan_column_wrap .plan_column .info a {
    padding: 20px;
  }
}
.plan_cat .plan_column_wrap .plan_column .info a:hover {
  opacity: 0.8;
}
.plan_cat .plan_column_wrap .plan_column .info a .thumb p {
  width: 100%;
  background: #f0f0f0;
}
@media only screen and (min-width: 1200px) {
  .plan_cat .plan_column_wrap .plan_column .info a .thumb p {
    height: 200px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .plan_cat .plan_column_wrap .plan_column .info a .thumb p {
    height: 200px;
  }
}
@media only screen and (max-width: 961px) {
  .plan_cat .plan_column_wrap .plan_column .info a .thumb p {
    height: 140px;
  }
}
.plan_cat .plan_column_wrap .plan_column .info a .thumb p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plan_cat .plan_column_wrap .plan_column .info a .detail {
  border-radius: 0 0 6px 6px;
}
@media only screen and (min-width: 960px) {
  .plan_cat .plan_column_wrap .plan_column .info a .detail {
    padding: 20px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 961px) {
  .plan_cat .plan_column_wrap .plan_column .info a .detail {
    padding: 10px;
    margin: 0;
  }
}
.plan_cat .plan_column_wrap .plan_column .info a .detail .about {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 960px) {
  .plan_cat .plan_column_wrap .plan_column .info a .detail .about {
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 961px) {
  .plan_cat .plan_column_wrap .plan_column .info a .detail .about {
    margin-top: 0.5rem;
  }
}
.plan_cat .plan_column_wrap .plan_column .info a .detail .about:first-of-type {
  margin-top: 0;
}
.plan_cat .plan_column_wrap .plan_column .info a .detail .about .title {
  font-size: 1rem;
  width: 100%;
  margin-bottom: 5px;
}
.plan_cat .plan_column_wrap .plan_column .info a .detail .about .title span {
  font-size: 1.2rem;
  font-weight: bold;
}
.plan_cat .plan_column_wrap .plan_column .info a .detail .about .separate {
  line-height: 1.5rem;
}
@media only screen and (max-width: 961px) {
  .plan_cat .plan_column_wrap .plan_column .info a .detail .about .separate {
    width: 10%;
    text-align: right;
  }
}
.plan_cat .plan_column_wrap .plan_column .info a .detail .about .desc {
  font-size: 1rem;
}
@media only screen and (min-width: 1200px) {
  .plan_cat .plan_column_wrap .plan_column .info a .detail .about .desc {
    flex: 1;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .plan_cat .plan_column_wrap .plan_column .info a .detail .about .desc {
    flex: 1;
  }
}
@media only screen and (max-width: 961px) {
  .plan_cat .plan_column_wrap .plan_column .info a .detail .about .desc {
    font-size: 0.9rem;
    width: 90%;
  }
  .plan_cat .plan_column_wrap .plan_column .info a .detail .about .desc:nth-of-type(2) {
    width: 100%;
  }
}
.plan_cat .plan_column_wrap .plan_column .info a .detail .about .desc.small {
  font-size: 0.8rem;
}
.plan_cat .plan_column_wrap .plan_column .info a .detail .about .desc.small span {
  font-size: 1.2rem;
  margin-right: 0.1rem;
  margin-left: 0.1rem;
}
.plan_cat .plan_column_wrap .plan_column .info a .detail .about .desc span {
  display: inline-block;
  margin-right: 0.4rem;
  margin-left: 0.4rem;
  color: #d50013;
  font-size: 1.5rem;
}
.plan_cat .plan_column_wrap .plan_column .info a .detail .comment {
  margin-top: 1rem;
  line-height: 1.2rem;
}

@media only screen and (min-width: 960px) {
  .plan_detail {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 50px;
  }
}
.plan_detail h3 {
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  .plan_detail h3 {
    padding: 1.25rem;
    font-size: 2rem;
    border-radius: 6px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1201px) {
  .plan_detail h3 {
    padding: 1.25rem;
    font-size: 2rem;
    border-radius: 6px;
  }
}
@media only screen and (max-width: 961px) {
  .plan_detail h3 {
    padding: 1rem;
    font-size: 1.5rem;
  }
}
.plan_detail h3:after {
  left: 50%;
  bottom: -20px;
  transform: translate(-50%, -50%) rotate(45deg);
  position: absolute;
  content: " ";
  display: block;
  background-color: inherit;
  width: 20px;
  height: 20px;
}
.plan_detail .post_thumb {
  margin-top: 20px;
}
.plan_detail .post_thumb p {
  position: relative;
  width: 100%;
  padding-top: 54.3526785714%;
}
.plan_detail .post_thumb p img {
  display: block;
  top: 0;
  left: 0;
  position: absolute;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.plan_detail .plan_comment {
  padding: 15px;
  background: #f0f0f0;
}
@media only screen and (min-width: 960px) {
  .plan_detail .plan_comment {
    margin: 20px 50px 0;
  }
}
@media only screen and (max-width: 961px) {
  .plan_detail .plan_comment {
    margin: 20px 5% 0;
  }
}
.plan_detail .plan_comment span {
  display: inline-block;
  padding: 10px;
}
.plan_detail .plan_comment p {
  width: 100%;
  line-height: 1.3rem;
}
.plan_detail .plan_detail_list {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
}
@media only screen and (min-width: 960px) {
  .plan_detail .plan_detail_list {
    margin: 50px auto;
  }
}
@media only screen and (max-width: 961px) {
  .plan_detail .plan_detail_list {
    margin: 20px auto;
  }
}
.plan_detail .plan_detail_list dl {
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid #eeeeee;
  border-top: 1px solid #eeeeee;
}
@media only screen and (min-width: 960px) {
  .plan_detail .plan_detail_list dl {
    width: 50%;
  }
}
@media only screen and (max-width: 961px) {
  .plan_detail .plan_detail_list dl {
    width: 100%;
  }
}
.plan_detail .plan_detail_list dl dt,
.plan_detail .plan_detail_list dl dd {
  display: flex;
  align-items: center;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 15px;
}
.plan_detail .plan_detail_list dl dt {
  width: 40%;
  font-weight: bold;
  background: #f0f0f0;
}
.plan_detail .plan_detail_list dl dd {
  width: 60%;
}
.plan_detail .plan_detail_list dl dd span {
  color: #d50013;
  display: inline-block;
  margin-right: 5px;
  font-size: 1.6rem;
}
.plan_detail .plan_detail_list dl dd em {
  display: inline-block;
  margin-top: 10px;
}
@media only screen and (min-width: 960px) {
  .plan_detail .detail_info_wrap {
    display: flex;
  }
}
.plan_detail .detail_info_wrap .detail_info {
  border-radius: 5px;
  border: 1px solid #fff;
}
@media only screen and (min-width: 960px) {
  .plan_detail .detail_info_wrap .detail_info {
    flex: 1;
    margin-top: 10px;
  }
  .plan_detail .detail_info_wrap .detail_info:nth-of-type(2n + 1) {
    margin-right: 5px;
  }
  .plan_detail .detail_info_wrap .detail_info:nth-of-type(2n + 2) {
    margin-left: 5px;
  }
}
@media only screen and (max-width: 961px) {
  .plan_detail .detail_info_wrap .detail_info {
    margin: 10px 10px 0;
  }
}
.plan_detail .detail_info_wrap .detail_info .title {
  padding: 10px;
  text-align: center;
}
.plan_detail .detail_info_wrap .detail_info .desc {
  padding: 10px;
  text-align: center;
}
.plan_detail .detail_info_wrap .detail_info .desc span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0.2rem;
}
.plan_detail .detail_info_wrap .detail_info .desc p {
  margin-top: 10px;
}
.plan_detail .detail_info_wrap .detail_info .desc p:first-of-type {
  margin-top: 0;
}
.plan_detail .detail_info_wrap .detail_info .desc p.small {
  font-size: 0.8rem;
}
.plan_detail .detail_info_wrap .detail_info .desc p.small span {
  font-size: 1.2rem;
}
.plan_detail .caution {
  margin-top: 50px;
}
.plan_detail .caution p {
  text-align: right;
  color: #d50013;
  font-weight: bold;
  font-size: 16px;
}

.company_zeh_text {
  max-width: 1000px;
  margin: 0 auto;
}
.company_zeh_text h3 {
  font-size: 1.5rem;
  font-weight: bold;
}
@media only screen and (min-width: 960px) {
  .company_zeh_text h3 {
    margin: 30px 0 20px;
  }
}
@media only screen and (max-width: 961px) {
  .company_zeh_text h3 {
    margin: 30px 20px 20px;
  }
}
@media only screen and (max-width: 961px) {
  .company_zeh_text .caution {
    margin: 0 20px;
  }
}
.company_zeh_text .caution p {
  line-height: 1.5rem;
}

.owner_column_wrap {
  padding-top: 30px;
}
@media only screen and (min-width: 960px) {
  .owner_column_wrap {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 961px) {
  .owner_column_wrap {
    width: 90%;
    margin: 0 auto;
  }
}
.owner_column_wrap .owner_column {
  margin-bottom: 20px;
}
@media only screen and (min-width: 960px) {
  .owner_column_wrap .owner_column {
    width: 32%;
    margin-right: 2%;
  }
}
@media only screen and (min-width: 960px) {
  .owner_column_wrap .owner_column:nth-of-type(3n + 3) {
    margin-right: 0;
  }
}
.owner_column_wrap .owner_column div.sales {
  color: #fff;
  border-radius: 8px 8px 0 0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
}
.owner_column_wrap .owner_column div.sales.on {
  background: #d50013;
}
.owner_column_wrap .owner_column div.sales.off {
  background: #b1b1b1;
}
.owner_column_wrap .owner_column .postinfo {
  padding: 20px;
  border-radius: 0 0 4px 4px;
  border-left: 1px solid #707070;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
.owner_column_wrap .owner_column .postinfo h3 {
  margin: 0 0 20px;
  color: #d50013;
  font-size: 16px;
  font-weight: bold;
}
.owner_column_wrap .owner_column .postinfo .thumb {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
}
.owner_column_wrap .owner_column .postinfo .thumb p {
  display: block;
  width: 100%;
  height: 100%;
  background: #f0f0f0;
}
.owner_column_wrap .owner_column .postinfo .thumb p img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media only screen and (min-width: 960px) {
  .owner_detail {
    padding-top: 80px;
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 961px) {
  .owner_detail {
    width: 90%;
    margin: 0 auto;
    padding-top: 3rem;
  }
}
.owner_detail .soldout {
  width: 100%;
  background: #d50013;
  color: #fff;
  border-radius: 5px;
  padding: 15px 20px;
  font-weight: bold;
  margin-bottom: 30px;
}
.owner_detail h3 {
  color: #d50013;
  font-weight: bold;
}
@media only screen and (min-width: 960px) {
  .owner_detail h3 {
    font-size: 31px;
  }
}
@media only screen and (max-width: 961px) {
  .owner_detail h3 {
    font-size: 20px;
    line-height: 1.4;
  }
}
.owner_detail .post_detail_wrap {
  margin-top: 30px;
}
@media only screen and (min-width: 960px) {
  .owner_detail .post_detail_wrap {
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 960px) {
  .owner_detail .post_detail_wrap .post_thumb {
    width: 48%;
    margin-right: 1%;
    height: 300px;
  }
}
.owner_detail .post_detail_wrap .post_thumb p {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
}
.owner_detail .post_detail_wrap .post_thumb p img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (min-width: 960px) {
  .owner_detail .post_detail_wrap .post_detail {
    width: 48%;
    margin-left: 1%;
  }
}
.owner_detail .post_detail_wrap .main_image {
  width: 100%;
}
@media only screen and (min-width: 960px) {
  .owner_detail .post_detail_wrap .main_image {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.owner_detail .post_detail_wrap .main_image p {
  display: block;
}
@media only screen and (min-width: 960px) {
  .owner_detail .post_detail_wrap .main_image p {
    margin-top: 10px;
    width: 24%;
  }
}
@media only screen and (max-width: 961px) {
  .owner_detail .post_detail_wrap .main_image p {
    margin-top: 10px;
  }
}
.owner_detail .post_detail_wrap .main_image p img {
  display: block;
  width: 100%;
}
.owner_detail .post_detail_wrap .intro {
  margin-top: 30px;
}
.owner_detail .post_detail_wrap .intro p {
  line-height: 2em;
  font-size: 1rem;
  color: #707070;
}

.kengaku_detail {
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (min-width: 960px) {
  .kengaku_detail {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 961px) {
  .kengaku_detail {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.kengaku_detail .banner p img {
  width: 100%;
  display: block;
}
@media only screen and (min-width: 960px) {
  .kengaku_detail .annai {
    display: flex;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 961px) {
  .kengaku_detail .annai {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 960px) {
  .kengaku_detail .annai .item {
    width: 48%;
  }
}
@media only screen and (max-width: 961px) {
  .kengaku_detail .annai .item {
    width: 98%;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 960px) {
  .kengaku_detail .annai .item.ankate {
    text-align: right;
    margin-right: 2%;
  }
}
@media only screen and (max-width: 961px) {
  .kengaku_detail .annai .item.ankate {
    margin-bottom: 10px;
  }
}
.kengaku_detail .annai .item.ankate p {
  border: 1px solid #d50013;
  color: #d50013;
}
@media only screen and (min-width: 960px) {
  .kengaku_detail .annai .item.send {
    text-align: left;
    margin-left: 2%;
  }
}
.kengaku_detail .annai .item.send p {
  border: 1px solid #004ad5;
  color: #004ad5;
}
.kengaku_detail .annai .item p {
  text-align: center;
  border-radius: 6px;
}
@media only screen and (min-width: 960px) {
  .kengaku_detail .annai .item p {
    display: inline-block;
  }
}
.kengaku_detail .annai .item p a {
  display: inline-block;
  padding: 15px;
  color: inherit;
  text-decoration: none;
  line-height: 1.5em;
}
.kengaku_detail .annai .item p a:hover {
  opacity: 0.6;
}
.kengaku_detail .ankate_form {
  border-top: 10px solid #f7e5ab;
  background: #fff9e5;
}
@media only screen and (min-width: 960px) {
  .kengaku_detail .ankate_form {
    margin-top: 50px;
    padding: 50px 30px;
  }
}
@media only screen and (max-width: 961px) {
  .kengaku_detail .ankate_form {
    margin-top: 20px;
    padding: 10px;
  }
}
.kengaku_detail .ankate_form h4 {
  color: #d50013;
  text-align: center;
  font-weight: bold;
}
@media only screen and (min-width: 960px) {
  .kengaku_detail .ankate_form h4 {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 961px) {
  .kengaku_detail .ankate_form h4 {
    font-size: 1.25rem;
  }
}
.kengaku_detail .ankate_form .caution {
  margin-top: 20px;
  color: #d50013;
  text-align: center;
}
@media only screen and (min-width: 960px) {
  .kengaku_detail .ankate_form .caution {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 961px) {
  .kengaku_detail .ankate_form .caution {
    font-size: 1rem;
  }
}
.kengaku_detail .qa_wrap dl {
  display: block;
  border-bottom: 1px solid #c1c1c1;
}
.kengaku_detail .qa_wrap dl:last-of-type {
  border-bottom: none;
}
.kengaku_detail .qa_wrap dl dt,
.kengaku_detail .qa_wrap dl dd {
  display: block;
  line-height: 1.5rem;
}
.kengaku_detail .qa_wrap dl dt {
  font-size: 1.25rem;
}
@media only screen and (min-width: 960px) {
  .kengaku_detail .qa_wrap dl dt {
    padding: 1.5rem 0;
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 961px) {
  .kengaku_detail .qa_wrap dl dt {
    padding: 1rem 0;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 961px) {
  .kengaku_detail .qa_wrap dl dt span {
    display: block;
  }
}
@media only screen and (min-width: 960px) {
  .kengaku_detail .qa_wrap dl dd {
    padding-left: 60px;
    padding-bottom: 25px;
  }
}
@media only screen and (max-width: 961px) {
  .kengaku_detail .qa_wrap dl dd {
    padding-left: 1rem;
    padding-bottom: 10px;
  }
}
.kengaku_detail .qa_wrap dl dd p {
  line-height: 1.5rem;
}
@media only screen and (min-width: 960px) {
  .kengaku_detail .qa_wrap dl dd p {
    margin: 20px 0;
  }
}
@media only screen and (max-width: 961px) {
  .kengaku_detail .qa_wrap dl dd p {
    margin-bottom: 10px;
  }
}

.thanks {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
}
.thanks p {
  line-height: 2rem;
}

.wpcf7 .screen-reader-response {
  display: none;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #f00;
  font-weight: bold;
  display: block;
  margin-top: 10px;
}
.wpcf7 .wpcf7-response-output {
  margin-top: 10px;
  color: #d50013;
  font-weight: bold;
  padding: 10px;
}

.form span.request {
  border-radius: 4px;
  padding: 5px 0;
  display: inline-block;
  margin-right: 10px;
  text-align: center;
}
@media only screen and (min-width: 960px) {
  .form span.request {
    width: 50px;
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 961px) {
  .form span.request {
    width: 30px;
    font-size: 0.5rem;
  }
}
.form span.request.req {
  border: 1px solid #d50013;
  color: #d50013;
}
.form span.request.free {
  border: 1px solid #989898;
  color: #989898;
}
.form label {
  display: inline-block;
  margin-right: 20px;
}
@media only screen and (min-width: 960px) {
  .form label.small {
    width: 20%;
    min-width: 300px;
  }
}
@media only screen and (max-width: 961px) {
  .form label.small {
    display: block;
    width: 100%;
  }
}
@media only screen and (min-width: 960px) {
  .form label.half {
    display: block;
    width: 50%;
  }
}
@media only screen and (max-width: 961px) {
  .form label.half {
    display: block;
    width: 100%;
  }
}
.form label.full {
  display: block;
  width: 100%;
}
.form input[type=checkbox],
.form input[type=radio] {
  margin-right: 10px;
}
.form input[type=text],
.form input[type=date] {
  width: 90%;
  padding: 5px 10px;
  font-size: 1rem;
  display: inline-block;
}
.form textarea {
  width: 100%;
  padding: 5px 10px;
  font-size: 1rem;
  display: block;
  height: 10rem;
}
.form p.optional {
  font-weight: bold;
  text-decoration: underline;
  margin: 10px 0;
}
.form .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
}
.form .wpcf7-checkbox.smallitem .wpcf7-list-item {
  width: 33%;
}
.form .wpcf7-checkbox .wpcf7-list-item {
  display: inline-block;
  width: 50%;
  margin-bottom: 10px;
}

.event_form thead th,
.event_form thead td {
  background-color: #fff;
  white-space: nowrap;
}
@media only screen and (max-width: 961px) {
  .event_form thead th,
  .event_form thead td {
    width: auto;
  }
}

.event_form {
  border-collapse: collapse;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
  margin-top: 3rem;
}
@media only screen and (max-width: 961px) {
  .event_form {
    font-size: 11px;
  }
}
.event_form thead tr:nth-child(2n),
.event_form tbody tr:nth-child(2n) {
  background-color: rgb(255, 231, 231);
}
.event_form thead tr th,
.event_form thead tr td,
.event_form tbody tr th,
.event_form tbody tr td {
  box-sizing: border-box;
}
.event_form thead tr th.date,
.event_form thead tr td.date,
.event_form tbody tr th.date,
.event_form tbody tr td.date {
  font-weight: bold;
  color: #d50013;
  vertical-align: top;
}
.event_form thead tr th.link a,
.event_form thead tr td.link a,
.event_form tbody tr th.link a,
.event_form tbody tr td.link a {
  text-decoration: none;
  background-color: #d50013;
  color: #fff;
  padding: 0.5rem 0.3rem;
  display: block;
  border-radius: 6px;
  font-size: 11px;
}
.event_form thead tr th,
.event_form thead tr td {
  padding: 0.5rem;
  text-align: left;
  font-weight: bold;
  background-color: #d50013;
  color: #fff;
  text-align: center;
}
.event_form tbody tr {
  border-bottom: 1px solid #ccc;
}
.event_form tbody tr th,
.event_form tbody tr td {
  padding: 0.5rem;
  text-align: center;
}

@media only screen and (min-width: 960px) {
  .calendar_wrap {
    padding-top: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 961px) {
  .calendar_wrap {
    width: 90%;
    margin: 0 auto;
    padding-top: 1rem;
  }
}
.calendar_wrap .header {
  display: flex;
}
.calendar_wrap .header .title {
  flex: 4;
}
.calendar_wrap .header .title p {
  display: inline;
}
.calendar_wrap .header .operation {
  display: flex;
  flex: 1;
}
.calendar_wrap .header .operation .button {
  flex: 1;
}
.calendar_wrap .calendar {
  margin-top: 10px;
  width: 100%;
}
.calendar_wrap .calendar table {
  width: 100%;
  border-collapse: collapse;
  border-left: 1px solid #d0d0d0;
  border-top: 1px solid #d0d0d0;
}
.calendar_wrap .calendar table tr th,
.calendar_wrap .calendar table tr td {
  padding: 5px;
  border-right: 1px solid #d0d0d0;
  border-bottom: 1px solid #d0d0d0;
}
.calendar_wrap .calendar table tbody tr td {
  position: relative;
  vertical-align: top;
  height: 100px;
}
.calendar_wrap .calendar table tbody tr td span {
  display: block;
}
.calendar_wrap .calendar table tbody tr td .events {
  margin-top: 5px;
}
.calendar_wrap .calendar table tbody tr td .events em {
  position: absolute;
  width: 100%;
  font-size: 1rem;
}
.calendar_wrap .calendar table tbody tr td .events em.event_1 a {
  background: #f00;
  color: #fff;
}
.calendar_wrap .calendar table tbody tr td .events em.event_2 a {
  background: #0f0;
  color: #fff;
}
.calendar_wrap .calendar table tbody tr td .events em.event_3 a {
  background: #00f;
  color: #fff;
}
.calendar_wrap .calendar table tbody tr td .events em.event_other a {
  background: #909090;
  color: #fff;
}
.calendar_wrap .calendar table tbody tr td .events em a {
  display: block;
  font-size: 0.8rem;
  padding: 3px 5px;
  text-align: left;
  border-radius: 3px;
  text-decoration: none;
}
.calendar_wrap .calendar table tbody tr td .events em.day1 {
  width: calc(100% * 1 - 12px + 1 * 2px);
}
.calendar_wrap .calendar table tbody tr td .events em.day2 {
  width: calc(100% * 2 - 12px + 2 * 2px);
}
.calendar_wrap .calendar table tbody tr td .events em.day3 {
  width: calc(100% * 3 - 12px + 3 * 2px);
}
.calendar_wrap .calendar table tbody tr td .events em.day4 {
  width: calc(100% * 4 - 12px + 4 * 2px);
}
.calendar_wrap .calendar table tbody tr td .events em.day5 {
  width: calc(100% * 5 - 12px + 5 * 2px);
}
.calendar_wrap .calendar table tbody tr td .events em.day6 {
  width: calc(100% * 6 - 12px + 6 * 2px);
}
.calendar_wrap .calendar table tbody tr td .events em.day7 {
  width: calc(100% * 7 - 12px + 7 * 2px);
}

.modelhouse_wrap {
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .header_banner p.pc {
    display: none;
  }
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .header_banner p.sp {
    display: none;
  }
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .top_2item {
    display: flex;
    align-items: center;
    gap: 0 10px;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .top_2item {
    margin: 0 10px;
  }
}
.modelhouse_wrap .top_2item .item {
  flex: 1;
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .top_2item .item {
    margin-top: 10px;
  }
}
.modelhouse_wrap .top_2item .item .title {
  text-align: center;
  background: #d50013;
  color: #fff;
  border-radius: 15px 15px 0 0;
  padding: 10px 0;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .top_2item .item .title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .top_2item .item .title {
    font-size: 20px;
  }
}
.modelhouse_wrap .top_2item .item .desc {
  text-align: center;
  border: 2px solid #d50013;
  border-radius: 0 0 10px 10px;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .top_2item .item .desc {
    padding: 20px 0;
    font-size: 22px;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .top_2item .item .desc {
    padding: 12px 0 15px;
    font-size: 18px;
  }
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .top_2item .item .desc span {
    font-size: 32px;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .top_2item .item .desc span {
    font-size: 24px;
    letter-spacing: -0.1em;
  }
}
.modelhouse_wrap .merit {
  margin-top: 70px;
  background: #f3ae3d;
  padding-bottom: 30px;
}
.modelhouse_wrap .merit .merit_image {
  display: flex;
  justify-content: center;
  gap: 0 10px;
}
.modelhouse_wrap .merit .merit_image p {
  display: block;
  width: 30%;
  margin-top: -40px;
}
.modelhouse_wrap .merit .merit_image p img {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .merit .merit_title {
    padding: 20px;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .merit .merit_title {
    padding: 20px 10px;
  }
}
.modelhouse_wrap .merit .merit_title p {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: "Sawarabi Gothic";
  font-weight: bold;
  text-align: center;
  color: #fff;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .merit .merit_title p {
    font-size: 32px;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .merit .merit_title p {
    font-size: 24px;
  }
}
.modelhouse_wrap .merit .merit_title p span {
  display: inline-block;
  color: inehrit;
  font-weight: inherit;
  font-size: inherit;
  text-decoration: underline;
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .merit .merit_title p span {
    line-height: 1.3em;
  }
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .merit .merit_desc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
  }
}
.modelhouse_wrap .merit .merit_desc p {
  background: #fff;
  color: #222;
  font-weight: bold;
  padding: 15px 20px;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .merit .merit_desc p {
    white-space: nowrap;
    border-radius: 50px;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .merit .merit_desc p {
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .merit .merit_desc p span {
    display: block;
    flex: 1;
  }
}
.modelhouse_wrap .merit .merit_desc p em {
  color: #d50013;
  font-weight: inherit;
  font-size: inherit;
}
.modelhouse_wrap .merit .merit_desc p i {
  font-size: 18px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  background: #d50013;
  color: #fff;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .merit .merit_desc p i {
    display: inline-block;
    margin-right: 5px;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .merit .merit_desc p i {
    display: block;
    margin-right: 10px;
    margin-top: 2px;
  }
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .merit .merit_caution {
    padding: 30px 20px 0;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .merit .merit_caution {
    padding: 30px 5px 0;
  }
}
.modelhouse_wrap .merit .merit_caution p {
  font-size: 12px;
}
.modelhouse_wrap .freeoption {
  background: #f6f0e0;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .freeoption {
    padding: 30px;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .freeoption {
    padding: 30px 20px;
  }
}
.modelhouse_wrap .freeoption .title_wrap {
  position: relative;
  margin: 0 auto;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .freeoption .title_wrap {
    width: 60%;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .freeoption .title_wrap {
    width: 100%;
  }
}
.modelhouse_wrap .freeoption .title_wrap span {
  color: #d50013;
}
.modelhouse_wrap .freeoption .title_wrap .label {
  position: absolute;
  background: #d50013;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .freeoption .title_wrap .label {
    top: 0;
    left: -10%;
    transform: rotate(-20deg);
    padding: 10px 30px;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .freeoption .title_wrap .label {
    top: -35px;
    left: 0%;
    transform: rotate(-10deg);
    padding: 10px 10px;
  }
}
.modelhouse_wrap .freeoption .title_wrap .subtitle {
  text-align: center;
  padding-top: 30px;
  font-weight: boold;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .freeoption .title_wrap .subtitle {
    font-size: 24px;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .freeoption .title_wrap .subtitle {
    font-size: 18px;
  }
}
.modelhouse_wrap .freeoption .title_wrap .title {
  font-family: "Sawarabi Gothic";
  padding-top: 20px;
  text-align: center;
  font-weight: boold;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .freeoption .title_wrap .title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .freeoption .title_wrap .title {
    font-size: 24px;
  }
}
.modelhouse_wrap .freeoption .title_wrap .border {
  border-bottom: 4px solid #000;
  width: 20%;
  margin: 0 auto;
  height: 40px;
}
.modelhouse_wrap .freeoption .content {
  margin-top: 30px;
}
.modelhouse_wrap .freeoption .content p {
  line-height: 2em;
}
.modelhouse_wrap .freeoption .content p span {
  color: #d50013;
}
.modelhouse_wrap .column {
  padding: 20px;
  background: #f3ae3d;
}
.modelhouse_wrap .column .column_inner {
  position: relative;
  background: #fff;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .column .column_inner {
    padding: 30px;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .column .column_inner {
    padding: 50px 20px 20px;
  }
}
.modelhouse_wrap .column .column_inner .label {
  position: absolute;
  top: 0;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 16px;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .column .column_inner .label {
    right: 20px;
    padding: 30px 15px;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .column .column_inner .label {
    left: 10px;
    padding: 10px 15px;
  }
}
.modelhouse_wrap .column .column_inner .title {
  font-family: "Sawarabi Gothic";
  font-size: 24px;
  font-weight: bold;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .column .column_inner .title {
    line-height: 1.3em;
    letter-spacing: 0.3em;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .column .column_inner .title {
    line-height: 1.2em;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .column .column_inner .contents {
    display: flex;
    gap: 0 30px;
  }
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .column .column_inner .contents .content_item {
    flex: 1;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .column .column_inner .contents .content_item {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .column .column_inner .contents .content_item.normal_text p {
    line-height: 2em;
    letter-spacing: 0.05em;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .column .column_inner .contents .content_item.normal_text p {
    line-height: 1.5em;
  }
}
.modelhouse_wrap .column .column_inner .contents .content_item .chart {
  background: #f6f0e0;
  height: 280px;
  padding: 20px;
  position: relative;
}
.modelhouse_wrap .column .column_inner .contents .content_item .chart .chart_base p {
  position: absolute;
  font-size: 12px;
}
.modelhouse_wrap .column .column_inner .contents .content_item .chart .chart_base p.label_x {
  right: 10px;
  bottom: 5px;
}
.modelhouse_wrap .column .column_inner .contents .content_item .chart .chart_base p.label_y {
  left: 10px;
  top: 5px;
}
.modelhouse_wrap .column .column_inner .contents .content_item .chart .chart_items {
  position: relative;
  width: 100%;
  height: 100%;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
}
.modelhouse_wrap .column .column_inner .contents .content_item .chart .chart_items .chart_item {
  position: absolute;
  width: 30%;
  background: #fff;
  font-size: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modelhouse_wrap .column .column_inner .contents .content_item .chart .chart_items .chart_item p {
  line-height: 1.3em;
}
.modelhouse_wrap .column .column_inner .contents .content_item .chart .chart_items .chart_item.focus {
  background: #000;
  color: #fff;
}
.modelhouse_wrap .column .column_inner .contents .content_item .chart .chart_items .chart_item.focus p {
  font-size: 14px;
  font-weight: bold;
}
.modelhouse_wrap .column .column_inner .contents .content_item .chart .chart_items .chart_item.x_1 {
  left: 10px;
}
.modelhouse_wrap .column .column_inner .contents .content_item .chart .chart_items .chart_item.x_2 {
  left: calc(20px + 30%);
}
.modelhouse_wrap .column .column_inner .contents .content_item .chart .chart_items .chart_item.x_3 {
  left: calc(30px + 60%);
}
.modelhouse_wrap .column .column_inner .contents .content_item .chart .chart_items .chart_item.y_6_10 {
  top: 20px;
  height: 80px;
}
.modelhouse_wrap .column .column_inner .contents .content_item .chart .chart_items .chart_item.y_1_5 {
  top: 120px;
  height: 100px;
}
.modelhouse_wrap .column .column_inner .contents .content_item .chart .chart_items .chart_item.y_2_7 {
  top: 80px;
  height: 120px;
}
.modelhouse_wrap .entry {
  margin-top: 30px;
}
.modelhouse_wrap .entry .header {
  border-left: 5px solid #d50013;
  border-bottom: 1px solid #000;
}
.modelhouse_wrap .entry .header .title {
  font-weight: bold;
  font-family: "Sawarabi Gothic";
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .entry .header .title {
    font-size: 32px;
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .entry .header .title {
    font-size: 18px;
    padding: 10px 10px;
  }
}
.modelhouse_wrap .entry .contents {
  display: flex;
  margin-top: 50px;
  gap: 0 2px;
}
.modelhouse_wrap .entry .contents .content {
  flex: 1;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #f0f0f0;
}
.modelhouse_wrap .entry .contents .content.focus {
  background: #000;
}
.modelhouse_wrap .entry .contents .content.focus p {
  color: #fff;
}
.modelhouse_wrap .entry .contents .content p {
  text-align: center;
}
.modelhouse_wrap .entry .contents .content p.popup {
  position: absolute;
  right: 0;
  top: -3rem;
  font-size: 12px;
  width: 5em;
  height: 5em;
  line-height: 5em;
  border-radius: 50%;
  background: #f3ae3d;
  color: #000;
  z-index: 1;
  font-weight: bold;
}
.modelhouse_wrap .entry .contents .content p.popup:after {
  z-index: 0;
  position: absolute;
  display: block;
  content: " ";
  width: 1em;
  height: 1em;
  background: #f3ae3d;
  font-size: inherit;
  right: 3.5em;
  bottom: 3px;
}
.modelhouse_wrap .entry .icons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .entry .icons {
    padding: 30px 0;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .entry .icons {
    padding: 20px 10px;
    justify-content: space-around;
  }
}
.modelhouse_wrap .entry .icons .icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .entry .icons .icon {
    width: 20%;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .entry .icons .icon {
    width: 26%;
  }
}
.modelhouse_wrap .entry .icons .icon .img_wrap {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.modelhouse_wrap .entry .icons .icon .img_wrap .img {
  position: absolute;
  background-color: #ede6da;
  border-radius: 50%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #000; /* テキストの色を設定（任意の色に変更してください） */
  font-size: 20px; /* テキストのフォントサイズを設定（任意のサイズに変更してください） */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modelhouse_wrap .entry .icons .icon .img_wrap .img img {
  display: block;
  max-width: 60%;
  max-height: 60%;
  width: auto;
  height: auto;
}
.modelhouse_wrap .entry .icons .icon .label {
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .entry .icons .icon .label {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .entry .icons .icon .label {
    margin-top: 10px;
    font-size: 12px;
  }
}
.modelhouse_wrap .comment {
  padding: 20px;
  background: #ede6da;
}
.modelhouse_wrap .comment h2 {
  text-align: center;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .comment h2 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .comment h2 {
    font-size: 16px;
    font-weight: bold;
  }
}
.modelhouse_wrap .comment h2:after {
  display: block;
  background: #000;
  width: 100px;
  height: 2px;
  margin: 15px auto 12px;
  content: " ";
}
.modelhouse_wrap .comment .text p {
  line-height: 1.5rem;
}
.modelhouse_wrap .flow h2 {
  font-size: 24px;
  margin: 50px 0;
  text-align: center;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .flow .flow_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .flow .flow_list {
    display: block;
    margin: 0 20px 20px;
  }
}
.modelhouse_wrap .flow .flow_list .flow_item {
  display: flex;
  flex-wrap: wrap;
  border-radius: 0 20px 0 0;
}
@media only screen and (min-width: 960px) {
  .modelhouse_wrap .flow .flow_list .flow_item {
    width: 48%;
  }
}
@media only screen and (max-width: 961px) {
  .modelhouse_wrap .flow .flow_list .flow_item {
    margin-bottom: 20px;
  }
}
.modelhouse_wrap .flow .flow_list .flow_item:nth-of-type(2n + 1) {
  background: #d0d0d0;
}
.modelhouse_wrap .flow .flow_list .flow_item:nth-of-type(2n + 2) {
  background: #d0d0e0;
}
.modelhouse_wrap .flow .flow_list .flow_item .step {
  display: block;
  width: 50px;
  height: 55px;
  padding: 10px;
  background: #fff;
  border-radius: 0 0 30px 0;
}
.modelhouse_wrap .flow .flow_list .flow_item .step span {
  display: block;
  font-size: 10px;
}
.modelhouse_wrap .flow .flow_list .flow_item .step em {
  display: block;
  font-size: 24px;
}
.modelhouse_wrap .flow .flow_list .flow_item .step_title {
  flex: 1;
  padding-top: 18px;
  padding-left: 25px;
  font-size: 16px;
  font-weight: bold;
}
.modelhouse_wrap .flow .flow_list .flow_item .flow_image {
  width: 100%;
  display: flex;
}
.modelhouse_wrap .flow .flow_list .flow_item .flow_image p {
  flex: 1;
}
.modelhouse_wrap .flow .flow_list .flow_item .flow_image p img {
  display: block;
  width: 100%;
}
.modelhouse_wrap .flow .flow_list .flow_item .flow_text {
  width: 100%;
  padding: 20px;
  background: #f0f0f0;
}
.modelhouse_wrap .flow .flow_list .flow_item .flow_text p {
  line-height: 1.5em;
}
.modelhouse_wrap .flow .flow_list .flow_item .flow_text p span {
  font-weight: bold;
  color: #f66;
}
.modelhouse_wrap .contact h2 {
  margin-top: 80px;
  font-size: 24px;
  text-align: center;
}
.modelhouse_wrap .contact h2 i {
  display: inline-block;
}
.modelhouse_wrap .contact h2 i.icon-left {
  margin-right: 20px;
}
.modelhouse_wrap .contact h2 i.icon-right {
  margin-left: 20px;
}

.wf-mplus1p {
  font-family: "M PLUS 1p";
  background: #d50013;
  color: #f3ae3d;
}

.wf-sawarabigothic {
  font-family: "Sawarabi Gothic";
}/*# sourceMappingURL=style.css.map */