@charset "UTF-8";
/******************************************************************

  base

******************************************************************/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", Verdana, Meiryo, sans-serif;
  text-align: center;
  height: 100%;
  letter-spacing: 0.05em;
}

img {
  width: 100%;
  vertical-align: top;
}

ol, ul, dl {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1, h2, h3, h4, h5 {
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 0;
}

a {
  color: #333;
}

p {
  text-align: left;
  line-height: 1.8;
  margin-bottom: 0;
}

a:hover {
  text-decoration: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/******************************************************************

  font-face

*****************************************************************

@font-face {
   font-family: 'Noto Sans Japanese';
   font-style: normal;
   font-weight: 500;
   src: url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Medium.woff2) format('woff2'),
        url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Medium.woff) format('woff'),
        url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Medium.otf) format('opentype');
 }

@font-face {
   font-family: 'Noto Sans Japanese';
   font-style: normal;
   font-weight: 700;
   src: url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.woff2) format('woff2'),
        url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.woff) format('woff'),
        url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.otf) format('opentype');
 }

@font-face {
   font-family: 'Noto Sans Japanese';
   font-style: normal;
   font-weight: 900;
   src: url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Black.woff2) format('woff2'),
        url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Black.woff) format('woff'),
        url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Black.otf) format('opentype');
 }
*/
/******************************************************************

  .main

******************************************************************/
.main {
  margin-top: 54px;
}

/******************************************************************

  .section

******************************************************************/
.section.bg-c {
  background: #E6E6E6;
}

/******************************************************************

  .sub-section

******************************************************************/
.sub-section.bg-c {
  background: #ddd;
}
.sub-section + .sub-section {
  margin-top: 0;
}

/******************************************************************

  .inner

******************************************************************/
.inner {
  padding: 48px 24px;
}

/******************************************************************

  .txt

******************************************************************/
.txt {
  text-align: left;
}

/******************************************************************

  .topic-path

******************************************************************/
.topic-path {
  background: #2E3D4D;
}
.topic-path__lists {
  padding: 8px 24px;
  text-align: left;
}
.topic-path__list {
  display: inline-block;
  position: relative;
  font-size: 1.2rem;
  color: #ddd;
}
.topic-path__list a {
  line-height: 1;
  letter-spacing: 0.1em;
  color: #ddd;
}
.topic-path__list + .topic-path__list {
  padding-left: 16px;
}
.topic-path__list::after {
  content: "";
  position: absolute;
  margin-top: -3px;
  top: 50%;
  right: -10px;
  width: 6px;
  height: 6px;
  border: 1px solid;
  border-color: #999 #999 transparent transparent;
  transform: rotate(45deg);
}
.topic-path__list:nth-last-child(1)::after {
  content: none;
}

/******************************************************************

  margin

******************************************************************/
.mb {
  margin-bottom: 16px !important;
}

/******************************************************************

  align-c

******************************************************************/
.align-c {
  text-align: center;
}

@media (min-width: 980px) {
  /******************************************************************

    body

  ******************************************************************/
  body {
    font-size: 1.6rem;
  }

  /******************************************************************

    .txt

  ******************************************************************/
  .txt {
    line-height: 2;
  }

  /******************************************************************

    .main

  ******************************************************************/
  .main {
    margin-top: 86px;
  }

  /******************************************************************

    .inner

  ******************************************************************/
  .inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 88px 40px;
  }

  /******************************************************************

    .topic-path

  ******************************************************************/
  .topic-path__lists {
    max-width: 1160px;
    padding: 8px 40px;
    margin: 0 auto;
  }
}
/* 800px
----------------------*/
/******************************************************************

  .header

******************************************************************/
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  border-bottom: solid 1px #ddd;
}
.header__inner {
  padding: 8px 16px;
  text-align: left;
}
.header__logo {
  line-height: 1;
  width: 140px;
}
.header__logo span {
  display: none;
}
.header__nav {
  position: fixed;
  left: -80%;
  top: 0;
  z-index: 9998;
  background: #fff;
  width: 80%;
  height: 100vh;
  padding: 24px;
  visibility: hidden;
  transition: 0.5s ease-out;
}
.js_open .header__nav {
  visibility: visible;
  transform: translate3d(100%, 0, 0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.header__ul {
  border-bottom: solid 1px #999;
}
.header__li {
  border-top: solid 1px #999;
}
.header__li .single-link {
  line-height: 1;
  padding: 24px 8px;
  font-weight: bold;
  display: block;
}
.header__li span {
  line-height: 1;
  padding: 24px 8px;
  font-weight: bold;
  display: block;
  cursor: pointer;
  position: relative;
}
.header__li span::after {
  position: absolute;
  top: calc( 50% - 4px );
  right: 16px;
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-color: #333 #333 transparent transparent;
  transform: rotate(45deg);
}
.header__li.js-menu-open .sub-menu {
  max-height: 100vh;
}
.header__contact-btn {
  display: block;
  font-weight: bold;
  padding: 24px 8px;
  border-bottom: solid 1px #999;
  position: relative;
}
.header__contact-btn::after {
  position: absolute;
  top: calc( 50% - 4px );
  right: 16px;
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-color: #333 #333 transparent transparent;
  transform: rotate(45deg);
}
.header .sub-menu {
  max-height: 0;
  transition: max-height 1s ease-out;
  overflow: hidden;
  /*transition: all 0.5s ease-out;*/
  background: #fff;
}
.header .sub-menu__li {
  position: relative;
  border-bottom: solid 1px #ddd;
}
.header .sub-menu__li:nth-last-child(1) {
  border-bottom: none;
}
.header .sub-menu__li a {
  display: block;
  padding: 16px 8px;
}
.header .sub-menu__li a::after {
  position: absolute;
  top: calc( 50% - 4px );
  right: 16px;
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-color: #999 #999 transparent transparent;
  transform: rotate(45deg);
}

/******************************************************************

  .menu-btn

******************************************************************/
.js-global-none {
  display: none !important;
}

/******************************************************************

  .menu-btn

******************************************************************/
.menu-btn {
  position: absolute;
  right: 16px;
  top: 7px;
  width: 36px;
  height: 36px;
  z-index: 9998;
}
.menu-btn__wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.menu-btn__wrap span {
  position: absolute;
  left: 0;
  display: block;
  height: 2px;
  background: #999;
  width: 100%;
  transition: 0.5s ease-in-out;
}
.menu-btn__wrap span:nth-child(1) {
  top: 5px;
}
.menu-btn__wrap span:nth-child(2) {
  top: 50%;
}
.menu-btn__wrap span:nth-child(3) {
  top: calc(100% - 5px);
}
.js_open .menu-btn .menu-btn__wrap span {
  background: #fff;
  width: 120%;
}
.js_open .menu-btn .menu-btn__wrap span:nth-child(1) {
  top: 16px;
  transform: rotate(135deg);
}
.js_open .menu-btn .menu-btn__wrap span:nth-child(2) {
  width: 0;
  opacity: 0;
  background: #000;
}
.js_open .menu-btn .menu-btn__wrap span:nth-child(3) {
  top: 16px;
  transform: rotate(-135deg);
}

/******************************************************************

  .menu-back

******************************************************************/
.menu-back {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(46, 61, 77, 0.9);
  z-index: 9997;
  -webkit-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.js_open .menu-back {
  cursor: pointer;
  opacity: 1;
  visibility: visible;
}

@media (min-width: 980px) {
  /******************************************************************

    .header

  ******************************************************************/
  .header {
    width: 100%;
    height: auto;
    border-bottom: solid 1px #ddd;
  }
  .header__inner {
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__logo {
    padding: 0;
    width: 192px;
  }
  .header__logo span {
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1;
    letter-spacing: 0.2em;
    display: block;
    color: #fff;
    cursor: pointer;
  }
  .header__nav {
    position: static;
    padding: 0;
    width: auto;
    height: auto;
    opacity: 1;
    transition: none;
    visibility: visible;
  }
  .header__nav__inner {
    position: relative;
    padding-top: 48px;
  }
  .header__ul {
    border: none;
    display: flex;
    border-left: solid 1px #ddd;
    border-right: solid 1px #ddd;
  }
  .header__li {
    font-size: 1.4rem;
    border: none;
    width: auto;
  }
  .header__li .single-link {
    padding: 12px 24px 12px 24px;
  }
  .header__li span {
    padding: 12px 24px 12px 24px;
  }
  .header__li span::after {
    content: none;
  }
  .header__li span::before {
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translate(-50%, 0);
    content: "";
    height: 3px;
    width: 0;
    background: #ff5900;
    transition: width 0.15s ease;
  }
  .header__li:hover span::before {
    width: 100%;
  }
  .header__li:hover .sub-menu {
    display: block;
  }
  .header__li + .header__li {
    border-left: solid 1px #ddd;
  }
  .header__contact-btn {
    position: absolute;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    right: 0;
    top: 0;
    padding: 8px 24px;
    border-bottom: none;
    background: #ff5900;
    transition: all 0.15s ease;
  }
  .header__contact-btn::after {
    content: none;
  }
  .header__contact-btn:hover {
    opacity: 0.8;
  }
  .header .sub-menu {
    position: absolute;
    top: 86px;
    right: 0;
    max-height: inherit;
    transition: none;
    display: none;
    width: 100%;
  }
  .header .sub-menu__lists {
    padding: 32px;
    display: flex;
    flex-wrap: wrap;
  }
  .header .sub-menu__li {
    width: 50%;
    border: none;
  }
  .header .sub-menu__li:hover a {
    color: #fff;
    background: #2e3d4d;
  }
  .header .sub-menu__li:hover a::after {
    border-color: #fff #fff transparent transparent;
  }
  .header .sub-menu__li a {
    font-size: 1.4rem;
    padding: 16px 24px;
  }

  /******************************************************************

    .menu-btn

  ******************************************************************/
  .menu-btn {
    display: none;
  }
}
/* 980px
----------------------*/
@media (min-width: 1180px) {
  .header__inner {
    padding: 0 40px;
  }
  .header__li span {
    padding: 12px 40px 12px 40px;
  }
}
/*1180px
----------------------*/
/******************************************************************

  02 footer

******************************************************************/
.footer {
  background: #fff;
  border-top: solid 1px #ddd;
}
.footer__inner {
  text-align: center;
  padding: 24px 0;
}
.footer__logo {
  margin-bottom: 16px;
}
.footer__logo img {
  width: 140px;
}
.footer__lists {
  display: none;
}
.footer__copyright {
  font-size: 1.2rem;
  display: block;
}

@media (min-width: 800px) {
  .footer__inner {
    text-align: left;
    padding: 40px;
  }
  .footer__logo {
    margin-bottom: 32px;
  }
  .footer__lists {
    display: inline-block;
    margin-bottom: 32px;
  }
  .footer__li {
    display: inline-block;
  }
  .footer__li a {
    font-size: 1.2rem;
    padding: 0 32px 0 0;
  }
}
/* 800px
----------------------*/
/******************************************************************

  .main-visual

******************************************************************/
.main-visual {
  height: 50vh;
  background: url(../img/main-visual-pc.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-visual__pos {
  color: #fff;
  position: absolute;
  text-align: left;
  text-align: center;
  z-index: 1;
}
.main-visual__ttl {
  line-height: 1;
  margin-bottom: 24px;
}
.main-visual__ttl img {
  width: 60%;
}
.main-visual__catch {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}
.main-visual::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/******************************************************************

  .content-visual

******************************************************************/
.content-visual {
  text-align: left;
  padding: 32px 24px;
  background-image: url(../img/content-visual-01.jpg);
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.content-visual__ttl {
  position: relative;
  z-index: 1;
  font-size: 1.8rem;
  font-weight: bold;
  /*font-family: 'Noto Sans Japanese', sans-serif;*/
  /*font-weight: 700;*/
  line-height: 1;
  letter-spacing: 0.15em;
  color: #fff;
}
.content-visual::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0) 100%);
}

@media (min-width: 800px) {
  /******************************************************************

    .main-visual

  ******************************************************************/
  .main-visual {
    height: 100vh;
  }
  .main-visual__ttl {
    line-height: 1;
    margin-bottom: 32px;
  }
  .main-visual__ttl img {
    width: 100%;
  }
  .main-visual__catch {
    font-size: 1.6rem;
    line-height: 2.2em;
  }

  /******************************************************************

    .content-visual

  ******************************************************************/
  .content-visual {
    padding: 80px;
  }
  .content-visual__ttl {
    font-size: 2.4rem;
  }
}
/* 800px
----------------------*/
/******************************************************************

  .main-ttl

******************************************************************/
.main-ttl {
  text-align: center;
  color: #2e3d4d;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 700;
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.main-ttl::after {
  content: "";
  position: absolute;
  left: calc(50% - 20px);
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #999;
}

/******************************************************************

  .catch

******************************************************************/
.catch {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

/******************************************************************

  .sub-ttl

******************************************************************/
.sub-ttl {
  text-align: left;
  color: #2e3d4d;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 700;
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.sub-ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #999;
}

/******************************************************************

  .accent-ttl

******************************************************************/
.accent-ttl {
  text-align: left;
  color: #2e3d4d;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 700;
  position: relative;
  margin-bottom: 16px;
  padding-left: 24px;
  position: relative;
}

.accent-ttl::after {
  content: "";
  position: absolute;
  top: calc( 50% - 6px );
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid;
  border-color: #999 #999 transparent transparent;
  transform: rotate(45deg);
}

/******************************************************************

  .news-ttl

******************************************************************/
.news-ttl {
  color: #2e3d4d;
  font-size: 1.8rem;
  padding-bottom: 16px;
  margin-bottom: 16px;
  text-align: left;
  border-bottom: solid 2px #ddd;
}
.news-ttl .news-time {
  font-size: 1.4rem;
  color: #999;
  display: block;
  font-weight: normal;
}

@media (min-width: 800px) {
  /******************************************************************

    .main-ttl

  ******************************************************************/
  .main-ttl {
    font-size: 3rem;
    padding-bottom: 32px;
    margin-bottom: 32px;
  }

  /******************************************************************

    .catch

  ******************************************************************/
  .catch {
    font-size: 1.8rem;
    margin-bottom: 56px;
  }

  /******************************************************************

    .sub-ttl

  ******************************************************************/
  .sub-ttl {
    font-size: 3rem;
    padding-bottom: 32px;
    margin-bottom: 32px;
  }

  /******************************************************************

    .accent-ttl

  ******************************************************************/
  .accent-ttl {
    font-size: 3rem;
    margin-bottom: 32px;
    padding-left: 32px;
  }

  .accent-ttl::after {
    top: calc( 50% - 7px );
    width: 15px;
    height: 15px;
  }

  /******************************************************************

    .news-ttl

  ******************************************************************/
  .news-ttl {
    font-size: 3rem;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .news-ttl .news-time {
    font-size: 1.6rem;
  }
}
/* 840px
----------------------*/
/******************************************************************

  .content-column

******************************************************************/
.content-column .txt-area {
  margin-bottom: 24px;
}

/******************************************************************

  .map

******************************************************************/
.map {
  margin-top: 24px;
  height: 0;
  overflow: hidden;
  padding-bottom: 40%;
  position: relative;
  border-radius: 4px;
}
.map iframe {
  border: 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

@media (min-width: 800px) {
  /******************************************************************

    .content-column

  ******************************************************************/
  .content-column {
    display: flex;
  }
  .content-column .txt-area {
    width: calc(100% - 320px);
    padding-right: 40px;
    margin-bottom: 0;
  }
  .content-column .txt {
    line-height: 2em;
  }
  .content-column .photo-area {
    width: 320px;
  }

  /******************************************************************

    .map

  ******************************************************************/
  .map {
    margin-top: 40px;
  }
}
/* 800px
----------------------*/
/******************************************************************

  .contents-row

******************************************************************/
.contents-row__txt {
  text-align: left;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.contents-row__figure {
  display: block;
  width: 100%;
  order: 2;
  margin-top: 24px;
}

/******************************************************************

  .contents-typeA

******************************************************************/
.contents-typeA {
  text-align: left;
  border-top: solid 1px #999;
}
.contents-typeA__content {
  display: block;
  padding: 16px 24px 16px 0;
  border-bottom: solid 1px #999;
  position: relative;
}
.contents-typeA__content::after {
  position: absolute;
  top: calc( 50% - 4px );
  right: 16px;
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-color: #999 #999 transparent transparent;
  transform: rotate(45deg);
}
.contents-typeA__time {
  font-size: 1.2rem;
  font-weight: normal;
  color: #999;
  line-height: 1;
  margin-bottom: 4px;
}
.contents-typeA__txt {
  font-weight: bold;
}

/******************************************************************

  .contents-typeB

******************************************************************/
.contents-typeB {
  text-align: left;
}
.contents-typeB__content {
  display: flex;
  flex-wrap: wrap;
  border: solid 1px #ddd;
  background: #fff;
  padding: 16px;
  margin-bottom: 8px;
  box-shadow: 2px 2px 8px #999;
  position: relative;
}
.contents-typeB__content::after {
  position: absolute;
  top: calc( 50% - 4px );
  right: 16px;
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-color: #999 #999 transparent transparent;
  transform: rotate(45deg);
}
.contents-typeB__photo {
  width: 100%;
  padding-top: 48%;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}
.contents-typeB__photo img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0 auto;
  width: 100%;
  height: auto;
}
.contents-typeB__time {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1;
  color: #999;
  display: block;
  margin-bottom: 8px;
}
.contents-typeB__ttl {
  font-size: 1.4rem;
  margin-bottom: 0;
}

/******************************************************************

  .contents-typeC

******************************************************************/
.contents-typeC {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
  justify-content: space-evenly;
}
.contents-typeC__content {
  display: block;
  width: 49%;
  border: solid 1px #ddd;
  box-shadow: 2px 2px 8px #999;
  background: #fff;
  padding: 12px;
  margin-bottom: 2%;
  text-align: left;
}
.contents-typeC__photo {
  width: 100%;
  padding-top: 80%;
  margin-bottom: 8px;
  overflow: hidden;
  position: relative;
}
.contents-typeC__photo img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0 auto;
  width: auto;
  height: 100%;
}
.contents-typeC__time {
  font-size: 1.2rem;
  font-weight: normal;
  color: #999;
  display: block;
  margin-bottom: 8px;
}
.contents-typeC__ttl {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #2e3d4d;
}
.contents-typeC__content-ttl {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #2e3d4d;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: solid 1px #999;
}

@media (min-width: 800px) {
  /******************************************************************

    .contents-row

  ******************************************************************/
  .contents-row__txt {
    line-height: 2;
    width: 100%;
    display: block;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .contents-row__figure {
    display: block;
    float: right;
    width: 40%;
    order: 0;
    margin-top: 0;
    margin-left: 40px;
  }

  /******************************************************************

    .contents-typeA

  ******************************************************************/
  .contents-typeA {
    max-width: 800px;
    margin: 0 auto;
  }
  .contents-typeA__content:hover .txt {
    text-decoration: underline;
  }

  /******************************************************************

    .contents-typeB

  ******************************************************************/
  .contents-typeB {
    display: flex;
    flex-wrap: wrap;
  }
  .contents-typeB__content {
    display: block;
    width: 32%;
    padding: 24px;
    margin-bottom: 2%;
    margin-right: 2%;
  }
  .contents-typeB__content::after {
    content: none;
  }
  .contents-typeB__content:nth-child(3n) {
    margin-right: 0;
  }
  .contents-typeB__content:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
  .contents-typeB__content:hover img {
    transform: scale(1.2, 1.2);
  }
  .contents-typeB__photo {
    width: 100%;
    padding-top: 64%;
    margin-bottom: 16px;
  }
  .contents-typeB__photo img {
    transition: all 0.2s ease-out;
  }
  .contents-typeB__time {
    margin-bottom: 16px;
  }

  /******************************************************************

    .contents-typeC

  ******************************************************************/
  .contents-typeC {
    justify-content: none;
  }
  .contents-typeC__content {
    width: 32%;
    padding: 24px;
    margin-bottom: 2%;
  }
  .contents-typeC__content::after {
    content: none;
  }
  .contents-typeC__content:nth-child(3n) {
    margin-right: 0;
  }
  .contents-typeC__content:hover img {
    transform: scale(1.2, 1.2);
  }
  .contents-typeC__photo {
    padding-top: 72%;
    margin-bottom: 16px;
  }
  .contents-typeC__photo img {
    transition: all 0.2s ease-out;
  }
  .contents-typeC__time {
    margin-bottom: 8px;
  }
  .contents-typeC__ttl {
    font-size: 1.8rem;
  }
  .contents-typeC__content-ttl {
    font-size: 1.8rem;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
/* 840px
----------------------*/
/******************************************************************

  .main-button

******************************************************************/
.main-button {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  width: 200px;
  padding: 16px 24px;
  letter-spacing: 0.2rem;
  background: #2e3d4d;
  text-align: center;
  margin-top: 24px;
}

@media (min-width: 800px) {
  /******************************************************************

    .main-button

  ******************************************************************/
  .main-button {
    margin-top: 64px;
    transition: all 0.25s ease;
  }

  .main-button:hover {
    opacity: 0.8;
  }
}
/* 800px
----------------------*/
/******************************************************************

  .table

******************************************************************/
.table {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  width: 100%;
  text-align: left;
  background: #fff;
}
.table tr {
  border-bottom: 1px solid #ccc;
}
.table th {
  font-weight: bold;
  color: #fff;
  position: relative;
  background-color: #2E3D4D;
}
.table th span {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 1rem;
  display: inline-block;
  padding: 2px 6px;
  color: #fff;
  background: red;
}
.table th:nth-last-child(1) {
  border-right: none;
}
.table .example {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}
.table th, .table td {
  width: 100%;
  display: block;
  padding: 16px;
}
.table .dummy-img {
  width: auto;
  height: 17px;
  line-height: 1;
  display: block;
}

@media (min-width: 800px) {
  /******************************************************************

    .table

  ******************************************************************/
  .table th {
    width: 30%;
    /*border-right: 1px solid #c4c9d9;*/
  }
  .table td {
    width: 70%;
  }
  .table th, .table td {
    display: table-cell;
  }
  .table + .arrow-ttl {
    margin-top: 32px;
  }
  .table input {
    width: 60%;
  }
  .table textarea {
    width: 100%;
  }
}
/* 800px
----------------------*/
/******************************************************************

  .clean-frame

******************************************************************/
.clean-frame {
  padding: 16px;
  background: #F6F7F9;
  border: solid 1px #C4C9D9;
  border-radius: 4px;
  text-align: left;
  margin-bottom: 24px;
}
.clean-frame__ttl-main {
  font-size: 1.8rem;
  background: #304747;
  color: #fff;
  border-radius: 4px;
  padding: 8px 0 8px 32px;
  position: relative;
  margin-bottom: 8px;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.clean-frame__ttl-main::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 10px;
  width: 4px;
  height: calc( 100% - 20px );
  background: #886931;
}
.clean-frame__photo {
  width: 100%;
  margin-bottom: 16px;
  /*padding-top: 52.5%;*/
  background-size: cover !important;
  background-position: center !important;
  overflow: hidden;
}
.clean-frame__photo.clean-photo-01 {
  background: url(../img/clean-photo-01.jpg);
}
.clean-frame__photo.clean-photo-02 {
  background: url(../img/clean-photo-02.jpg);
}
.clean-frame__photo.clean-photo-03 {
  background: url(../img/clean-photo-03.jpg);
}
.clean-frame__photo.clean-photo-04 {
  background: url(../img/clean-photo-04.jpg);
}
.clean-frame__photo .img {
  display: block;
  overflow: hidden;
  border-radius: 4px;
}
.clean-frame__ttl-sub {
  font-size: 1.4rem;
  margin-bottom: 8px;
  padding: 6px 28px;
  border-radius: 4px;
  position: relative;
  background: #dbdfdf;
  background: #fff;
  border: solid 1px #dbdfdf;
}
.clean-frame__ttl-sub::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-color: #886931 #886931 transparent transparent;
  transform: rotate(45deg);
}
.clean-frame__catch {
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 24px;
}
.clean-frame__catch span {
  font-size: 1.2rem;
  font-weight: normal;
  display: block;
  margin-top: 14px;
}
.clean-frame__lists {
  text-align: left;
  margin-bottom: 24px;
  padding: 16px;
  background: #fff;
}
.clean-frame__lists li {
  font-size: 1.4rem;
  display: inline-block;
  padding-left: 18px;
  position: relative;
}
.clean-frame__lists li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  background: #304747;
  border-radius: 4px;
}
.clean-frame__time {
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  font-weight: bold;
  text-align: left;
  padding: 8px 24px 8px 42px;
  position: relative;
  background: #fff;
}
.clean-frame__time span {
  font-size: 1.6rem;
  position: relative;
  top: -1px;
}
.clean-frame__time::after {
  content: "";
  position: absolute;
  left: 20px;
  top: calc( 50% - 5px );
  width: 10px;
  height: 10px;
  background: #304747;
  border-radius: 5px;
}
.clean-frame__price {
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 900;
  padding-top: 12px;
  margin-top: 12px;
  border-top: dotted 1px #C4C9D9;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: right;
  color: #FF4E00;
  line-height: 1;
}
.clean-frame__price.mg-b {
  margin-bottom: 24px;
}
.clean-frame__price .en {
  font-size: 2rem;
  color: #FF4E00;
  position: relative;
  top: -2px;
}
.clean-frame__price .tax {
  font-size: 1.2rem;
  position: relative;
  top: -2px;
  margin-left: -12px;
}
.clean-frame__caution-txt {
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.clean-frame__lists + .clean-frame__caution-txt {
  margin-top: -16px;
}

/******************************************************************

  .caution-frame

******************************************************************/
.caution-frame {
  padding: 24px;
  border: solid 1px #C4C9D9;
  border-radius: 4px;
  text-align: left;
  margin-bottom: 24px;
}
.caution-frame__ttl {
  font-size: 1.6rem;
  font-weight: bold;
  color: #FF4E00;
  line-height: 1;
  margin-bottom: 4px;
}
.caution-frame__list {
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 12px 0;
}
.caution-frame__list + .caution-frame__list {
  border-top: dotted 1px #C4C9D9;
}

/******************************************************************

  .clean-message

******************************************************************/
.clean-message {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: #886931;
  margin-top: 24px;
  margin-bottom: 40px;
}

/******************************************************************

  .set-frames

******************************************************************/
.set-frames__frame {
  padding: 16px;
  background: #F5F2F2;
  margin-bottom: 8px;
}
.set-frames__frame:nth-last-child(1) {
  margin-bottom: 0;
}
.set-frames__ttl {
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 700;
  text-align: left;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: solid 3px #C2943D;
}
.set-frames__txt {
  font-size: 1.4rem;
  text-align: left;
  padding: 16px;
  background: #fff;
  border-radius: 4px;
}
.set-frames__lists {
  text-align: left;
  margin-bottom: 24px;
  padding: 16px;
  background: #fff;
}
.set-frames__lists li {
  font-size: 1.4rem;
  display: block;
  padding-left: 18px;
  position: relative;
}
.set-frames__lists li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  background: #304747;
  border-radius: 4px;
}

@media (min-width: 800px) {
  /******************************************************************

    .clean-frame

  ******************************************************************/
  .clean-frame {
    padding: 48px;
    margin-bottom: 40px;
  }
  .clean-frame__clean-menu {
    display: flex;
  }
  .clean-frame__photo {
    /*padding-top: 30%;*/
    width: calc( ( 532 / 984 ) * 100% );
    margin-bottom: 0;
  }
  .clean-frame__ttl-sub {
    font-size: 1.6rem;
    margin-bottom: 8px;
    padding: 8px 28px;
  }
  .clean-frame__ttl-sub::after {
    left: 8px;
    top: 50%;
    margin-top: -5px;
    width: 9px;
    height: 9px;
  }
  .clean-frame__menu {
    width: calc( ( 412 / 984 ) * 100% );
    margin-left: calc( ( 40 / 984 ) * 100% );
  }
  .clean-frame__ttl-main {
    font-size: 2.6rem;
    padding: 12px 0 12px 56px;
    margin-bottom: 24px;
  }
  .clean-frame__ttl-main::after {
    top: 16px;
    left: 32px;
    height: calc( 100% - 32px );
  }
  .clean-frame__catch {
    margin-bottom: 40px;
  }
  .clean-frame__time {
    font-size: 2.6rem;
  }
  .clean-frame__price {
    font-size: 4rem;
  }
  .clean-frame__price .en {
    font-size: 2.4rem;
  }
  .clean-frame__price .tax {
    font-size: 1.6rem;
  }

  /******************************************************************

    .caution-frame

  ******************************************************************/
  .caution-frame {
    margin-bottom: 40px;
  }

  /******************************************************************

    .clean-message

  ******************************************************************/
  .clean-message {
    font-size: 2.4rem;
  }

  /******************************************************************

    .set-frames

  ******************************************************************/
  .set-frames__frame {
    padding: 24px;
    background: #F5F2F2;
    border-radius: 4px;
    margin-bottom: 24px;
  }
  .set-frames__ttl {
    text-align: left;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 24px;
    padding-left: 12px;
    border-left: solid 3px #C2943D;
  }
  .set-frames__txt {
    width: 100%;
    text-align: left;
    padding: 16px;
    background: #fff;
  }
}
/* 800px
----------------------*/
/******************************************************************

  .pagination

******************************************************************/
.pagination {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.pagination span,
.pagination a {
  display: block;
  width: auto;
  margin: 4px;
  padding: 8px 14px;
  border: 1px solid #c4c9d9;
  background-color: #fff;
  text-decoration: none;
  text-align: center;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.pagination a:hover,
.pagination .current {
  color: #fff !important;
  border-color: #304747;
  background-color: #304747;
}
.pagination .prev {
  margin-right: 16px;
}
.pagination .next {
  margin-left: 16px;
}
.pagination .page_num {
  display: none;
}

/******************************************************************

  .thumbnail-pagination

******************************************************************/
.thumbnail-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.thumbnail-pagination__photo {
  margin-bottom: 8px;
  border: solid 1px #000;
}
.thumbnail-pagination__btn {
  display: block;
  width: 30%;
  display: block;
}
.thumbnail-pagination__btn:nth-child(1) {
  text-align: left;
}
.thumbnail-pagination__btn:nth-child(1) .thumbnail-pagination__ttl {
  padding-left: 16px;
  position: relative;
}
.thumbnail-pagination__btn:nth-child(1) .thumbnail-pagination__ttl::after {
  content: "";
  left: 0;
  border-color: transparent transparent #0099ff #0099ff;
}
.thumbnail-pagination__btn:nth-child(2) {
  text-align: right;
}
.thumbnail-pagination__btn:nth-child(2) .thumbnail-pagination__ttl {
  padding-right: 16px;
  position: relative;
}
.thumbnail-pagination__btn:nth-child(2) .thumbnail-pagination__ttl::after {
  right: 0;
  border-color: #0099ff #0099ff transparent transparent;
}
.thumbnail-pagination__ttl {
  color: #0099ff;
}
.thumbnail-pagination__ttl::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border: 2px solid;
  transform: rotate(45deg);
}

@media (min-width: 800px) {
  /******************************************************************

    .pagination

  ******************************************************************/
  .pagination {
    margin-top: 80px;
  }

  /******************************************************************

    .pagination

  ******************************************************************/
  .thumbnail-pagination {
    margin-top: 80px;
  }
}
/* 800px
----------------------*/
/******************************************************************

  .content-txt

******************************************************************/
.content-txt {
  overflow: hidden;
}

.content-txt + .content-txt {
  margin-top: 24px;
}

.content-txt .photo {
  max-width: 100%;
  margin-bottom: 16px;
  display: block;
}

/******************************************************************

  .service-img

******************************************************************/
.service-img {
  text-align: center;
}
.service-img__img {
  max-width: 640px;
}

/******************************************************************

  .input

******************************************************************/
input[type=text],
input[type=email],
input[type=tel],
input[type=password],
select,
textarea {
  padding: 1.2rem 1.6rem;
  width: 100%;
  font-size: 1.6rem;
  background: #eee;
}

/******************************************************************

  textarea

******************************************************************/
textarea {
  resize: none;
}

/******************************************************************

  .map

******************************************************************/
.map {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.map frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 800px) {
  /******************************************************************

    .content-txt

  ******************************************************************/
  .content-txt .photo {
    width: 40%;
    margin-bottom: 0;
  }

  .content-txt.left .photo {
    float: left;
    margin-right: 24px;
  }

  .content-txt.right .photo {
    float: right;
    margin-left: 24px;
  }

  .content-txt + .content-txt {
    margin-top: 48px;
  }

  /******************************************************************

    .map

  ******************************************************************/
  .map {
    padding-bottom: 40%;
  }
}
/* 800px
----------------------*/