@charset "utf-8";
/*style_common*/
@import url("reset.css");

/*COMMON********************/
.family_serif {
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 Pro W3",
    "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
}

.maxw1280 {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.maxw1000 {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.maxw960 {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}

.sp, .sp-440, .sp-375 {
  display: none;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.flx {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  width: 90%;
  max-width: 1280px;
  margin: auto;
}

.page_inner {
  padding-top: 0;
  padding-bottom: 125px;
}

/*見出し*/
h1,
h2 {
  text-align: center;
  font-weight: bold;
}

h1 {
  font-size: 4.2rem;
  color: #9e2428;
}

h2 {
  font-size: 3.8rem;
  color: #000000;
  margin-bottom: 1em;
}

h3 {
  font-size: 2.8rem;
  color: #000000;
  margin-bottom: 0.5em;
  font-weight: bold;
}

h2:after {
  content: attr(data-title) " ";
  font-size: 2.1rem;
  display: block;
  color: #9e2428;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 Pro W3",
    "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: normal;
}

h1.sitetitle {
  line-height: 2;
  padding-left: 1em;
  position: relative;
}

h1 span {
  font-size: 2.1rem;
  color: #000000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -14.6rem;
}

h3 span {
  font-size: 2.1rem;
  color: #000000;
}

/*font*/
.txt_bold {
  font-weight: bold;
}

.txt_right {
  text-align: right;
}

.txt_red {
  color: #9E2428;
}

/*共通ボタン*/
a.button,
input[type="submit"].button {
  width: 100%;
  max-width: 280px;
  display: block;
  color: #000;
  font-size: 1.8rem;
  background-image: url("../images/arrow.png");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding: 1rem 30px;
  box-sizing: border-box;
  border-radius: 2.5rem;
  transition: all 0.3s ease-out;
  margin: auto;
  border: solid 1px #000;
  text-decoration: none;
  text-align: center;
  position: relative;
  background-color: #fff;
  font-weight: 600;
}

a.button:hover,
input[type="submit"].button:hover {
  background-position: right 10px center;
  transition: all 0.3s ease-out;
  cursor: pointer;
}

/* a.button:before {
  content:""; display: block; width:0%; height: 100%; background-color: #E5C7C6;position: absolute;top:0; left:0; z-index: -1;
} */

a.button:hover:before {
  width: 100%;
  transition: all 0.3s ease-out;
}

/*ボタンの矢印汎用*/
a.arrow:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 4px;
  height: 4px;
  margin-top: -4px;
  transform: rotate(45deg);
  border: 2px solid transparent;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

a.arrow:hover:before {
  right: 15px;
}

a.arrow_b:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 4px;
  height: 4px;
  margin-top: -4px;
  transform: rotate(45deg);
  border: 2px solid transparent;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
}

a.arrow_b:hover:before {
  right: 15px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

/* arrow_red */
.arrow_red {
  position: absolute;
  display: inline-block;
  width: 6.9px;
  height: 14.7px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.arrow_red::before,
.arrow_red::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #9e2428;
  transform-origin: calc(100% - 1px) 50%;
}

.arrow_red::before {
  transform: rotate(52.5deg);
}

.arrow_red::after {
  transform: rotate(-52.5deg);
}


@media screen and (max-width: 1280px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  h3 {
    font-size: 2.4rem;
  }

  h1.sitetitle {
    padding-left: 0.5em;
  }
}

@media screen and (max-width: 959px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  h1 span {
    font-size: 1.8rem;
    right: -12.6rem;
  }

  h3 span {
    font-size: 1.4rem;
  }

  h2:after {
    font-size: 1.8rem;
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.6rem;
  }

  h1 span {
    font-size: 1.3rem;
    right: -9.1rem;
  }

  h3 span {
    font-size: 1.2rem;
  }

  h2:after {
    font-size: 1.4rem;
  }

  a.button,
  input[type="submit"].button {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 440px) {
  .pc-440 {
    display: none !important;
  }

  .sp-440 {
    display: block !important;
  }
}

@media screen and (max-width: 375px) {
  .pc-375 {
    display: none !important;
  }

  .sp-375 {
    display: block !important;
  }
}

/*HEADER***************/
.hd_between {
  width: 100%;
  position: relative;
}

/*PCメニュー*/
.hd_menu {
  z-index: 999;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}

.navbarCollapse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  margin-right: 100px;
}

.navbarCollapse li {
  text-align: center;
}

.navbarCollapse li a {
  font-size: 2.2rem;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  display: block;
  padding: 1em;
  cursor: pointer;
  border-bottom: solid 2px rgba(158, 36, 40, 0);
}

.navbarCollapse li a:hover {
  border-bottom: solid 2px rgba(158, 36, 40, 1);
  transition: all 0.4s ease;
}

/*右上ボタン*/
.snavi {
  position: fixed;
  top: 100px;
  right: 0;
  z-index: 999;
}

.snavi li {
  padding: 10px 0;
}

.snavi li a img {
  /*display:block;*/
  line-height: 1;
}

/*スクロール時に上から出てくるメニュー*/
.clone-nav {
  height: auto;
  transition: all 0.3s;
  transform: translateY(-175px);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.9);
}

.is-show {
  transform: translateY(0);
}

/*スマホメニュー*/
#navArea {
  display: none;
}

@media screen and (max-width:1440px) {
  .navbarCollapse li a {
    padding: 1em 0.5em;
  }
}

@media screen and (max-width: 1280px) {
  .navbarCollapse {
    margin-right: 0;
  }

  /*PCメニュー非表示*/
  .navbarCollapse li {
    display: none;
  }

  .clone-nav {
    display: none;
  }

  .snavi li a img {
    width: 40px;
    height: auto;
  }

  .snavi {
    position: fixed;
    top: inherit;
    bottom: 60px;
    right: 0;
    z-index: 999;
  }

  /*スマホメニュー*/
  #navArea {
    display: block;
  }

  #navArea nav {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 300px;
    background: #000000;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all 0.5s;
    z-index: 999;
    opacity: 0;
  }

  #navArea.open nav {
    left: 0;
    opacity: 1;
  }

  #navArea nav .inner {
    padding: 0;
  }

  #navArea nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  #navArea nav .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #999;
    padding-left: 1em;
    background-image: url("../images/arrow1.png");
    background-repeat: no-repeat;
    background-position: right 1em center;
    transition: all 0.3s ease-out;
  }

  #navArea nav .inner ul li a {
    display: block;
    color: #fff;
    font-size: 2rem;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
  }

  #navArea nav .inner ul li a:hover {
    background: #333;
  }

  /*.toggle_btn*/
  .toggle_btn {
    display: block;
    position: fixed;
    /* top: 18px; */
    top: 20px;
    right: 15px;
    width: 30px;
    height: 30px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 3;
  }

  .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #333;
    border-radius: 4px;
    transition: all 0.5s;
  }

  .toggle_btn span:nth-child(1) {
    top: 4px;
  }

  .toggle_btn span:nth-child(2) {
    top: 14px;
  }

  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }

  .open .toggle_btn span {
    background-color: #fff;
  }

  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
  }

  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }

  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
  }

  /*#mask*/
  #mask {
    display: none;
    transition: all 0.5s;
  }

  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    z-index: 2;
    cursor: pointer;
  }
}

