@charset "utf8";
/*=============================
	- font-style
	- 汎用 color & background
	- 汎用 wrap & title
	- top.css  TOPページCSS
==============================*/

/*----------------------------------------------------
	font-style
----------------------------------------------------*/
/*  全体 font  */
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/*----------------------------------------------------
	汎用 color & background
----------------------------------------------------*/
/* color */
.white {
  color: #fff;
}
.base-color01 {
  /*--メイン文字カラー 黒--*/
  color: #000;
}
.base-back01 {
  /*--メイン背景カラー 白--*/
  background: #fff;
}
.point-back01 {
  /*--ポイント背景カラー 緑--*/
  background: #7dbe6a;
}
.point-back02 {
  /*--ポイント背景カラー オレンジ--*/
  background: #eab157;
}
.point-back03 {
  /*--ポイント背景カラー ピンク--*/
  background: #ffa1a1;
}
.accent-back01 {
  /*--アクセント背景カラー 薄イエロー--*/
  background: #fffadd;
}
.accent-back02 {
  /*--アクセント背景カラー 薄グレー--*/
  background: #eee;
}

/*----------------------------------------------------
	汎用 buttton
----------------------------------------------------*/
.btn01 {
  display: block;
  width: 430px;
  height: 80px;
  background-color: #fff;
  border: solid 2px #eab157;
  border-radius: 40px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.btn01 span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
}
@media screen and (max-width: 650px) {
  .btn01 {
    width: 100%;
  }
  .btn01 span {
    max-width: 100%;
  }
  .btn01 span img {
    height: 60px;
    object-fit: none;
  }
}

/*----------------------------------------------------
	汎用 wrap & title
----------------------------------------------------*/
/*  width 管理  */
.mywidth {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 650px) {
  .mywidth {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

/*  メインコンテンツwrap   */
#main-wrapp {
  overflow-x: hidden;
}

/* title */
.content-title01 {
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
}
.content-title01 span {
  display: block;
  width: 86px;
  height: 86px;
  background-color: #eab157;
  position: relative;
  border-radius: 43px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 33px;
}
.content-title01 span:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -17px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #eab157 transparent transparent transparent;
  border-width: 23px 13px 0 13px;
}
.content-title01 span img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.content-title01.white {
  color: #fff;
}
.content-title01.white span {
  background-color: #fff;
}
.content-title01.white span:after {
  border-color: #fff transparent transparent transparent;
}
@media screen and (max-width: 650px) {
  .content-title01 {
  }
  .content-title01 img {
    width: 100%;
    height: 30px;
    object-fit: contain;
  }
  .content-title01 span {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
  }
  .content-title01 span:after {
    bottom: -10px;
    border-width: 13px 8px 0 8px;
  }
  .content-title01 span img {
    height: 38px;
  }
}

.content-title02 {
  text-align: center;
  padding-bottom: 20px;
  background-image: linear-gradient(
    to right,
    #434343,
    #434343 2px,
    transparent 2px,
    transparent 2px
  );
  background-size: 8px 2px;
  background-position: bottom;
  background-repeat: repeat-x;
}
@media screen and (max-width: 650px) {
  .content-title02 {
  }
}

/*----------------------------------------------------
	top.css  TOPページCSS
----------------------------------------------------*/
/*  content01  */
.content01 {
  padding-top: 45px;
  padding-bottom: 77px;
}
.content01 .content-title01 span img {
  left: 46%;
}
.content01 .box {
  width: 385px;
}
.content01 .box .image {
  min-height: 261px;
  position: relative;
}
.content01 .box .title {
  color: #626262;
}
.content01 .box .text {
  color: #626262;
  margin-top: 26px;
}
@media screen and (min-width: 651px) {
  .content01 .box:first-of-type .image img {
    position: absolute;
    top: 58%;
    left: 40%;
    transform: translate(-50%, -50%);
  }
  .content01 .box:nth-child(3) .image img {
    position: absolute;
    top: 65%;
    left: 45%;
    transform: translate(-50%, -50%);
  }
  .content01 .box:first-of-type .title {
    margin-left: 15px;
  }
  .content01 .box:nth-child(2) .title {
    margin-left: 35px;
  }
}
@media screen and (max-width: 650px) {
  .content01 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .content01 .box {
    width: 100%;
    margin-top: 40px;
  }
  .content01 .box:first-of-type {
    margin-top: 0;
  }
  .content01 .box .image {
    min-height: auto;
  }
}

