@charset "UTF-8";
.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
  display: block;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*中の要素*/
.bgappear {
  -webkit-animation-name: bgextendAnimeSecond;
          animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*左から右*/
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #d49494;
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

article header {
  width: auto;
}

@media screen and (max-width: 768px) {
  article header {
    width: auto;
  }
}

article header h2 {
  width: auto;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  article header h2 {
    width: auto;
  }
}

article header i {
  width: auto;
}

@media screen and (max-width: 768px) {
  article header i {
    width: auto;
  }
}

article section h3:has(span) {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/*============================
#title
============================*/
article#title {
  width: auto;
  min-height: 400px;
  background-color: #d49494;
  margin-top: 119px;
  background-image: url(../../img/header.jpg);
  background-size: cover;
}

@media screen and (max-width: 768px) {
  article#title {
    width: auto;
    margin: 0;
  }
}

article#title img.bg {
  margin-top: 119px;
  width: auto;
  padding-left: 20%;
  position: absolute;
}

@media screen and (max-width: 768px) {
  article#title img.bg {
    width: auto;
  }
}

article#title section.full {
  width: auto;
  min-height: 400px;
}

@media screen and (max-width: 768px) {
  article#title section.full {
    width: auto;
  }
}

article#title section.full div.title {
  width: auto;
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  color: #fff;
  max-width: 600px;
}

@media screen and (max-width: 768px) {
  article#title section.full div.title {
    width: auto;
    left: 20px;
    padding-right: 20px;
  }
}

article#title section.full div.title h1 {
  width: auto;
  font-size: 3.6rem;
  letter-spacing: 4px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  article#title section.full div.title h1 {
    width: auto;
  }
}

article#title section.full div.title p {
  width: auto;
  font-size: 1.4rem;
  letter-spacing: 2px;
  line-height: 2;
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  article#title section.full div.title p {
    width: auto;
  }
}

article#title section.full div.news {
  position: absolute;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  min-width: 40%;
  max-width: 55%;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  article#title section.full div.news {
    width: auto;
  }
}

article#title section.full div.news p {
  width: auto;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 4px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px;
}

@media screen and (max-width: 768px) {
  article#title section.full div.news p {
    width: auto;
  }
}

article#title section.full div.news ul {
  width: auto;
  padding-top: 30px;
}

@media screen and (max-width: 768px) {
  article#title section.full div.news ul {
    width: auto;
  }
}

article#title section.full div.news ul li.news__content {
  width: auto;
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  article#title section.full div.news ul li.news__content {
    width: auto;
  }
}

article#title section.full div.news ul li.news__content a.link {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  article#title section.full div.news ul li.news__content a.link {
    width: auto;
  }
}

article#title section.full div.news ul li.news__content a.link p {
  width: auto;
  border: none;
  font-size: 1.4rem;
  letter-spacing: 2px;
  padding: 0;
  margin-bottom: 0;
  padding-right: 40px;
}

@media screen and (max-width: 768px) {
  article#title section.full div.news ul li.news__content a.link p {
    width: auto;
  }
}

article#title section.full div.news ul li.news__content a.link div.text__content {
  width: auto;
}

@media screen and (max-width: 768px) {
  article#title section.full div.news ul li.news__content a.link div.text__content {
    width: auto;
  }
}

article#title section.full div.news ul li.news__content a.link div.text__content h3 {
  width: auto;
  font-size: 1.4rem;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  article#title section.full div.news ul li.news__content a.link div.text__content h3 {
    width: auto;
  }
}

/*============================
#policy
============================*/
@media screen and (max-width: 768px) {
  article#policy section {
    padding: 80px 20px;
  }
}

article#policy section div.post_body {
  padding-bottom: 0px;
}

@media screen and (max-width: 768px) {
  article#policy section div.post_body {
    padding-bottom: 0px;
  }
}

article#policy section div.post_body h3 {
  width: 100%;
  font-size: 2rem;
  letter-spacing: 2px;
  padding-bottom: 20px;
  padding-top: 80px;
  color: #d49494;
}