@media screen and (max-width: 959px) {
  .toggle_btn {
    top: 10px;
  }
}

/*------end 959px------*/
@media screen and (max-width: 767px) {
  .snavi {
    bottom: 50px;
  }

  .snavi li {
    padding: 3px 0;
  }

  .snavi li a img {
    width: 30px;
    height: auto;
  }
}

@media screen and (max-width: 479px) {
  .toggle_btn {
    top: 8px;
    right: 17px;
  }

  .snavi li a img {
    width: 26px;
    height: auto;
  }
}

/*MAIN top********************/
#mainvisual {
  width: 100%;
  position: relative;
}

#mainvisual a {
  position: absolute;
  left: 0;
  bottom: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /* background: #FFF2A5; */
  background: linear-gradient(180deg, rgba(255, 242, 165, 1) 0%, rgba(255, 230, 83, 1) 100%);
  border-top: 1px solid #FFE653;
  border-bottom: 1px solid #FFE653;
  border-right: 1px solid #FFE653;
  border-radius: 0 15px 15px 0;
  max-width: 672px;
  width: 35%;
  padding: 20px;
  font-size: 36px;
  font-weight: bold;
  text-align: right;
  color: #000;
  box-sizing: border-box;
  transition: all .3s;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.50));
  transform: translateZ(0);
}

#mainvisual a:hover {
  text-decoration: none;
  /* background: #fff; */
  /* background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); */
}

#mainvisual a span.sub {
  font-size: 2.1rem;
  padding-right: 15px;
}

#mainvisual a span.arrow_mv_bnr {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.8rem;
  transition: all .3s;
}

