@charset "UTF-8";
/*  @media用 */
ul {
  padding-inline: 0;
}

.tac, .center {
  text-align: center;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

.left_t {
  text-align: left !important;
}

.right_t {
  text-align: right !important;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.vatop {
  vertical-align: top;
}

.vam {
  vertical-align: middle;
}

.fwb {
  font-weight: bold;
}

.fwn {
  font-weight: normal;
}

.ls0 {
  letter-spacing: 0px;
}

.ls1 {
  letter-spacing: 1px;
}

.ls2 {
  letter-spacing: 2px;
}

.lsm1 {
  letter-spacing: -1px;
}

.lsm2 {
  letter-spacing: -2px;
}

.lh1 {
  line-height: 1 !important;
}

.lh2 {
  line-height: 2 !important;
}

.fonts_italic {
  font-style: italic;
}

.wspace-nw {
  white-space: nowrap;
}

.fs0 {
  font-size: 0;
}

.bt0 {
  border-top: 0 !important;
}

.bb0 {
  border-bottom: 0 !important;
}

.bsnone {
  box-shadow: none !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.mauto {
  margin: auto !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.wauto {
  width: auto !important;
}

.w100 {
  width: 100% !important;
}

.w50 {
  width: 50% !important;
}

.dibl {
  display: block !important;
}

.diibl {
  display: inline-block !important;
}

.aitemsc {
  align-items: center;
}

.ascenter {
  align-self: center;
}

.asend {
  align-self: end;
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

.grid {
  gap: 10px;
}

@media screen and (min-width: 540px) {
  .grid {
    display: grid;
    display: -ms-grid;
  }
}

.grid.col2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid.col2.columns7-3 {
  grid-template-columns: 7fr 3fr;
}

.grid.col2.columns3-7 {
  grid-template-columns: 3fr 7fr;
}

.grid.col2.columns4-6 {
  grid-template-columns: 4fr 6fr;
}

.grid.col3 {
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 540px) {
  .grid.col3.sp-col2 {
    display: grid;
    display: -ms-grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}

.gridgap0 {
  gap: 0 !important;
}

.gridgap20 {
  gap: 20px !important;
}

.gridgap30 {
  gap: 30px !important;
}

@media (max-width: 540px) {
  .gridgap30 {
    gap: 10px !important;
  }
}

.gridac {
  display: grid;
  display: -ms-grid;
  align-items: center;
}

.aitemsc {
  align-items: center;
}

.asend {
  align-self: end;
}

.flex {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .flex.c2 .item {
    width: calc((100% - 25px) / 2);
    margin-right: 25px;
  }
  .flex.c2 .item:nth-child(2n) {
    margin-right: 0;
  }
  .flex.c3 .item {
    width: calc((100% - 50px) / 3);
    margin-right: 25px;
  }
  .flex.c3 .item:nth-child(3n) {
    margin-right: 0;
  }
  .flex.c4 .item {
    width: calc((100% - 30px) / 4);
  }
  .flex.c5 .item {
    width: calc((100% - 40px) / 5);
  }
}

.flex.ac {
  align-items: center;
}

.flex.sb {
  justify-content: space-between;
}

.flex.jc {
  justify-content: center;
}

.flex.ja {
  justify-content: space-around;
}

@media print, screen and (min-width: 769px) {
  .flex_pc {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
  .flex_pc.ac {
    align-items: center;
  }
  .flex_pc.afe {
    align-items: flex-end;
  }
  .flex_pc.sb {
    justify-content: space-between;
  }
  .flex_pc.c2 .item {
    width: calc((100% - 25px) / 2);
    margin-right: 25px;
  }
  .flex_pc.c2 .item:nth-child(2n) {
    margin-right: 0;
  }
  .flex_pc.c3 .item {
    width: calc((100% - 50px) / 3);
    margin-right: 25px;
  }
  .flex_pc.c3 .item:nth-child(3n) {
    margin-right: 0;
  }
  .flex_pc.c4 .item {
    width: calc((100% - 30px) / 4);
    margin-right: 10px;
  }
  .flex_pc.c4 .item:nth-child(4n) {
    margin-right: 0;
  }
  .flex_pc.c5 .item {
    width: calc((100% - 40px) / 5);
    margin-right: 10px;
  }
  .flex_pc.c5 .item:nth-child(5n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 540px) {
  .flex_sp {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
  .flex_sp.ac {
    align-items: center;
  }
  .flex_sp.afe {
    align-items: flex-end;
  }
  .flex_sp.sb {
    justify-content: space-between;
  }
  .flex_sp.jc {
    justify-content: center;
  }
  .flex_sp.spc2 .item {
    width: calc((100% - 25px) / 2);
    margin-right: 25px;
  }
  .flex_sp.spc2 .item:nth-child(2n) {
    margin-right: 0;
  }
  .flex_sp.c73 .item {
    width: calc(70% - 25px);
    margin-right: 25px;
  }
  .flex_sp.c73 .item:nth-child(2n) {
    width: calc(30% - 25px);
    margin-right: 0;
  }
}

@media screen and (max-width: 540px) {
  .flex_order {
    display: flex !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex_order .order1 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .flex_order .order2 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .flex_order .order3 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }
}

a {
  color: #5a5a5a;
  transition: all .3s;
  text-decoration: none;
}

a:hover {
  opacity: .7;
}

a:visited {
  color: inherit;
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding-inline: 10px !important;
}

.inner.in_ptn2 {
  max-width: 980px;
}

.inner.in_ptn750 {
  max-width: 750px;
}

.inner_com {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .inner_com {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 540px) {
  h2 {
    font-size: 18px;
  }
}

.sstxt {
  font-size: 0.5em;
}

@media (min-width: 541px) {
  .stxt {
    font-size: 0.8em;
  }
}

.mtxt {
  font-size: 1.1em;
}

.ltxt {
  font-size: 1.2em;
}

.lltxt {
  font-size: 1.6em;
}

.subtxt {
  color: #f5f5e7;
}

.txt_nor {
  font-size: 5.33333vw;
}

@media screen and (min-width: 541px) {
  .txt_nor {
    font-size: 18px;
  }
}

.txt_nor.ltxt {
  font-size: 3.46667vw;
}

@media screen and (min-width: 541px) {
  .txt_nor.ltxt {
    font-size: 22px;
  }
}

.txt_nor.tn_ptn1 {
  line-height: 1.7;
}

.txt_nor.tn_ptn2 {
  line-height: 2;
}

.tit_01 {
  font-size: 5.86667vw;
  font-weight: bold;
  line-height: 1.34;
  font-family: "hiragino-mincho-pron", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "Sawarabi Mincho", "Yu Mincho", YuMincho, "MS P明朝", "MS PMincho", "Hiragino Mincho W3 JIS2004", "Hiragino Mincho Pro W3", serif;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .tit_01 {
    font-size: 36px;
  }
}

.tit_01 .sstxt, .tit_01.sstxt {
  font-size: 4.26667vw;
}

@media screen and (min-width: 768px) {
  .tit_01 .sstxt, .tit_01.sstxt {
    font-size: 30px;
  }
}

.tit_01 .stxt, .tit_01.stxt {
  font-size: 3.46667vw;
}

@media screen and (min-width: 768px) {
  .tit_01 .stxt, .tit_01.stxt {
    font-size: 25px;
  }
}

.tit_01 .stxt2 {
  font-size: 4vw;
}

@media screen and (min-width: 768px) {
  .tit_01 .stxt2 {
    font-size: 28px;
  }
}

.tit_01 .mtxt {
  font-size: 5.6vw;
}

@media screen and (min-width: 768px) {
  .tit_01 .mtxt {
    font-size: 40px;
  }
}

.tit_01 .mtxt2 {
  font-size: 6.13333vw;
}

@media screen and (min-width: 768px) {
  .tit_01 .mtxt2 {
    font-size: 44px;
  }
}

.tit_01 .ltxt {
  font-size: 6.66667vw;
}

@media screen and (min-width: 768px) {
  .tit_01 .ltxt {
    font-size: 49px;
  }
}

.tit_01 .ltxt2 {
  font-size: 10.13333vw;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .tit_01 .ltxt2 {
    font-size: 75px;
  }
}

.tit_01 .lltxt {
  font-size: 11.46667vw;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .tit_01 .lltxt {
    font-size: 85px;
  }
}

.tit_01 .num {
  font-size: 6.93333vw;
}

@media screen and (min-width: 768px) {
  .tit_01 .num {
    font-size: 51px;
  }
}

.tit_01 .num2 {
  font-size: 10.66667vw;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .tit_01 .num2 {
    font-size: 78px;
  }
}

.tit_01.bb01 {
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.tit_lline {
  line-height: 1.3;
  padding: 0px 10px 0 17px;
  margin-bottom: 16px;
  border-left: 3px solid #bf9c2f;
}

.tit_bg1 {
  font-size: 1.375rem;
  color: #072b4d;
  font-weight: 700;
  padding: 13px 0;
  margin: 0 0 10px;
  background-color: #f3f4f5;
  border-radius: 10px 10px 0 0;
}

.d_bb .in_d {
  position: relative;
}

.d_bb .in_d:before {
  content: "";
  position: absolute;
  width: 40rem;
  max-width: 95%;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: auto;
  border-bottom: solid 1px #5a5a5a;
}

@media (max-width: 540px) {
  .d_bb .in_d:before {
    display: none;
  }
}

.img_br img {
  border-radius: 20px;
}

.img_br3 img {
  border-radius: 0 0 20px;
}

.img_br4 img {
  border-radius: 0 0 0 30px;
}

.border_box8 {
  padding: 20px 15px;
  border: 8px solid #f6f6f5;
}

.bg_box {
  background: #f6f6f5;
}

.cmain {
  color: #a1b17f;
}

html {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ Pro W4", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  color: #000;
  word-wrap: break-word;
  font-size: 16px;
}

body {
  font-size: 16px;
  font-family: "hiragino-mincho-pron", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "Sawarabi Mincho", "Yu Mincho", YuMincho, "MS P明朝", "MS PMincho", "Hiragino Mincho W3 JIS2004", "Hiragino Mincho Pro W3", serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

footer {
  text-align: center;
  padding: 10px;
  background-color: #333;
  color: white;
}

.head_byage {
  background-color: #a1b17f;
  color: white;
  padding: 20px;
  text-align: center;
}

.sec_ptn1 {
  padding: 20px;
  margin: 10px auto;
  max-width: 1200px;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
  font-weight: normal;
}

.item_list li {
  display: table;
}

@media (min-width: 541px) {
  .item_list li {
    width: 33.333%;
  }
}

.item_list .leftbox {
  width: 100px;
}

.item_list .rightbox {
  width: calc(100% - 0px);
  display: table-cell;
  vertical-align: middle;
  padding-left: 10px;
}

@media (max-width: 540px) {
  .item_list h2 {
    font-size: 5.86667vw;
  }
}

@media (max-width: 540px) {
  .item_list p {
    font-size: 5.33333vw;
  }
}

.intro {
  position: relative;
}

.intro:before {
  position: absolute;
  width: 100%;
  height: 750px;
  left: -15vw;
  top: -25vw;
  margin: auto;
  background: url("../img/bg1.png") no-repeat;
  z-index: -1;
}

.intro .img_box {
  position: relative;
}

@media (min-width: 541px) {
  .intro .img_box .prof_box {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(246, 246, 245, 0.8);
    border-radius: 8px;
    padding: 15px 15px;
  }
}

@media (max-width: 375px) {
  .intro .txt_nor.tac {
    text-align: left;
  }
}

.sec2 {
  position: relative;
}

@media (min-width: 541px) {
  .sec2:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 750px;
    left: 0vw;
    top: -20vw;
    margin: auto;
    background: url("../img/bg1.png") no-repeat;
    transform: scaleX(-1);
    z-index: -1;
  }
}

@media (min-width: 541px) {
  .intro_nmn .border_box8 {
    padding: 30px;
  }
}