@media screen and (max-width: 768px) {
  article#policy section div.post_body h3 {
    width: 100%;
    font-size: 1.6rem;
  }
}

article#policy section div.post_body p {
  width: 100%;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  article#policy section div.post_body p {
    width: 100%;
  }
}

article#policy section div.post_body ol {
  width: 100%;
  list-style: auto;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 2px;
  padding: 10px 0 10px 30px;
}

@media screen and (max-width: 768px) {
  article#policy section div.post_body ol {
    width: 100%;
  }
}

article#policy section div.post_body ol li {
  width: 100%;
}

@media screen and (max-width: 768px) {
  article#policy section div.post_body ol li {
    width: 100%;
  }
}

article#policy section div.post_body ol ol {
  list-style: disc;
  width: 100%;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 2px;
  padding: 10px 0 20px 16px;
}

@media screen and (max-width: 768px) {
  article#policy section div.post_body ol ol {
    width: 100%;
  }
}

article#policy section div.post_body ol ol li {
  width: 100%;
}

@media screen and (max-width: 768px) {
  article#policy section div.post_body ol ol li {
    width: 100%;
  }
}

/*============================
#news
============================*/
article#news section div.wrap ul#content li.news__content {
  margin-bottom: 40px;
}

article#news section div.wrap ul#content li.news__content a.link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  article#news section div.wrap ul#content li.news__content a.link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

article#news section div.wrap ul#content li.news__content a.link p {
  color: #745454;
  font-size: 1.6rem;
  padding-left: 20px;
  padding-right: 10px;
  padding-bottom: 10px;
  border-bottom: solid;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  article#news section div.wrap ul#content li.news__content a.link p {
    border: none;
    padding-left: 0;
    font-size: 1.4rem;
    padding-bottom: 5px;
  }
}

article#news section div.wrap ul#content li.news__content a.link div.text__content {
  width: 100%;
  padding-left: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  border-bottom: solid #aaa;
}

article#news section div.wrap ul#content li.news__content a.link div.text__content h3 {
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 2px;
  line-height: 1.4;
}

/*============================
#single
============================*/
article#single header {
  max-width: 880px;
  margin: auto;
  padding: 80px 40px 40px;
}

@media screen and (max-width: 768px) {
  article#single header {
    padding: 40px 20px;
  }
}

article#single header span.bgextend.bgLRextendTrigger span.bgappearTrigger {
  display: block;
}

article#single header div.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0 20px;
}

article#single header div.info p {
  padding-right: 40px;
}

article#single header h2 {
  font-size: 2rem;
  letter-spacing: 2px;
  text-align: left;
}

article#single section {
  max-width: 880px;
  padding-top: 0;
}

article#single section div.wrap p {
  font-size: 1.4rem;
  letter-spacing: 2px;
  line-height: 2;
}

article#single section div.btn_wrap a.btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  border: solid 1px;
  padding: 15px 40px;
  letter-spacing: 2px;
  font-size: 1.4rem;
  font-weight: 300;
  position: relative;
  color: #333;
  margin: 80px auto 0;
  min-width: 184px;
  text-align: center;
}

/*============================
#contact
============================*/
article#contactform {
  color: #1A1A1A;
}

article#contactform p {
  font-size: 1.4rem;
  letter-spacing: 2px;
  line-height: 2;
}

article#contactform .wpcf7-list-item {
  margin: 20PX 0 40px;
}

article#contactform section div.contact {
  max-width: 680px;
  padding: 0 40px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  article#contactform section div.contact {
    padding: 0;
  }
}

article#contactform section div.contact.confirm .cf7-item .cf7-a p {
  border-bottom: solid 1px #d49494;
  height: 36px;
  padding: 0 20px;
}

article#contactform section div.contact.confirm .cf7-item.flex .cf7-a p {
  padding: 10px 20px;
  height: 36px;
  background: transparent;
}

article#contactform section div.contact .form-heading > p {
  padding-bottom: 40px;
  text-align: left;
  letter-spacing: 2px;
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  article#contactform section div.contact .form-heading > p {
    line-height: 2;
  }
}