#mainvisual a span.arrow_mv_bnr::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);

  width: 0;
  height: 0;
  border-style: solid;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-top: 11px solid #000;
  border-bottom: 0;
}

#mainvisual a:hover span.arrow_mv_bnr {
  top: 25px;
}


#mainvisual .mvphoto {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1680px) {
  #mainvisual a {
    max-width: 550px;
    width: 45%;
    font-size: 30px;
  }

  #mainvisual a span.sub {
    font-size: 1.8rem;
  }

  #mainvisual a span.arrow_mv_bnr {
    top: 15px;
  }

}

@media screen and (max-width: 1280px) {
  #mainvisual a {
    max-width: 450px;
    font-size: 2.1rem;
    padding: 22px 20px;
  }

  #mainvisual a span.sub {
    font-size: 1.6rem;
  }

}

@media screen and (max-width: 1024px) {
  #mainvisual a {
    width: 50%;
    bottom: 30px;
  }
}

@media screen and (max-width: 960px) {
  #mainvisual a {
    flex-direction: column;
    align-items: flex-start;
    width: 90%;
    max-width: 320px;
    bottom: 18%;
  }

  #mainvisual a span.sub {
    padding-right: 0;
  }

  #mainvisual a span.arrow_mv_bnr {
    top: 45%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    line-height: 1.5rem;
  }

  #mainvisual a:hover span.arrow_mv_bnr {
    top: 50%;
  }
}

@media screen and (max-width: 550px) {
  #mainvisual a {
    max-width: 270px;
    padding: 15px;
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  #mainvisual a span.sub {
    font-size: 1.4rem;
  }

  #mainvisual a span.arrow_mv_bnr {
    right: 15px;
  }

  #mainvisual a span.arrow_mv_bnr::after {
    /* right: 0px; */
    bottom: -10px;
    border-right-width: 5px;
    border-left-width: 5px;
    border-top-width: 7px;
  }

}

@media screen and (max-width: 375px) {
  #mainvisual a {
    align-items: center;
    width: 60%;
    padding-top: 5px;
    padding-bottom: 30px;
  }

  #mainvisual a span.arrow_mv_bnr,
  #mainvisual a:hover span.arrow_mv_bnr {
    top: auto;
    bottom: 5px;
    left: 40%;
    transform: translateX(-30%);
  }

  #mainvisual a span.arrow_mv_bnr::after {
    top: auto;
    bottom: 5px;
    right: -10px;
    left: auto;
  }
}

@media screen and (max-width: 340px) {
  #mainvisual a span.arrow_mv_bnr::after {
    right: -15px;
  }

}

/*Message*/
#message {
  padding: 75px 0;
}

#message h3 {
  font-size: 5.4rem;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 Pro W3",
    "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  text-align: center;
}

#message .messagetxt {
  width: 90%;
  max-width: 1152px;
  margin: auto;
  line-height: 2;
}

#message .messagetxt p {
  font-size: 2.3rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 1280px) {
  #message h3 {
    font-size: 4.4rem;
  }

  #message .messagetxt p {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 768px) {
  #message {
    padding: 50px 0;
  }

  #message h3 {
    font-size: 3.4rem;
    width: 90%;
    margin: 0 auto 0.5em;
  }

  #message .messagetxt {
    width: 85%;
  }

  #message .messagetxt p {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 467px) {
  #message h3 {
    font-size: 2.2rem;
  }

  #message h4 {
    font-size: 1.8rem;
    line-height: 1.5;
  }

  #message .messagetxt {
    line-height: 1.8;
  }
}

/*Movie*/
#movie {
  padding: 0 0 75px 0;
  text-align: center;
}

#movie .flx {
  flex-wrap: wrap;
}

#movie .flx li {
  margin: 10px;
  width: 45%;
  box-sizing: border-box;
}

#movie .flx li iframe {
  width: 100%;
}

#movie iframe {
  height: 323px;
}

#movie .flx li p {
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 1280px) {
  #movie .flx {
    flex-direction: column;
  }

  #movie .flx li {
    margin: 10px auto;
    width: 480px;
  }

  #movie iframe {
    height: 270px;
  }

  #movie .flx li p {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  #movie {
    padding: 0 0 50px 0;
  }

  #movie .flx li p {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 560px) {
  #movie .flx li {
    width: 370px;
  }

  #movie iframe {
    height: 208px;
  }
}

@media screen and (max-width: 374px) {
  #movie .flx li {
    max-width: 320px;
    width: 100%;
  }

  #movie iframe {
    height: 180px;
  }
}

