@charset "UTF-8";

/* 1.共通設定(setting)
======================================*/

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  height: 100%;

  
  font-size: 16px;
  font-size: 1.6rem;
  /* font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Sans", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif; */
  color: #121212;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.1em;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-display: swap;
  line-height: 1.8;
}

body.fix {
  z-index: 1;
  overflow: hidden;
  width: 100%;
  left: 0;
  top: 0;
}

hr {
  margin: 0;
  border-top-color: #d7d6d3;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #e60012;
}

.flex, .flex_breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex .l-box, .flex .r-box {
  width: 50%;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
button {
  cursor: pointer;
}

.btn {
  margin-top: 1em;
}

.btn > a {
  display: inline-block;
  width: 360px;
  max-width: 100%;
  border: 1px solid;
  padding: .94em .5em;
  color: inherit;
  font-weight: 600;
  letter-spacing: .05em;
  text-indent: .05em;
  text-align: center;
  text-decoration: none;
  transition: .5s;
}

.btn > a:hover {
  background-color: #121212;
  color: #fff;
}

.cen {
  text-align: center;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  hr {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  
  .btn {
    text-align: center;
  }

  .btn > a {
    width: 305px;
  }
  
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

section {
  padding: 100px 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}

#wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* setting-end */

/* 2.ヘッダー(header)
======================================*/

.header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 1;
  pointer-events: none;
}

.menu_pc {
  color: #fff;
}

.menu_pc a {
  color: inherit;
  text-decoration: none;
  pointer-events: auto;
}

.menu_pc__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu_pc__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.menu_pc__list > li {
  margin-right: 3vw;
}

.menu_pc__list > li > a {
  display: block;
  margin-top: .8em;
  transition: .5s;
}

.menu_pc__list > li > a:hover {
  opacity: .5;
}

.menu_pc__list > li > a::after {
  content: '';
  display: block;
  width: 1px;
  height: .5em;
  margin: .3em auto 0;
  border-right: 1px solid;
}

.menu_pc__contact > a {
  display: block;
  border: 3px solid #fff;
  padding: .7em 3vw;
  transition: .5s;
}

.menu_pc__contact > a:hover {
  background-color: #fff;
  color: #121212;
}

@media screen and (max-width: 1300px) {
  .header {
    padding: 20px;
  }
  
  .menu_pc {
    font-size: 1.4rem;
  }

  .menu_pc__list > li {
    margin-right: 2vw;
  }

  .menu_pc__contact > a {
    padding-right: 2vw;
    padding-left: 2vw;
  }
}

@media screen and (max-width: 1000px) {
  .menu_pc {
    font-size: 1.3rem;
  }

  .menu_pc__list > li {
    margin-right: 1.5vw;
  }
  
  .menu_pc__contact > a {
    border-width: 2px;
  }
}

@media screen and (max-width: 768px) {
  .header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    position: fixed;
    bottom: 0;
    transition: background-color .5s;
    pointer-events: none;
  }
  
  body.fix .header {
    background-color: rgba(255,255,255,.9);
    pointer-events: auto;
  }
  
  .navi_btn > a {
    display: block;
    width: 50px;
    height: 50px;
    margin-left: auto;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    pointer-events: auto;
    cursor: pointer;
  }
  
  .navi_btn > a > span {
    display: block;
    position: absolute;
    width: 50%;
    height: 1px;
    margin: auto;
    border-top: 1px solid #000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: transform .5s;
  }

  .navi_btn > a > span:nth-of-type(1) {
    transform: translateY(-4px);
  }

  .navi_btn > a > span:nth-of-type(2) {
    transform: translateY(4px);
  }

  .navi_btn.active > a > span:nth-of-type(1) {
    transform: rotate(45deg);
  }

  .navi_btn.active > a > span:nth-of-type(2) {
    transform: rotate(135deg);
  }
  
  .menu_sp {
    display: none;
    margin: auto 0;
  }

  .menu_sp__list {
    text-align: center;
  }

  .menu_sp__list > li {
    margin-bottom: 2.1em;
    line-height: 1;
  }

  .menu_sp__list > li > a {
    color: inherit;
    text-decoration: none;
    letter-spacing: .05em;
  }

  .menu_sp__btn {
    margin-top: 1.25em;
  }

  .menu_sp__btn > a {
    width: 305px;
    margin: 0 auto;
  }

  .menu_sp__btn--tel > a {
    font-size: 1.4rem;
    letter-spacing: .1em;
  }

  .menu_sp__btn--tel > a > span {
    margin-left: .5em;
    font-size: 1.57em;
    letter-spacing: .1em;
  }

  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .flex_breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

}

/* header-end */

/* 3.フッター(footer)
======================================*/

.page_top {
  display: none;
}

.footer {
  background-color: #f8f7f4;
  font-weight: 500;
}

.footer .l-box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 15px;
}