article#contactform section div.contact #cf7-area {
  width: auto;
}

@media screen and (max-width: 768px) {
  article#contactform section div.contact #cf7-area {
    padding-top: 0;
  }
}

article#contactform section div.contact #cf7-area .cf7-item {
  width: auto;
  margin-bottom: 40px;
}

article#contactform section div.contact #cf7-area .cf7-item .cf7-q {
  font-size: 1.4rem;
  padding-bottom: 10px;
}

article#contactform section div.contact #cf7-area .cf7-item .cf7-q label {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
}

article#contactform section div.contact #cf7-area .cf7-item .cf7-q .cf7-req {
  padding-left: 4px;
  color: red;
}

article#contactform section div.contact #cf7-area .cf7-item .cf7-a {
  width: 100%;
}

article#contactform section div.contact #cf7-area .cf7-item .cf7-a input {
  width: 100%;
  color: #151515;
  border-bottom: solid 1px #d49494;
  height: 48px;
  padding: 0 20px;
  font-size: 1.6rem;
  letter-spacing: 2px;
  background: #fafafa;
}

article#contactform section div.contact #cf7-area .cf7-item .cf7-a textarea {
  width: 100%;
  padding: 10px 20px;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: #151515;
  background: #fafafa;
  border-bottom: solid 1px #d49494;
}

article#contactform section div.contact #cf7-area .cf7-item.flex .cf7-a p {
  padding: 10px;
  height: 48px;
  background: #fafafa;
  border-bottom: solid 1px #d49494;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

article#contactform section div.contact .wpcf7-spinner {
  display: none;
}

article#contactform section div.contact .cf7-submit {
  color: #755554;
  letter-spacing: 2px;
  position: relative;
  border: solid 2px #d49494;
  width: 240px;
  line-height: 1;
  display: block;
  text-align: center;
  border-radius: 8px;
}

article#contactform section div.contact .cf7-submit .wpcf7-submit {
  display: block;
  text-align: center;
  width: 100%;
  padding: 15px 0px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  article#contactform section div.contact .cf7-submit .wpcf7-submit {
    width: 100%;
  }
}

article#contactform section div.contact .cf7-submit:after {
  content: "";
  background: rgba(212, 148, 148, 0.2);
  position: absolute;
  width: 240px;
  height: 100%;
  left: 8px;
  top: 8px;
  border-radius: 8px;
  z-index: -2;
}

@media screen and (max-width: 768px) {
  article#contactform section div.contact .cf7-submit:after {
    width: 100%;
  }
}

article#contactform section div.contact .wpcf7-previous {
  border-radius: 8px;
  padding: 10px 10px;
  width: 120px;
  margin: 0px auto 0;
  display: block;
  border: solid 2px #ddd;
  color: #666;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  article#contactform section div.contact .wpcf7-previous {
    width: 100%;
    margin-top: 40px;
    margin-right: auto;
  }
}

article#contactform section div.contact .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media screen and (max-width: 768px) {
  article#contactform section div.contact .btn-wrap {
    display: block;
  }
}

article#contactform section div.contact.thanks div.btn_wrap {
  width: auto;
}

@media screen and (max-width: 768px) {
  article#contactform section div.contact.thanks div.btn_wrap {
    width: auto;
  }
}

article#contactform section div.contact.thanks div.btn_wrap a {
  color: #755554;
  letter-spacing: 2px;
  position: relative;
  border: solid 2px #d49494;
  padding: 15px 0px;
  width: 240px;
  display: block;
  text-align: center;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  article#contactform section div.contact.thanks div.btn_wrap a {
    width: auto;
    margin-top: 40px;
  }
}

article#contactform section div.contact.thanks div.btn_wrap a:after {
  content: "";
  background: rgba(212, 148, 148, 0.2);
  position: absolute;
  width: 240px;
  height: 100%;
  left: 8px;
  top: 8px;
  border-radius: 8px;
  z-index: -2;
}

@media screen and (max-width: 768px) {
  article#contactform section div.contact.thanks div.btn_wrap a:after {
    width: 100%;
  }
}
/*# sourceMappingURL=common.css.map */