/*shukuju*/
#shukuju {
  position: relative;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  gap: 50px;
  background: #F6EDED;
  padding: 80px 0 0;
}

#shukuju .overview {
  background: #fff;
  border-radius: 20px;
  max-width: 1152px;
  width: 90%;
  margin: 0 auto;
  padding: 50px;
  box-sizing: border-box;
}

#shukuju .overview h2 {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  border-bottom: 3px solid #9E2428;
  width: auto;
  font-size: 5.4rem;
  color: #9E2428;
}

#shukuju .overview_detail {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

#shukuju .overview_detail img {
  max-width: 334px;
  width: 30%;
  margin-left: 30px;
}

#shukuju .overview_detail p {
  font-size: 2.1rem;
  line-height: 3.5rem;
}

#shukuju .shukuju_img {
  display: block;
  bottom: 0;
  max-width: 1168px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

#shukuju .shukuju_img img {
  vertical-align: top;
  width: 100%;
}

@media screen and (max-width: 1280px) {
  #shukuju .overview h2 {
    font-size: 4.4rem;
  }

  #shukuju .overview_detail p {
    font-size: 1.8rem;
    line-height: 3.0rem;
  }
}

@media screen and (max-width: 768px) {
  #shukuju {
    padding-top: 50px;
  }

  #shukuju .overview h2 {
    font-size: 3.4rem;
    width: 100%;
  }

  #shukuju .overview {
    padding: 30px;
  }

  #shukuju .overview_detail p {
    font-size: 1.6rem;
  }

  #shukuju .overview_detail {
    flex-direction: column;
    gap: 30px;
  }

  #shukuju .overview_detail img {
    max-width: 334px;
    width: 60%;
    margin-left: 0;
  }
}

@media screen and (max-width: 550px) {
  #shukuju .overview h2 {
    font-size: 3.0rem;
  }
}

/*tsuyomi*/
#tsuyomi {
  padding: 100px 0;
}

#tsuyomi .wrap {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 1152px;
  width: 90%;
  margin: 0 auto;
}

#tsuyomi h2 {
  color: #9E2428;
  font-size: 5.4rem;
  margin-bottom: 100px;
}

#tsuyomi dl {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px 20px;
}

#tsuyomi dt {
  font-size: 2.8rem;
  width: 100px;
  border-bottom: 3px solid;
  padding-bottom: 5px;
  font-weight: bold;
}

#tsuyomi dt.itoigawa_dt {
  border-color: #8FB954;
}

#tsuyomi dt.nou_dt {
  border-color: #ED7987;
}

#tsuyomi dt.oumi_dt {
  border-color: #38A1DB;
}

#tsuyomi dt.common_dt {
  border-color: #9E2428;
}

#tsuyomi dd {
  width: calc(100% - 120px);
}

#tsuyomi dd li {
  position: relative;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 3.5rem;
  padding-left: 25px;
  /* letter-spacing: 0.1rem; */
}

#tsuyomi dd li::before {
  position: absolute;
  content: "●";
  left: 0;
  padding-right: 5px;
}

#tsuyomi dd.itoigawa_dd li::before {
  color: #8FB954;
}

#tsuyomi dd.nou_dd li::before {
  color: #ED7987;
}

#tsuyomi dd.oumi_dd li::before {
  color: #38A1DB;
}

#tsuyomi dd.common_dd li::before {
  color: #9E2428;
}


#tsuyomi .tsuyomi_img {
  max-width: 292px;
  width: 25.3%;
}

@media screen and (max-width: 1280px) {
  #tsuyomi h2 {
    font-size: 4.4rem;
  }

  #tsuyomi dl dt {
    font-size: 2.1rem;
  }

  #tsuyomi dl dd li {
    font-size: 1.8rem;
    line-height: 3.0rem;
    margin-bottom: 5px;
  }

  #tsuyomi dl dd li:last-child {
    margin-bottom: 0;
  }

}

@media screen and (max-width: 1024px) {
  #tsuyomi .wrap {
    flex-direction: column-reverse;
  }

  #tsuyomi h2 {
    margin-bottom: 70px;
  }

  #tsuyomi .tsuyomi_img {
    width: 50%;
  }

}

@media screen and (max-width: 768px) {
  #tsuyomi {
    padding: 50px 0;
  }

  #tsuyomi .wrap {
    gap: 30px;
  }

  #tsuyomi h2 {
    font-size: 3.4rem;
    margin-bottom: 40px;
  }

  #tsuyomi dl dt {
    font-size: 1.8rem;
  }

  #tsuyomi dl dd li {
    font-size: 1.6rem;
    line-height: 2.5rem;
  }

}