.footer .l-box__inner {
  max-width: 100%;
}

.footer__name {
  font-size: 3.0rem;
}

.footer__add {
  margin-top: 1.2em;
  letter-spacing: .1em;
}

.footer__tel {
  margin-top: .5em;
}

.footer__tel > span {
  display: inline-block;
  margin-left: .5em;
  color: inherit;
  text-decoration: none;
  font-size: 2em;
}

.footer__nav {
  margin-top: 40px;
  line-height: 1;
  font-size: 1.3rem;
  letter-spacing: .05em;
}

.footer__nav li {
  display: inline-block;
}

.footer__nav li + li {
  margin-left: .8em;
  border-left: 1px solid;
  padding-left: .8em;
}

.footer__nav a {
  color: inherit;
  text-decoration: none;
}

.footer__nav a:hover {
  color: #e60012;
}

.footer .copy {
  margin-top: 30px;
  font-size: 1.3rem;
  letter-spacing: .1em;
}

@media screen and (max-width: 768px){
  .footer .flex {
    flex-wrap: wrap-reverse;
  }

  .footer .l-box,
  .footer .r-box {
    width: 100%;
  }

  .footer .r-box iframe {
    height: 290px;
  }

  .footer .l-box {
    text-align: center;
  }

  .footer .l-box__inner {
    margin-top: 56px;
    margin-bottom: 98px;
  }

  .footer__add {
    font-size: 1.5rem;
  }

  .footer__add span {
    display: inline-block;
  }

  .footer__btn {
    margin-top: 20px;
  }
  
  .footer__btn--tel {
    font-size: 1.4rem;
  }

  .footer__btn--tel span {
    margin-left: .5em;
    font-size: 1.57em;
  }

  .footer__nav {
    margin-top: 30px;
  }
}


/* footer-end */

/* 4.共通コンポーネント(common)
======================================*/

.sec_tit {
  font-weight: 500;
  font-size: 2.6rem;
  letter-spacing: .1em;
  text-align: center;
}
.sec_tit::before {
  content: '';
  display: block;
  width: 1.12em;
  height: 1em;
  margin: 0 auto .5em;
  border: .12em solid #dd1414;
  border-bottom-color: transparent;
}

.sec_tit_en {
  color: #da0202;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .3em;
  text-indent: .3em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sec_tit {
    font-size: 2.0rem;
  }

  .sec_tit::before {
    width: 1.45em;
    height: 1.275em;
    margin-bottom: .65em;
    border-width: .15em;
  }
}


/* common-end */

/* 5.メインビジュアル(mv)
======================================*/

.mv {
  margin: 0;
  height: 100vh;
  padding-top: 90px;
  background: url(../images/top/mv.jpg) no-repeat center center/cover;
  position: relative;
  z-index: 0;
  color: #fff;
}