/*  content02  */
.content02 {
  padding-top: 50px;
  padding-bottom: 80px;
}
.content02 .left,
.content02 .right {
  width: calc((100% - 60px) / 2);
}
.content02 .left ul,
.content02 .right ul {
  margin-top: 23px;
}
.content02 .left ul li,
.content02 .right ul li {
  margin-right: 10px;
  margin-top: 10px;
}
.content02 .btn {
  display: block;
  width: 180px;
  height: 50px;
  border: solid 2px #eab157;
  background-color: #fff;
  text-align: center;
  font-size: 16px;
  color: #eab157;
  border-radius: 25px;
  padding-top: 11px;
}
@media screen and (min-width: 651px) {
  .content02 .left ul li:nth-child(3n),
  .content02 .right ul li:nth-child(3n) {
    margin-right: 0;
  }
  .content02 .left ul li:nth-child(-n + 3),
  .content02 .right ul li:nth-child(-n + 3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 650px) {
  .content02 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .content02 .left,
  .content02 .right {
    width: 100%;
  }
  .content02 .btn {
    width: 100%;
  }
}

/*  content03  */
.content03 {
  padding-top: 50px;
  padding-bottom: 70px;
}
.content03 .box {
  width: calc((100% - (35px * 2)) / 3);
  height: 340px;
  margin-right: 35px;
  margin-top: 40px;
}
.content03 .box:nth-child(3n) {
  margin-right: 0;
}
.content03 .box:nth-child(-n + 3) {
  margin-top: 0;
}
.content03 .box a {
  display: block;
  border: solid 1px #e7e6e6;
  border-radius: 12px;
  position: relative;
  box-shadow: 0px 0px 6px 0px rgba(172, 175, 175, 0.5);
}
.content03 .box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.content03 .box .tag {
  position: absolute;
  top: 0;
  left: 14px;
}
.content03 .box .tag li {
  padding: 5px 20px;
}
.content03 .box .text {
  padding: 15px 9px 16px;
  font-weight: 500;
}
.content03 .box .body {
  line-height: 1.88;
}
@media screen and (max-width: 650px) {
  .content03 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .content03 .box {
    width: 100%;
    height: 340px;
    margin-right: 0;
    margin-top: 20px;
  }
  .content03 .box:nth-child(-n + 3) {
    margin-top: 20px;
  }
  .content03 .box:first-of-type {
    margin-top: 0;
  }
}

/*  content04  */
.content04 {
  padding-top: 50px;
  padding-bottom: 65px;
}
.content04 .out-wrap {
  text-align: center;
  display: table;
  table-layout: auto;
  margin-left: auto;
  margin-right: auto;
}
.content04 .list-wrap li {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 0 20px;
}
.content04 .list-wrap li .date {
  min-width: 160px;
  font-size: 18px;
  color: #000;
  letter-spacing: 0.05em;
}
.content04 .list-wrap li .text {
  font-weight: normal;
  font-size: 18px;
  overflow: hidden;
}
.content04 .list-wrap li a {
  color: #000;
}
@media screen and (max-width: 650px) {
  .content04 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .content04 .out-wrap {
    width: 100%;
  }
  .content04 .list-wrap li {
    display: block;
    padding: 0 0 30px;
  }
  .content04 .list-wrap li .date {
    display: block;
    border-bottom: #ccc 1px solid;
    padding-bottom: 10px;
  }
  .content04 .list-wrap li .text {
    display: block;
    padding: 10px 0 0;
  }
}

/*  content05  */
.content05 {
  background: url("../images/contact-bg.png") no-repeat center / cover;
  padding-top: 31px;
}
.content05 .content-title01 span img {
  left: 47%;
}
.content05 .tel-btn {
  display: block;
  background: url("../images/footer-tel.png") no-repeat left 10px;
  padding-left: 80px;
}
.content05 .tel-btn span {
  transform: scaleX(1.2);
  display: inline-block;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.content05 .tel-btn p {
  letter-spacing: 0.05em;
  margin-left: -30px;
}
.content05 .contact-btn {
  width: 420px;
  height: 80px;
  border-radius: 40px;
  border: solid 2px #fff;
  position: relative;
  margin-left: 90px;
}
.content05 .contact-btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 650px) {
  .content05 {
    padding-top: 50px;
  }
  .content05 .tel-btn {
    padding-left: 55px;
    background-position: left 5px;
    background-size: 30px auto;
    margin-left: -30px;
  }
  .content05 .contact-btn {
    width: 100%;
    height: 60px;
    margin-left: 0;
  }
}
.link {
    color: #3d70fc;
    text-decoration: underline;
}

.contact_form h2{
	letter-spacing: 0.2em;
}

.contact_form p{
	letter-spacing: 0.08em;
	line-height:2em;
}