@media screen and (max-width: 560px) {
  #tsuyomi dl {
    display: block;
  }

  #tsuyomi dl dt {
    margin-bottom: 10px;
  }

  #tsuyomi dl dd {
    width: 100%;
    margin-bottom: 30px;
  }

  #tsuyomi dl dd:last-child {
    margin-bottom: 0;
  }
}


/*policies*/
#policies {
  background: #F6F3EE;
  padding: 100px 0;
}

#policies ul.polilist {
  width: 90%;
  max-width: 1152px;
  margin: 0 auto 50px;
}

#policies ul.polilist>li {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding: 60px 30px;
  justify-content: space-between;
  align-items: center;
  border: solid 4px #9E2428;
  margin-bottom: 30px;
  background: #fff;
  border-collapse: collapse;
  box-sizing: border-box;
  position: relative;
}

#policies ul.polilist>li .polileft {
  width: 24%;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-left: 10px;
}

#policies ul.polilist>li .poliright {
  width: 72%;
}

#policies ul.polilist>li .polileft .num {
  color: #9E2428;
  font-size: 5.8rem;
  font-style: italic;
  font-family: times, serif;
}

#policies ul.polilist>li .polileft .subt {
  color: #9E2428;
  font-size: 3.0rem;
  text-align: left;
  font-weight: bold;
}

#policies ul.polilist>li .poliright p {
  font-size: 2.1rem;
}

#policies dl.examples {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  width: 90%;
  margin: 0 auto;
  font-weight: bold;
}

#policies dl.examples dt,
#policies dl.examples dd,
#policies dl.examples dd li {
  font-size: 2.1rem;
}

#policies dl.examples dt {
  color: #9E2428;
}

#policies dl.examples dd li {
  position: relative;
  line-height: 5rem;
  padding-left: 25px;
}

#policies dl.examples dd li::before {
  position: absolute;
  left: 0;
  content: "●";
  color: #9E2428;
  padding-right: 5px;
}


@media screen and (max-width: 959px) {
  #policies {
    padding: 50px 0;
  }

  #policies h3 {
    font-size: 4.4rem;
  }

  #policies ul.polilist>li {
    display: block;
    padding: 30px;
  }

  #policies ul.polilist>li .polileft {
    width: 100%;
  }

  #policies ul.polilist>li .poliright {
    width: 100%;
  }

  #policies ul.polilist>li .polileft h4 {
    margin-bottom: 0.5em;
  }

  #policies ul.polilist>li .poliright p {
    font-size: 1.8rem;
  }

  #policies ul.polilist>li .poliright ul.politxt {
    display: none;
  }

  #policies dl.examples {
    flex-direction: column;
    gap: 10px;
  }

  #policies dl.examples dt,
  #policies dl.examples dd,
  #policies dl.examples dd li {
    font-size: 1.8rem;
  }

  #policies dl.examples dd li {
    line-height: 3.5rem;
  }

}

@media screen and (max-width: 767px) {

  #policies h3 {
    font-size: 2.2rem;
  }

  #policies ul.polilist>li {
    margin-bottom: 20px;
  }

  #policies ul.polilist>li .polileft .num {
    font-size: 5.4rem;
    top: 8px;
    left: 5%;
  }

  #policies ul.polilist>li {
    padding: 25px 5%;
  }

  #policies ul.polilist>li .polileft .subt {
    font-size: 2rem;
  }

  #policies ul.polilist>li .polileft h4 {
    font-size: 2rem;
  }

  #policies ul.polilist>li .poliright p {
    font-size: 1.6rem;
  }

  #policies ul.polilist>li .poliright ul.politxt li {
    padding-left: 1.6rem;
  }

  #policies ul.polilist>li .poliright ul.politxt li .maru {
    font-size: 1.6rem;
  }

  #policies ul.polilist>li .poliright ul.politxt li h5 {
    font-size: 1.6rem;
  }

  #policies dl.examples dt,
  #policies dl.examples dd,
  #policies dl.examples dd li {
    font-size: 1.6rem;
  }

  #policies dl.examples dd li {
    line-height: 2.5rem;
    margin-bottom: 5px;
  }

  #policies dl.examples dd li:last-child {
    margin-bottom: 0;
  }

}

/* kosodate */
#kosodate {
  background: #F3E3E3;
  padding: 100px 0;
}