.mv::before {
  content: '';
  display: block;
  background-color: rgba(0,0,0,.7);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.mv__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.mv__text {
  margin-top: 1.1em;
  line-height: 1.6;
  font-size: 5.0rem;
  letter-spacing: .2em;
  text-indent: .2em;
}

@media (max-width: 1460px) {
  .mv__catch img {
    width: calc(187 / 1460 * 100vw);
  }
  
  .mv__text {
    font-size: calc(50 / 1460 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .mv {
    padding-top: 0;
    background-image: url(../images/top/mv_sp.jpg);
  }
  
  .mv__catch img {
    width: 93px;
  }

  .mv__text {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 480px) {

}

/* mv-end */

/* 6.トップページ(top)
======================================*/

.top_sec00 {
  padding: 0;
}

.main_top_text {
  padding: 120px 0 20px;
  line-height: 2.666;
  font-size: 1.8rem;
  letter-spacing: .1em;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .main_top_text {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .main_top_text {
    padding: 40px 0 0;
    line-height: 2.222;
    font-size: 1.8rem;
    text-align: left;
  }

  .main_top_text br {
    display: none;
  }
}

.reason_list {
  margin-top: 40px;
  text-align: center;
}

.reason_list ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.reason_list li {
  width: 100%;
}

.reason_list li + li {
  margin-left: .5em;
}

.reason_list_num {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1;
  font-size: 1.4rem;
  letter-spacing: .1em;
  text-indent: .1em;
}

.reason_list_num span {
  display: block;
  margin-top: .05em;
  font-size: 2.5em;
  letter-spacing: .1em;
  text-indent: .1em;
}

.reason_list_img {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 122px;
  margin-top: 33px;
}

.reason_list_text {
  margin-top: 1em;
  line-height: 1.6;
}

.reason_list_text > span {
  display: inline-block;
}

@media screen and (max-width: 1300px) {
  .reason_list_text {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 1000px) {
  .reason_list_text {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .reason_list ul {
    display: block;
  }

  .reason_list li + li {
    margin-top: 40px;
    margin-left: 0;
  }

  .reason_list_img {
    height: auto;
  }
  
  .reason_list_text {
    font-size: 1.6rem;
  }

  .reason_list_text > span {
    display: inline;
  }  
}

.top_sec02 {
  background-color: #f8f7f4;
}

.top_sec02 .inner {
  max-width: 1560px;
}

.reform_list {
  margin-top: 30px;
}

.reform_list ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: -50px;
  margin-left: -50px;
}

.reform_list li {
  width: 264px;
  margin-top: 50px;
  margin-left: 50px;
}

.reform_list img {
  width: 100%;
}

.reform_list figcaption {
  margin-top: .7em;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: .1em;
  text-align: center;
}

.reform_list figcaption::after {
  content: '';
  display: block;
  width: 1.666em;
  height: 1px;
  border-top: 1px solid;
  margin: .6em auto 0;
}

@media screen and (max-width: 768px) {
  .reform_list ul {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: -30px;
    margin-left: 0;
  }

  .reform_list li {
    width: 47%;
    margin-top: 30px;
    margin-left: 0;
  }

  .reform_list figure {
    display: table;
  }

  .reform_list li:nth-of-type(odd) figure {
    margin-left: auto;
  }

  .reform_list li:nth-of-type(even) figure {
    margin-right: auto;
  }
  
  .reform_list img {
    width: auto;
  }

  .reform_list figcaption {
    font-size: 1.1rem;
  }

  .reform_list figcaption::after {
    width: 1.6em;
  }
}

.top_sec03 .inner {
  max-width: 1560px;
}

.works_list {
  margin-top: 80px;
}

.works_list > ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.works_list > ul > li {
  width: 48%;
  position: relative;
}

.works_list > ul > li:nth-of-type(n+3) {
  margin-top: 60px;
  border-top: 1px solid #d7d6d3;
  padding-top: 60px;
}

.works_list > ul > li:nth-of-type(2n+3)::before {
  content: '';
  display: block;
  position: absolute;
  top: -1px;
  left: 100%;
  width: 100px;
  height: 1px;
  border-top: 1px solid #d7d6d3;
}

.works_list > ul > li > ol {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;-ms-grid-row-align: flex-end;
  align-items: flex-end;
}

.works_list_before {
  flex-grow: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.works_list_before::after {
  content: '';
  display: block;
  width: 45px;
  height: 10px;
  margin: 0 auto;
  border-bottom: 1px solid;
  border-right: 1.414px solid;
  transform-origin: right bottom;
  transform: skewX(45deg);
}

.works_list_after {
  position: relative;
  margin-left: 10px;
}

.works_list_before figcaption,
.works_list_after figcaption {
  padding: 1.2em 1.8em 0 1em;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: 'Roboto', sans-serif;
  line-height: 1;
  letter-spacing: .3em;
}

.works_list_before figure {
  margin-right: 10px;
}

.works_list_before figcaption {
  font-size: 1.5rem;
}

.works_list_after figcaption {
  font-size: 2.2rem;
}

.works_img_before {
    width: 100%;
    max-width: 200px;
}
.works_img_after {
    width: 100%;
    max-width: 430px;
}
.works_img_before img,.works_img_after img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .works_img_before {
      width: 100%;
      max-width: 90px;
  }
  .works_img_after {
      width: 100%;
      max-width: 175px;
  }
}

@media (max-width: 1460px) {
  .works_list_before figcaption {
    font-size: calc(15 / 1460 * 100vw);
  }
  
  .works_list_after figcaption {
    font-size: calc(22 / 1460 * 100vw); 
  }
}

@media screen and (max-width: 768px) {
  .works_list {
    margin-top: 0;
  }

  .works_list > ul > li:nth-of-type(n+3) {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
  }

  .works_list > ul > li:nth-of-type(2n+3)::before {
    content: none;
  }
  
  .works_list > ul > li:not(:root) {
    width: 100%;
    border-bottom: 1px solid #d7d6d3;
    padding: 30px 0;
  }

  .works_list_before figcaption,
  .works_list_after figcaption {
    padding: 1em 1em 0 1.3em;
  }
  
  .works_list_before figcaption {
    font-size: calc(7.5 / 375 * 100vw);
  }

  .works_list_after figcaption {
    font-size: calc(10.5 / 375 * 100vw);
  }
}

.top_sec04 {
  background-color: #f8f7f4;
}

.flow_list {
  counter-reset: flow_list_counter;
}

.flow_list > li {
  margin-top: 60px;
  padding-left: 109px;
  position: relative;
}

.flow_list > li::before {
  content: '0' counter(flow_list_counter);
  counter-increment: flow_list_counter;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2.7em;
  height: 2.7em;
  border: 1px solid;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: -.75em;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 3.0rem;
}

.flow_list_tit {
  font-weight: 600;
  font-size: 2.2rem;
  letter-spacing: .1em;
}

.flow_list_tit::after {
  content: '';
  display: block;
  width: 2em;
  height: 1px;
  margin-top: .46em;
  border-top: 1px solid;
}

.flow_list_text {
  margin-top: .94em;
  font-size: 1em;
  line-height: 2;
  letter-spacing: .1em;
}

.flow_list_tel {
  font-weight: 500;
  line-height: 2;
  font-size: 1em;
  letter-spacing: .1em;
}

.flow_list_tel > a,
.flow_list_tel > span {
  margin-left: .2em;
  color: inherit;
  font-size: 2em;
  letter-spacing: .1em;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .flow_list > li {
    padding-left: 54.5px;
  }

  .flow_list > li::before {
    top: -.45em;
    font-size: 1.5rem;
  }

  .flow_list_tit {
    font-size: 1.6rem;
  }

  .flow_list_tit::after {
    margin-top: .8em;
  }

  .flow_list_text {
    font-size: 1.5rem;
  }

  .flow_list_text br {
    display: none;
  }

  .flow_list_tel {
    font-size: 1.5rem;
  }

  .flow_list_tel > a,
  .flow_list_tel > span {
    font-size: 1.666em;
  }
}

.top_sec05 .flex {
  align-items: center;
  padding-bottom: 100px;
}

.top_sec05 .l-box {
  width: auto;
  max-width: calc(46% - 25px);
  position: relative;
  z-index: 0;
}

.top_sec05 .l-box::after {
  content: '';
  display: block;
  background-color: #f8f7f4;
  position: absolute;
  top: 50%;
  right: 15%;
  bottom: -100px;
  left: calc(50% - 50vw);
  z-index: -1;
}

.top_sec05 .r-box {
  width: calc(50% + 25px);
}

.top_sec05_tit {
  font-size: 3.0rem;
  letter-spacing: .15em;
  line-height: 1.73;
  font-weight: 600;
}

.top_sec05_tit > span {
  color: #e60012;
}

.top_sec05_text {
  margin-top: 2em;
  font-size: 1em;
  line-height: 2;
  letter-spacing: .1em;
}

.top_sec05_tel {
  margin-top: 1em;
  font-weight: 500;
  font-size: 1em;
  line-height: 2;
  letter-spacing: .1em;
}

.top_sec05_tel > a,
.top_sec05_tel > span {
  margin-left: .5em;
  color: inherit;
  text-decoration: none;
  font-size: 2em;
  letter-spacing: .1em;
}

@media screen and (max-width: 1000px) {
  .top_sec05 .r-box {
    font-size: 1.5rem;
  }

  .top_sec05_tit {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 768px) {
  .top_sec05 .flex {
    padding-bottom: 0;
  }

  .top_sec05 .l-box {
    width: 71.6%;
    max-width: none;
    margin: 0 auto;
    padding-bottom: 35.5px;
  }
  
  .top_sec05 .l-box::after {
    bottom: 0;
  }

  .top_sec05 .r-box {
    width: 100%;
    margin-top: 27px;
  }

  .top_sec05_tit {
    font-size: 2.0rem;
  }

  .top_sec05_text {
    margin-top: 1em;
  }

  .top_sec05_text br {
    display: none;
  }

  .top_sec05_tel {
    margin-top: .8em;
    font-size: 1.5rem;
    text-align: center;
  }

  .top_sec05_tel > a,
  .top_sec05_tel > span {
    font-size: 1.666em;
  }
}

.news_list {
  margin-top: 40px;
}

.news_list > ol > li {
  border-top: 1px solid #d7d6d3;
}

.news_list > ol > li:last-of-type {
  border-bottom: 1px solid #d7d6d3;
}

.news_list > ol > li > a {
  display: block;
  color: #4f4f4f;
  text-decoration: none;
  transition: .5s;
}

.news_list > ol > li > a:hover {
  background-color: rgba(0,0,0,.1);
}

.news_list > ol > li > a > article {
  display: flex;
  padding: 1.5em 0;
  font-weight: 500;
}

.news_list_date {
  color: #dd1414;
  margin-left: 2%;
}

.news_list_tit {
  margin-left: 2%;
  font-weight: inherit;
  font-size: 1em;
}

.news_list > ol > li > a > article::after {
  content: '';
  display: block;
  width: .66em;
  height: .66em;
  align-self: center;
  margin-left: auto;
  margin-right: 1.5%;
  border-right: 2px solid #e44545;
  border-bottom: 2px solid #e44545;
  transform: rotate(-45deg);
}

.news_list_link {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .news_list {
    margin-top: 30px;
  }
  
  .news_list > ol > li > a > article {
    display: block;
    padding: 1.1em 2.2em 1.1em 1.1em;
    position: relative;
  }

  .news_list_date {
    margin-left: 0;
    font-size: 1.4rem;
  }

  .news_list_tit {
    margin-top: .3em;
    margin-left: 0;
    line-height: 1.5;
    font-size: 1.5rem;
  }

  .news_list > ol > li > a > article::after {
    position: absolute;
    right: .7em;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }

  .news_list_link {
    margin-top: 30px;
  }
}


/* top-end */

/* 7.下層ページ共通コンポーネント(pages-common)
======================================*/

.mv_page {
  height: auto;
  background-position-y: 75%;
}

.mv_page .mv__inner {
  height: auto;
  padding: 11.2vh 0;
}

.mv_page .mv__catch {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  line-height: 1;
  font-size: 4.0rem;
  letter-spacing: .2em;
  text-indent: .2em;
}

.mv_page .mv__text {
  line-height: 1;
  margin-top: 1.5em;
  font-family: 'Roboto', sans-serif;
  line-height: 1;
  font-size: 1.6rem;
  letter-spacing: .2em;
  text-indent: .2em;
}

.mv_page .mv__logo {
  display: block;
  padding: 30px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  text-align: left;
}

.mv_page .mv__logo img {
  width: 89px;
}

@media screen and (max-width: 1300px) {
  .mv_page .mv__logo {
    padding: 20px;
  }

  .mv_page .mv__logo img {
    width: 75px;
  }
}

@media screen and (max-width: 1000px) {
  .mv_page .mv__logo img {
    width: 70px;
  }
}

@media screen and (max-width: 768px) {
  .mv_page {
    padding-top: 60px;
  }

  .mv_page .mv__inner {
    padding: 9vh 0;
  }

  .mv_page .mv__logo {
    padding: 15px;
  }

  .mv_page .mv__logo img {
    width: 60px;
  }

  .mv_page .mv__catch {
    font-size: 2.9rem;
  }

  .mv_page .mv__text {
    font-size: 1.4rem;
  }
}

.breadcrumb {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dcdcdc;
  color: #000;
  font-family: 'Overpass', 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 768px) {
  .breadcrumb_news {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dcdcdc;
    color: #000;
    font-family: 'Overpass', 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 1.3rem;
    letter-spacing: .2em;
    white-space: nowrap;
    /* はみ出し部分をスクロールする */
    overflow-x: scroll;
    /* テキストを改行しないようにする */
    word-break: keep-all;
    white-space: nowrap;
    /* スクロールの動きを滑らかにする */
    -webkit-overflow-scrolling: touch;
  }
}

.breadcrumb .flex, .breadcrumb .flex_breadcrumb {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .breadcrumb_home a:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 15px;
  margin-right: .6em;
  background: url(../images/common/icon_home@2x.png) no-repeat center center/16px 15px;
  vertical-align: -.1em;
}

.breadcrumb li + li::before {
  content: '＞';
  margin: 0 .5em;
}

.page_top_text {
  margin-top: 100px;
  line-height: 2.666;
  font-size: 1.8rem;
  letter-spacing: .1em;
  text-indent: .1em;
}

@media screen and (max-width: 768px) {
  .page_top_text {
    margin-top: 40px;
    line-height: 2.222;
    font-size: 1.7rem;
    text-align: left;
  }

  .page_top_text br {
    display: none;
  }
}

/* pages-common-end */

/* newslist */

.newslist_sec01 .news_list {
  margin-top: 0;
}

.pagenavi {
  margin-top: 50px;
  color: #898885;
  font-family: 'Overpass', sans-serif;
  font-size: 1em;
  letter-spacing: .1em;
  text-indent: .1em;
}

ul.pagenation {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

ul.pagenation li + li {
  margin-left: 20px;
}

ul.pagenation a, ul.pagenation span {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #d7d6d3;
  color: inherit;
  text-decoration: none;
}

ul.pagenation li.current span {
  border-color: #121212;
  background-color: #121212;
  color: #ffffff;
}

ul.pagenation li a:hover {
  background-color: rgba(0,0,0,.1);
}

/* newslist-end */

/* newsdetail */

.post_header {
  border-bottom: 1px solid #d7d6d3;
  padding: 0 30px 30px;
}

.post_date {
  line-height: 1;
  color: #dd1414;
  font-weight: 500;
  letter-spacing: .1em;
  text-indent: .2em;
}

.post_title {
  margin-top: .2em;
  color: #4f4f4f;
  font-weight: 500;
  line-height: 1.6;
  font-size: 3.0rem;
  letter-spacing: .1em;
}

.post_content {
  padding: 30px;
  line-height: 2;
  font-size: 1.8rem;
  letter-spacing: .1em;
}

.post_content p + p {
  margin-top: 2em;
}

.newsdetail_sec01 .btn {
  margin-top: 70px;
}

@media screen and (max-width: 1000px) {
  .post_header {
    padding: 0 20px 20px;
  }

  .post_content {
    padding: 20px;
  }

  .post_title {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 768px) {
  .post_header {
    padding: 0 0 20px;
  }

  .post_content {
    padding: 20px 0;
  }

  .post_date {
    font-size: 1.4rem;
  }
  
  .post_title {
    font-size: 2.0rem;
  }

  .post_content {
    font-size: 1.6rem;
  }

  .newsdetail_sec01 .btn {
    margin-top: 40px;
  }
}

/* newsdetail-end */

/* sitemap */

.sitemap_list {
  border-bottom: 1px solid #d7d6d3;
  padding: 50px 0 50px 100px;
}

.sitemap_list a {
  color: inherit;
  text-decoration: none;
}

.sitemap_list > ol > li + li {
  margin-top: 1.4em;
}

.sitemap_list > ol > li > a::before {
  content: '> ';
}

.sitemap_list > ol > li > ol {
  padding-left: 50px;
}

.sitemap_list > ol > li > ol > li {
  margin-top: 1.4em;
}

.sitemap_list > ol > li > ol > li > a::before {
  content: '- ';
}

@media screen and (max-width: 768px) {
  .sitemap_list {
    padding: 0 0 30px;
  }

  .sitemap_list > ol > li > ol {
    padding-left: 30px;
  }
}

/* sitemap-end */

/* privacy */

.privacy section h2 {
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.6;
  letter-spacing: .1em;
  text-indent: .1em;
  text-align: center;
}

.privacy section h2:nth-of-type(n+2) {
  margin-top: 1.6em;
}

.privacy section h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 1px;
  margin: 1em auto 0;
  border-top: 1px solid;
}

.privacy section p {
  margin-top: 1em;
  line-height: 2;
}

/* privacy-end */

/* contact */

.contact_sec01_text {
  margin-top: 45px;
  line-height: 2;
  letter-spacing: .1em;
  text-indent: .1em;
  text-align: center;
}

.tel_box {
  margin-top: 40px;
  border: 1px solid;
  padding: 35px 0;
  font-weight: 500;
  text-align: center;
  color: inherit;
  text-decoration: none;
}

.tel_box span {
  margin-left: .5em;
  color: inherit;
  text-decoration: none;
  font-size: 2em;
}

.contact_sec02 {
  padding-top: 0;
}

.contact_sec02_text {
  margin-top: 40px;
  letter-spacing: .1em;
  text-indent: .1em;
  text-align: center;
}

.contact_dl {
  margin-top: 40px;
  border-bottom: 1px solid #d7d6d3;
}

.contact_dl > div {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid #d7d6d3;
}

.contact_dl > div > dt {
  flex-shrink: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 33%;
  min-width: 260px;
  padding: 0 4%;
}

.contact_dl > div > dd > p {
  margin-top: -.4em;
  margin-bottom: -.4em;
  font-size: 1.3rem;
  letter-spacing: 0;
}

.contact_dl > div > dd > p + div {
  margin-top: 10px;
}

.required_text {
  flex-shrink: 0;
  display: block;
  margin-left: auto;
  border-radius: 5px;
  padding: .2em .8em;
  background-color: #da0202;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: .1em;
  text-indent: .1em;
  text-align: center;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 100%;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  padding: .5em .3em;
  background: transparent;
  font: inherit;
}

.btn_submit input,
.btn_submit a {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  width: 360px;
  min-height: 100px;
  margin: 50px auto 0;
  border-radius: 0;
  border: 1px solid #121212;
  background: #121212;
  color: #fff;
  text-align: center;
  transition: .5s;
  text-decoration: none;
}

.btn_submit input:hover,
.btn_submit a:hover {
  background-color: #fff;
  color: #121212;
}

@media screen and (max-width: 768px) {
  .contact_sec01_text {
    margin-top: 35px;
  }

  .tel_box {
    margin-top: 30px;
    padding: 20px 0;
  }

  .tel_box span {
    font-size: 1.57em;
  }

  .contact_dl > div {
    display: block;
    padding: 20px 0;
    min-height: 0;
  }

  .contact_dl > div > dt {
    width: auto;
    max-width: none;
    padding: 0;
  }
  
  .required_text {
    margin-left: .5em;
    padding: .1em .5em;
  }

  .contact_dl > div > dd {
    margin-top: 15px;
  }
}

/* contact-end */

/* contactconfirm */

.contactconfirm_sec01_text {
  margin-top: 40px;
  text-align: center;
}

.confirm_btns {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 50px;
}

.btn_confirm input,
.btn_confirm a {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  width: 360px;
  min-height: 60px;
  margin: 0;
  border-radius: 0;
  border: 1px solid #121212;
  background: #121212;
  color: #fff;
  text-align: center;
  transition: .5s;
  text-decoration: none;
}

.btn_confirm input:hover,
.btn_confirm a:hover {
  background-color: #fff;
  color: #121212;
}

.btn_back input,
.btn_back a {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  width: 360px;
  min-height: 60px;
  margin: 0;
  border-radius: 0;
  border: 1px solid #d7d6d3;
  background: #d7d6d3;
  color: #121212;
  text-align: center;
  transition: .5s;
  text-decoration: none;
}

.btn_back input:hover,
.btn_back a:hover {
  background-color: #fff;
}

.confirm_btns .btn_back {
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .contactconfirm_sec01_text {
    margin-top: 35px;
  }
  
  .confirm_btns {
    display: block;
    margin-top: 40px;
  }

  .btn_confirm,
  .btn_back {
    text-align: center;
  }
  
  .confirm_btns .btn_back {
    margin-top: 30px;
    margin-left: 0;
  }
}

/* contactconfirm-end */

/* contactcomplete */

.complete_text {
  margin-top: 45px;
  border-top: 1px solid #d7d6d3;
  border-bottom: 1px solid #d7d6d3;
  padding: 40px 0;
  line-height: 2;
  text-align: center;
}

.complete_text p + p {
  margin-top: 2em;
}

.contactcomplete_sec01 .btn_back {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .complete_text {
    margin-top: 40px;
    padding: 30px 0;
  }
  
  .contactcomplete_sec01 .btn_back {
    margin-top: 40px;
  }
}

.contact-radio {
  text-align: center;
  padding: 10px;
}

/* contactcomplete-end */