#kosodate .wrap {
  border-radius: 30px;
  border: 5px solid #9E2428;
  box-sizing: border-box;
  background: #fff;
  max-width: 1152px;
  width: 90%;
  margin: 0 auto;
  padding: 50px 23px 70px;
}

#kosodate .title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

#kosodate .title img {
  max-width: 248px;
  width: 23%;
}

#kosodate .title h2 {
  font-size: 8.0rem;
  /* font-size: clamp(18px, calc(-4.099009900990097px + 7.673267326732673vw), 80px); */
  color: #9E2428;
  margin-bottom: 0;
}

#kosodate .title h2 span {
  display: block;
  font-size: 4.4rem;
  /* font-size: clamp(12px, calc(0.5940594059405946px + 3.9603960396039604vw), 44px); */
}

#kosodate .title .img_sp {
  display: none;
}

#kosodate .lead {
  font-size: 2.3rem;
  font-weight: bold;
  text-align: center;
}

#kosodate .sisetsu {
  display: block;
  max-width: 1095px;
  width: 100%;
  margin: 50px auto;
}

#kosodate .sisetsu img {
  width: 100%;
}

#kosodate .riyousha .title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0px auto 30px;
}

#kosodate .riyousha .title h3 {
  font-size: 2.8rem;
  margin-bottom: 0;
}

#kosodate .riyousha .title span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #9E2428;
  width: 79px;
  height: 79px;
  font-size: 2.1rem;
  font-weight: bold;
  color: #fff;
}

#kosodate .current table {
  max-width: 688px;
  margin: 0 auto;
}

#kosodate .current table .sp_th {
  display: none;
}

#kosodate .current table th,
#kosodate .current table td {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 10px 0;
  font-size: 1.8rem;
  font-weight: bold;
}

#kosodate .current table th {
  vertical-align: top;
}

#kosodate .current table td {
  padding-left: 20px;
  padding-right: 20px;
}

#kosodate .current table .bg-lightpink {
  background: #FCEFF1;
}

#kosodate .riyousha_arrow {
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
  margin: 20px auto;
}

#kosodate .riyousha_arrow .arrow_red {
  width: 14.7px;
  height: 6.9px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

#kosodate .riyousha_arrow .arrow_red:nth-last-child(2) {
  top: 6px;
}

#kosodate .riyousha_arrow .arrow_red:nth-last-child(3) {
  top: 12px;
}

#kosodate .riyousha_arrow .arrow_red::before,
#kosodate .riyousha_arrow .arrow_red::after {
  right: 0;
  width: 2px;
  height: 10px;
  transform-origin: 50% calc(100% - 1px);
}

#kosodate .prediction .lead p {
  font-size: 2.1rem;
  text-align: center;
  line-height: 4rem;
}

#kosodate .prediction .lead p.important {
  display: inline-block;
  border-bottom: 5px solid #9E2428;
  margin-top: 20px;
  padding-bottom: 5px;
  font-size: 4.4rem;
}

#kosodate .suggestion {
  max-width: 961px;
  width: 90%;
  margin: 50px auto 0;
}

#kosodate .suggestion h3 {
  background: #FCEBED;
  padding: 5px 10px;
  font-size: 3.2rem;
  color: #9E2428;
  text-align: center;
}

#kosodate .suggestion .detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

#kosodate .suggestion dl dt {
  display: inline-block;
  background: #9E2428;
  border-radius: 9999px;
  padding: 1px 25px;
  font-size: 2.1rem;
  font-weight: bold;
  color: #fff;
}

#kosodate .suggestion dl dd {
  padding: 10px 0 10px 20px;
  font-size: 2.1rem;
  font-weight: bold;
}

#kosodate .suggestion_graph {
  max-width: 404px;
  width: 45%;
}

@media screen and (max-width: 1280px) {
  #kosodate .title {
    gap: 10px;
  }

  #kosodate .title img {
    width: 20%;
  }

  #kosodate .title h2 {
    font-size: 6.0rem;
  }

  #kosodate .title h2 span {
    font-size: 3.4rem;
  }


  #kosodate .lead {
    font-size: 1.8rem;
  }

  #kosodate .riyousha .title h3 {
    font-size: 2.0rem;
  }

  kosodate .riyousha .title span {
    font-size: 1.8rem;
  }

  #kosodate .current table td {
    font-size: 1.5rem;
  }

  #kosodate .prediction .lead p {
    font-size: 1.6rem;
  }

  #kosodate .prediction .lead p.important {
    font-size: 2.8rem;
  }

  #kosodate .suggestion h3 {
    font-size: 2.3rem;
  }

  #kosodate .suggestion dl dt,
  #kosodate .suggestion dl dd {
    font-size: 1.6rem;
  }

}

@media screen and (max-width: 959px) {
  #kosodate .title {
    align-items: flex-start;
  }

  #kosodate .sisetsu {
    margin: 30px auto;
  }

  #kosodate .current table {
    width: 90%;
    max-width: 550px;
  }

  #kosodate .current table tr.sp_th {
    display: contents;
  }

  #kosodate .current table th,
  #kosodate .current table td {
    padding: 10px;
  }

  #kosodate .current table th {
    width: 100%;
    text-align: center;
    border-bottom: none;
  }

  #kosodate .current table td {
    border-top: none;
    text-align: center;
  }

  #kosodate .suggestion .detail {
    gap: 30px;
  }

  #kosodate .suggestion .detail {
    flex-direction: column-reverse;
  }

  #kosodate .suggestion_graph {
    width: 60%;
    margin: 10px auto 0;
  }

}

@media screen and (max-width: 810px) {
  #kosodate .title h2 {
    font-size: 5.5rem;
  }

  #kosodate .title h2 span {
    font-size: 3.0rem;
  }
}

@media screen and (max-width: 768px) {
  #kosodate {
    padding: 50px 0;
  }

  #kosodate .wrap {
    padding: 40px 15px;
  }

  #kosodate .title {
    display: block;
    margin-bottom: 20px;
  }

  #kosodate .title h2 {
    font-size: 5.0rem;
  }

  #kosodate .title h2 span {
    font-size: 2.4rem;
  }

  #kosodate .title .img_pc {
    display: none;
  }

  #kosodate .title .img_sp {
    display: block;
    margin-top: 10px;
  }

  #kosodate .title .img_sp--img {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #kosodate .title img {
    width: 40%;
    max-width: 160px;
  }


  #kosodate .current table th {
    font-size: 1.5rem;
  }

  #kosodate .current table td {
    font-size: 1.3rem;
  }

  #kosodate .suggestion_graph {
    width: 90%;
  }

  #kosodate .prediction .lead p {
    line-height: 3rem;
  }

}

@media screen and (max-width: 550px) {
  #kosodate .riyousha .title {
    gap: 10px;
  }

  #kosodate .riyousha .title h3 {
    width: calc(100% - 80px);
  }

  #kosodate .riyousha .title span {
    width: 70px;
    height: 70px;
  }

}

@media screen and (max-width: 375px) {
  #kosodate .title {
    gap: 0px;
  }

  #kosodate .title h2 {
    font-size: 4.0rem;
  }

  #kosodate .title h2 span {
    font-size: 2.0rem;
  }

  /* #kosodate .title img {
    width: 25%;
  } */

  #kosodate .riyousha .title {
    flex-direction: column;
  }

  #kosodate .riyousha .title h3 {
    text-align: center;
    width: 100%;
  }

  #kosodate .riyousha_arrow .arrow_red {
    left: 47%;
  }
}


/*Profile*/
#profile {
  background-color: #fff;
  padding: 100px 0;
}

#profile .profileflx {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 90%;
  max-width: 1152px;
  margin: auto;
}

#profile .left {
  width: 71%;
}

#profile .left h3 {
  font-size: 3.2rem;
}

#profile .left h3 span {
  font-size: 2.1rem;
}

#profile .tbl1 {
  width: 100%;
  margin: 0;
  border-spacing: 2px;
  border-collapse: separate;
}

#profile .tbl1 th {
  width: 12%;
  border: solid 1px #9e2428;
  padding: 0.5em 0;
  color: #9e2428;
  text-align: center;
}

#profile .tbl1 td {
  width: 88%;
  padding: 0.5em 0 0.5em 1em;
}

#profile .tbl1 td .sinjo {
  font-size: 2.4rem;
  font-family: serif;
  line-height: 1.4;
  /* font-weight: bold; */
  margin-top: 10px;
}

#profile .tbl2 tr:nth-child(3) {
  background: #FCEFF1;
}

#profile .tbl2 th {
  width: 14%;
  border-bottom: solid 1px #9e2428;
  padding: 1em 0;
  color: #9e2428;
  vertical-align: top;
  white-space: nowrap;
  padding-left: 20px;
}

#profile .tbl2 td {
  width: 86%;
  border-bottom: solid 1px #9e2428;
  padding: 1em 20px;
}

#profile .tbl2 td .tdlist {
  list-style-type: disc;
  margin: 0 0 0 0.5em;
  padding-left: 1em;
}

#profile .left .sub01,
#profile .left .sub01 dl {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

#profile .left .sub01 p {
  width: 70px;
}

#profile .left .sub01 dl {
  flex-wrap: wrap;
  width: calc(100% - 70px);
}

#profile .left .sub01 dl dt {
  width: 60px;
}

#profile .left .sub01 dl dd {
  width: calc(100% - 60px);
}

#profile .right {
  width: 29%;
}

#profile .right img {
  width: 100%;
  height: auto;
  max-width: 363px;
  margin: auto;
}

#profile .right .sub {
  box-sizing: border-box;
  padding-left: 30px;
}

#profile .right .sub p {
  width: 90%;
  margin: 0 auto 10px;
  font-size: 1.6rem;
  text-align: center;
}

@media screen and (max-width: 1024px) {

  #profile .left .sub01 {
    flex-direction: column;
  }

  #profile .left .sub01 p,
  #profile .left .sub01 dl {
    width: 100%;
  }

}

@media screen and (max-width: 767px) {
  #profile {
    padding: 25px 0;
  }

  #profile .profileflx {
    display: block;
  }

  #profile .left {
    width: 100%;
  }

  #profile .right {
    width: 100%;
  }

  #profile .tbl1 td {
    padding: 0.5em 0 0.5em 0.5em;
  }

  #profile .tbl1 td .sinjo {
    font-size: 1.8rem;
  }

  #profile .tbl2 th {
    width: 23%;
    padding-left: 10px;
  }

  #profile .tbl2 td {
    width: 77%;
    padding-left: 10px;
    padding-right: 10px;
  }


  #profile .left .sub01 dl dt {
    width: 50px;
  }

  #profile .left .sub01 dl dd:last-child {
    margin-bottom: 0;
  }

  #profile .right img {
    width: 210px;
    height: auto;
    display: block;
    margin: auto;
  }

  #profile .right .sub {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    box-sizing: border-box;
    margin-top: 10px;
    padding-left: 0;
  }

  #profile .right .sub div {
    max-width: 210px;
    width: 100%;
  }

  #profile .right .sub div p {
    width: 100%;
    margin: 0 auto;
    font-size: 1.4rem;
  }

  #profile .right .sub div img {
    width: 100%;
  }

}

/*facebook*/
#fb {
  background: #426071;
  margin: 0;
  padding: 70px 0;
}

#fb h2 {
  color: #fff;
  margin: 0 auto 40px;
}

#fb .bnr {
  position: relative;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 9999px;
  border: 1px solid #000;
  max-width: 420px;
  height: 70px;
  margin: 0 auto;
  font-size: 2.0rem;
  font-weight: bold;
  color: #000;

  filter: drop-shadow(0px 8px 0px rgba(0, 0, 0, 0.20));
  transform: translateZ(0);

}

@media screen and (max-width: 768px) {
  #fb {
    padding: 50px 0;
  }

  #fb h2 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 560px) {
  #fb .bnr {
    max-width: 350px;
    width: 90%;
    height: 60px;
    font-size: 1.8rem;
  }
}

/*FOOTER***************/
footer {
  background-color: #363636;
}

footer .footerInfo {
  width: 100%;
  padding: 40px 5% 40px;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
}

footer .footerInfo h2 {
  font-size: 2.8rem;
  color: #fff;
}

footer .footerInfo .address {
  text-align: center;
  font-size: 2rem;
}

footer .footerInfo .tel {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2em;
}

footer .footerInfo .tel a {
  color: #fff;
  font-size: 2rem;
}

footer .footerInfo small {
  text-align: center;
  font-size: 1.2rem;
}

#page_top {
  position: fixed;
  right: 30px;
  opacity: 0.8;
  z-index: 9998;
  display: block;
}

#page_top img {
  display: block;
}

#page_top:hover {
  opacity: 1;
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  #page_top {
    right: 5px;
  }

  footer .footerInfo {
    padding: 35px 5% 35px;
  }
}

@media screen and (max-width: 767px) {
  footer .footerInfo h2 {
    font-size: 1.8rem;
  }

  footer .footerInfo .address {
    font-size: 1.6rem;
  }

  footer .footerInfo .tel {
    font-size: 1.6rem;
  }

  footer .footerInfo small {
    font-size: 1rem;
  }
}

@media screen and (max-width: 479px) {
  footer .footerInfo {
    padding: 25px 5% 25px;
  }

  #page_top img {
    width: 20px;
    height: auto;
  }
}