body {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #483620;
  background-color: #FBF8E9;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.inner {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

section {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  section {
    padding: 64px 0;
  }
}

.hidden-xs{
  display: inline;
}
@media screen and (max-width: 768px) {
  .hidden-xs{
    display: none;
  }
}

.visible-xs{
  display: none;
}
@media screen and (max-width: 768px) {
  .visible-xs{
    display: inline;
  }
}

.section_title {
  line-height: 1.3;
  text-align: center;
}
.section_title h2 {
  font-size: 40px;
  color: #2A4576;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .section_title h2 {
    font-size: 24px;
  }
}
.section_title span {
  font-size: 18px;
  color: #483620;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .section_title span {
    font-size: 12px;
  }
}

.btn {
  max-width: 240px;
  width: 100%;
}
.btn a {
  position: relative;
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  background-color: #81B963;
  transition: 0.3s;
}
.btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  display: block;
  width: 10px;
  height: 20px;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.btn a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.header {
  width: 100%;
  position: fixed;
  z-index: 9999;
}

.header_upper {
  background-color: #619EE3;
}
@media screen and (max-width: 768px) {
  .header_upper {
    display: none;
  }
}
.header_upper p {
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.header_wrap {
  padding-top: 24px;
  padding-bottom: 16px;
  background-color: rgba(251, 248, 233, 0.8);
}
@media screen and (max-width: 768px) {
  .header_wrap {
    margin-top: inherit;
    padding: 16px 0;
  }
}
.header_wrap .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_wrap .logo {
  width: 200px;
}
@media screen and (max-width: 1024px) {
  .header_wrap .logo {
    width: 18vw;
  }
}
@media screen and (max-width: 768px) {
  .header_wrap .logo {
    max-width: 120px;
    width: 100%;
  }
}
.header_wrap .logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
.header_wrap .header__nav {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .header_wrap .header__nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background-color: #fff;
    transition: ease 0.4s;
    z-index: 9999;
  }
}
.header_wrap .header__nav .nav__items {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .header_wrap .header__nav .nav__items {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
}
.header_wrap .header__nav .nav__items li {
  position: relative;
}
.header_wrap .header__nav .nav__items li a span {
  display: block;
  text-align: center;
  font-weight: bold;
}
.header_wrap .header__nav .nav__items li a .hlink_eng {
  font-size: 24px;
  color: #2A4576;
}
@media screen and (max-width: 1024px) {
  .header_wrap .header__nav .nav__items li a .hlink_eng {
    font-size: 2.343vw;
  }
}
@media screen and (max-width: 768px) {
  .header_wrap .header__nav .nav__items li a .hlink_eng {
    line-height: 1.2;
    font-size: 24px;
  }
}
.header_wrap .header__nav .nav__items li a .hlink_jp {
  font-size: 16px;
  color: #483620;
  margin-top: 4px;
}
@media screen and (max-width: 1024px) {
  .header_wrap .header__nav .nav__items li a .hlink_jp {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 768px) {
  .header_wrap .header__nav .nav__items li a .hlink_jp {
    line-height: 1.2;
    font-size: 16px;
  }
}
.header_wrap .header__nav .nav__items li:nth-child(n+2) {
  margin-left: 60px;
}
@media screen and (max-width: 1024px) {
  .header_wrap .header__nav .nav__items li:nth-child(n+2) {
    margin-left: 48px;
  }
}
@media screen and (max-width: 768px) {
  .header_wrap .header__nav .nav__items li:nth-child(n+2) {
    margin-left: inherit;
    margin-top: 32px;
  }
}
.header_wrap .header__nav .nav__items li:nth-child(n+2)::before {
  content: "";
  position: absolute;
  width: 1px;
  top: 32%;
  left: -30px;
  height: 24px;
  border: 1px dashed #2A4576;
}
@media screen and (max-width: 1024px) {
  .header_wrap .header__nav .nav__items li:nth-child(n+2)::before {
    left: -24px;
  }
}
@media screen and (max-width: 768px) {
  .header_wrap .header__nav .nav__items li:nth-child(n+2)::before {
    width: 24px;
    height: 1px;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.btt {
  width: 80px;
  height: 80px;
  position: fixed;
  bottom: 10px;
  right: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  background-color: #3597C2;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .btt {
    right: 10px;
    width: 60px;
    height: 60px;
  }
}
.btt img {
  display: inline-block;
  width: 16px;
  height: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}
.btt span {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .btt span {
    font-size: 12px;
    line-height: 1.4;
  }
}
.btt:hover {
  opacity: 0.8;
  cursor: pointer;
}

.header__hamburger {
  width: 48px;
  height: 100%;
}

.hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
  }
}
.hamburger span {
  width: 100%;
  height: 2px;
  border-radius: 50px;
  background-color: #619EE3;
  position: relative;
  transition: ease 0.4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
.hamburger:hover {
  cursor: pointer;
}

.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -15px;
  transform: rotate(-45deg);
}

.fv {
  position: relative;
  padding: 288px 0;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .fv {
    padding: 124px 0 170px;
  }
}

.fv .fv_bgblue01,
.fv .fv_bgblue02,
.fv .fv_bgblue03,
.fv .fv_bgblue04,
.fv .fv_bgblue05 {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(54, 149, 224, 0.2);
}

.fv_wrap {
  display: flex;
}
@media screen and (max-width: 768px) {
  .fv_wrap {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.fv_wrap .textbox {
  position: relative;
  width: 50%;
  padding: 112px 40px 0 0px;
}
@media screen and (max-width: 768px) {
  .fv_wrap .textbox {
    width: 100%;
    padding: 94px 0px 0 0px;
  }
}
.fv_wrap .textbox .fv_bgblue01 {
  width: 344px;
  height: 344px;
  top: 260px;
  left: -420px;
}
.fv_wrap .textbox .fv_bgblue02 {
  width: 132px;
  height: 132px;
  top: 0px;
  left: -180px;
}
.fv_wrap .textbox h3{
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ea8f13;
}
@media screen and (max-width: 768px) {
  .fv_wrap .textbox h3{
    font-size: 16px;
  }
}
.fv_wrap .textbox h2 {
  font-size: 45px;
  font-weight: bold;
}
@media screen and (max-width: 1160px) {
  .fv_wrap .textbox h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .fv_wrap .textbox h2 {
    font-size: 28px;
  }
}
.fv_wrap .textbox p {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .fv_wrap .textbox p {
    font-size: 14px;
    margin-top: 8px;
  }
}
@media screen and (max-width: 768px) {
  .fv_wrap .textbox p {
    font-size: 14px;
    margin-top: 8px;
  }
}
.fv_wrap .textbox .btn {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .fv_wrap .textbox .btn {
    margin: 24px auto;
  }
}
.fv_wrap .textbox .text_lower {
  width: 100%;
  margin-top: 116px;
}

.fv .service{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0px 60px;
  padding-top: 140px;
}
@media screen and (max-width: 768px) {
  .fv .service {
    gap: 20px;
    padding-top: 0;
    flex-direction: column;
  }
}
.fv .service .info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 320px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(54, 149, 224, 0.2);
}
.fv .service .info.info2 {
}
.fv .service .info.info2 {
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .fv .service .info {
    margin: 0 auto;
    width: 288px;
    height: 288px;
  }
  .fv .service .info.info2 {
  }
}
.fv .service > h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 148px;
  height: 148px;
  font-size: 22px;
  font-weight: bold;
  color: #2A4576;
  border-radius: 50%;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .fv .service .info h3 {
    width: 104px;
    height: 104px;
    font-size: 16px;
  }
}
.fv .service .info h4 {
  font-size: 22px;
  font-weight: bold;
  color: #483620;
}
@media screen and (max-width: 768px) {
  .fv .service .info h4 {
    font-size: 20px;
  }
}
.fv .service .info p {
  font-size: 16px;
  font-weight: normal;
  color: #483620;
}
@media screen and (max-width: 768px) {
  .fv .service .info p {
    font-size: 14px;
  }
}
.fv .service .info p:nth-child(n+2) {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .fv .service .info p:nth-child(n+2) {
    margin-top: 14px;
  }
}
.fv_wrap .imgbox {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .fv_wrap .imgbox {
    max-width: 250px;
    width: 100%;
  }
}
.fv_wrap .imgbox .fv_bgblue03 {
  width: 230px;
  height: 230px;
  top: 300px;
  left: -50px;
}
@media screen and (max-width: 1160px) {
  .fv_wrap .imgbox .fv_bgblue03 {
    width: 23vw;
    height: 23vw;
    top: 30vw;
    left: -5vw;
  }
}
@media screen and (max-width: 768px) {
  .fv_wrap .imgbox .fv_bgblue03 {
    width: 154px;
    height: 154px;
    top: 160px;
    left: -60px;
  }
}
.fv_wrap .imgbox .fv_bgblue04 {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -100px;
}
@media screen and (max-width: 768px) {
  .fv_wrap .imgbox .fv_bgblue04 {
    width: 92px;
    height: 92px;
    top: 100px;
    right: -124px;
  }
}
.fv_wrap .imgbox .fv_bgblue05 {
  width: 288px;
  height: 288px;
  top: 240px;
  right: -360px;
}
@media screen and (max-width: 768px) {
  .fv_wrap .imgbox .fv_bgblue05 {
    display: none;
  }
}
.fv_wrap .imgbox .fish01,
.fv_wrap .imgbox .fish02 {
  position: absolute;
  z-index: 2;
}
.fv_wrap .imgbox .fish01 {
  right: 0;
  top: 0;
  width: 182px;
}
@media screen and (max-width: 1160px) {
  .fv_wrap .imgbox .fish01 {
    width: 12.8vw;
  }
}
@media screen and (max-width: 768px) {
  .fv_wrap .imgbox .fish01 {
    right: -36px;
    top: -12px;
    width: 119px;
  }
}
.fv_wrap .imgbox .fish02 {
  left: 0;
  bottom: 72px;
  width: 146px;
}
@media screen and (max-width: 1160px) {
  .fv_wrap .imgbox .fish02 {
    width: 14.6vw;
    left: 0;
    bottom: 5.4vw;
  }
}
@media screen and (max-width: 768px) {
  .fv_wrap .imgbox .fish02 {
    left: -18px;
    bottom: 0;
    width: 100px;
  }
}
.fv_wrap .imgbox .main_wrap {
  position: relative;
  max-width: 524px;
  max-height: 524px;
  width: 51.171vw;
  height: 51.171vw;
}
@media screen and (max-width: 768px) {
  .fv_wrap .imgbox .main_wrap {
    width: 250px;
    height: 250px;
    padding-left: inherit;
    margin: 0 auto;
  }
}
.fv_wrap .imgbox .main_img {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1160px) {
  .fv_wrap .imgbox .main_img {
    width: 100%;
    height: 100%;
  }
}
.fv_wrap .imgbox .main_img img {
  -o-object-fit: contain;
     object-fit: contain;
}
.fv_wrap .imgbox .main_img_pic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  background-image: url(../images/img01.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.fv_wrap .imgbox .sub_img {
  position: absolute;
  right: -80px;
  bottom: -108px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  padding: 10px;
  background-color: #FBF8E9;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1160px) {
  .fv_wrap .imgbox .sub_img {
    right: -8vw;
    bottom: -10.8vw;
    width: 28vw;
    height: 28vw;
  }
}
@media screen and (max-width: 768px) {
  .fv_wrap .imgbox .sub_img {
    right: -30px;
    bottom: -70px;
    width: 154px;
    height: 154px;
    padding: 2px;
  }
}
.fv_wrap .imgbox .sub_img img {
  width: calc(100% - 10px);
  -o-object-fit: contain;
     object-fit: contain;
}
.circle {
  position: absolute;
  top: calc(100px - 4.73vw);
  width: 100%;
  height: 4.73vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/circlebg.png);
}
@media screen and (max-width: 768px) {
  .circle {
    top: calc(64px - 13.6vw);
    height: 13.6vw;
    background-image: url(../images/circlebg-sp.png);
    border-radius: inherit;
    background-color: transparent;
  }
}

.sec01 {
  padding-top: 204px;
  margin-top: -204px;
  position: relative;
  background-color: #F4EAD8;
}
@media screen and (max-width: 768px) {
  .sec01 {
    margin-top: -92px;
    padding: 156px 0 100px;
  }
}
.sec01::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100px;
  background-color: #FBF8E9;
}
@media screen and (max-width: 768px) {
  .sec01::before {
    height: 64px;
  }
}
.sec01 h3 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .sec01 h3 {
    font-size: 18px;
    line-height: 2;
    margin-top: 48px;
  }
}
.sec01 p {
  font-size: 18px;
  line-height: 2.4;
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .sec01 p {
    font-size: 12px;
    margin-top: 16px;
  }
}
.sec01 ul {
  display: flex;
  width: 100%;
  margin-top: 72px;
}
@media screen and (max-width: 768px) {
  .sec01 ul {
    display: block;
    margin-top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .sec01 ul li {
    width: 100%;
    margin: 0 auto;
  }
}
.sec01 ul li img {
  -o-object-fit: contain;
     object-fit: contain;
}
.sec01 ul li h4 {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .sec01 ul li h4 {
    font-size: 14px;
    margin-top: 6px;
  }
}
.sec01 ul li:nth-child(n+2) {
  margin-left: 24px;
}
@media screen and (max-width: 768px) {
  .sec01 ul li:nth-child(n+2) {
    margin-left: inherit;
    margin-top: 48px;
  }
}
@media screen and (max-width: 768px) {
  .sec01 ul li:nth-child(2) {
    width: 68%;
    margin: 48px auto 0;
  }
}

.sec02 {
  padding: 304px 0 100px;
  margin-top: -204px;
}
@media screen and (max-width: 768px) {
  .sec02 {
    margin-top: -92px;
    padding: 156px 0 100px;
  }
}
.sec02 .sec02_upper {
  max-width: 794px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  margin-top: 72px;
}
@media screen and (max-width: 768px) {
  .sec02 .sec02_upper {
    max-width: 400px;
    flex-direction: column-reverse;
    margin-top: 48px;
  }
}
@media screen and (max-width: 768px) {
  .sec02 .sec02_upper .imgbox {
    margin-top: 24px;
  }
}
.sec02 .sec02_upper .imgbox img {
  -o-object-fit: contain;
     object-fit: contain;
}
.sec02 .sec02_upper .textbox {
  margin-left: 64px;
}
@media screen and (max-width: 768px) {
  .sec02 .sec02_upper .textbox {
    margin-left: inherit;
  }
}
.sec02 .sec02_upper .textbox h3 {
  font-size: 32px;
  color: #2A4576;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sec02 .sec02_upper .textbox h3 {
    font-size: 24px;
  }
}
.sec02 .sec02_upper .textbox p {
  margin-top: 24px;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .sec02 .sec02_upper .textbox p {
    font-size: 14px;
    line-height: 2.6;
  }
}
.sec02 .sec02_lower {
  margin-top: 146px;
}
@media screen and (max-width: 768px) {
  .sec02 .sec02_lower {
    margin-top: 88px;
  }
}
.sec02 .sec02_lower ul {
  display: flex;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec02 .sec02_lower ul {
    display: block;
  }
}
.sec02 .sec02_lower ul li {
  width: calc((100% - 80px) / 3);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F4EAD8;
  width: 280px;
  height: 280px;
  border-radius: 50%;
}
@media screen and (max-width: 1160px) {
  .sec02 .sec02_lower ul li {
    width: 28vw;
    height: 28vw;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .sec02 .sec02_lower ul li {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }
}
.sec02 .sec02_lower ul li:nth-child(n+2) {
  margin-left: 80px;
}
@media screen and (max-width: 1160px) {
  .sec02 .sec02_lower ul li:nth-child(n+2) {
    margin-left: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .sec02 .sec02_lower ul li:nth-child(n+2) {
    margin-left: inherit;
    margin-top: 52px;
  }
}
.sec02 .sec02_lower ul li p {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 1160px) {
  .sec02 .sec02_lower ul li p {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  .sec02 .sec02_lower ul li p {
    font-size: 18px;
  }
}
.sec02 .sec02_lower ul li p span {
  color: #2A4576;
}
.sec02 .sec02_lower ul li .supple {
  position: absolute;
  left: -24px;
  bottom: -20px;
  border-radius: 6px;
  background-color: #fff;
  padding: 12px 16px;
}
@media screen and (max-width: 768px) {
  .sec02 .sec02_lower ul li .supple {
    text-align: center;
  }
}
.sec02 .sec02_lower ul li .supple span {
  font-size: 16px;
  font-weight: bold;
  color: #2A4576;
}
@media screen and (max-width: 768px) {
  .sec02 .sec02_lower ul li .supple span {
    font-size: 14px;
  }
}
.sec02 .sec02_lower ul li .sec02_fish1 {
  position: absolute;
  top: -10px;
  right: -10px;
  max-width: 140px;
  width: 100%;
}
@media screen and (max-width: 1160px) {
  .sec02 .sec02_lower ul li .sec02_fish1 {
    top: -1vw;
    width: 14vw;
  }
}
@media screen and (max-width: 768px) {
  .sec02 .sec02_lower ul li .sec02_fish1 {
    top: 0;
    max-width: 116px;
    width: 100%;
  }
}
.sec02 .sec02_lower ul li .sec02_fish2 {
  position: absolute;
  left: -60px;
  bottom: -60px;
  max-width: 190px;
  width: 100%;
}
@media screen and (max-width: 1160px) {
  .sec02 .sec02_lower ul li .sec02_fish2 {
    left: -6vw;
    bottom: -6vw;
    width: 19vw;
  }
}
@media screen and (max-width: 768px) {
  .sec02 .sec02_lower ul li .sec02_fish2 {
    left: -24px;
    bottom: -56px;
    max-width: 150px;
    width: 100%;
  }
}

.sec03 {
  padding: 304px 0 100px;
  margin-top: -204px;
}
@media screen and (max-width: 768px) {
  .sec03 {
    margin-top: -92px;
    padding: 156px 0 116px;
  }
}
.sec03 .sec03_price {
  max-width: 614px;
  width: 100%;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .sec03 .sec03_price {
    margin: 48px auto 0;
  }
}
.sec03 .sec03_price dl {
  width: 100%;
  display: flex;
  text-align: center;
}
.sec03 .sec03_price dl:nth-child(n+2) {
  margin-top: 24px;
}
.sec03 .sec03_price dl dt {
  width: 30%;
  font-size: 18px;
  color: #F4EAD8;
  padding: 8px 0;
  border-radius: 6px;
  background-color: #483620;
}
@media screen and (max-width: 768px) {
  .sec03 .sec03_price dl dt {
    font-size: 14px;
  }
}
.sec03 .sec03_price dl dd {
  width: 70%;
  font-size: 18px;
  padding: 8px 0;
  border-bottom: 1px solid #483620;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .sec03 .sec03_price dl dd {
    font-size: 14px;
  }
}
.sec03 .sec03_price .supple {
  display: block;
  font-size: 14px;
  margin-top: 24px;
}
.sec04 {
  position: relative;
  background-color: #483620;
  padding: 304px 0 100px;
  margin-top: -100px;
}
.sec04::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 204px;
  background-color: #FBF8E9;
}
@media screen and (max-width: 768px) {
  .sec04 {
    margin-top: -92px;
    padding: 156px 0 64px;
  }
  .sec04::before {
    content: "";
    height: 92px;
  }
}
.sec04 .section_title h2 {
  color: #619EE3;
}
.sec04 .section_title span {
  color: #F4EAD8;
}
.sec04 .sec04_wrap {
  display: flex;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .sec04 .sec04_wrap {
    flex-direction: column-reverse;
    margin-top: 48px;
  }
}
.sec04 .sec04_wrap .btnbox {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sec04 .sec04_wrap .btnbox {
    width: 100%;
    margin-top: 64px;
  }
}
.sec04 .sec04_wrap .btnbox .imgbox {
  max-width: 224px;
  max-height: 224px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .sec04 .sec04_wrap .btnbox .imgbox {
    max-width: 180px;
    max-height: 180px;
  }
}
.sec04 .sec04_wrap .btnbox .btn {
  margin: 48px auto 0;
}
@media screen and (max-width: 768px) {
  .sec04 .sec04_wrap .btnbox .btn {
    margin: 40px auto 0;
  }
}
.sec04 .sec04_wrap .infobox {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sec04 .sec04_wrap .infobox {
    width: 100%;
  }
}
.sec04 .sec04_wrap .infobox dl {
  max-width: 434px;
  width: 100%;
  display: flex;
  align-items: center;
}
.sec04 .sec04_wrap .infobox dl:nth-child(n+2) {
  margin-top: 16px;
}
.sec04 .sec04_wrap .infobox dl dt {
  width: 30%;
  text-align: center;
  font-size: 16px;
  padding: 8px 0;
  border-radius: 6px;
  background-color: #F4EAD8;
}
@media screen and (max-width: 768px) {
  .sec04 .sec04_wrap .infobox dl dt {
    font-size: 14px;
  }
}
.sec04 .sec04_wrap .infobox dl dd {
  width: 70%;
  color: #F4EAD8;
  font-size: 16px;
  margin-left: 16px;
}
.contact {
  padding-top: 264px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-top: 92px;
  }
}
.contact .inner {
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .contact .inner {
    max-width: 480px;
  }
}
.contact .contact_intro {
  font-size: 18px;
  text-align: center;
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .contact .contact_intro {
    font-size: 16px;
    margin-top: 48px;
  }
}
.contact .contact_table {
  width: 100%;
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .contact .contact_table {
    margin-top: 48px;
  }
}
@media screen and (max-width: 768px) {
  .contact .contact_table tr {
    display: block;
  }
  .contact .contact_table tr:nth-child(n+2) {
    margin-top: 12px;
  }
}
.contact .contact_item {
  width: 30%;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contact .contact_item {
    display: block;
    font-size: 16px;
    width: 100%;
  }
}
.contact .contact_body {
  width: 70%;
  padding: 12px 0;
}
@media screen and (max-width: 768px) {
  .contact .contact_body {
    display: block;
    width: 100%;
    padding: 8px 0;
  }
}
.contact .form_text {
  max-width: 300px;
  width: 100%;
  font-size: 18px;
  padding: 8px;
  border: 1px solid #483620;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .contact .form_text {
    max-width: inherit;
    font-size: 16px;
    width: 100%;
  }
}
.contact .contact_item_content {
  vertical-align: top;
  padding-top: 16px;
}
@media screen and (max-width: 768px) {
  .contact .contact_item_content {
    padding-top: inherit;
  }
}
.contact .form_textarea {
  width: 100%;
  height: 240px;
  padding: 8px;
  border: 1px solid #483620;
  border-radius: 6px;
}
.contact .contact_submit {
  max-width: 240px;
  position: relative;
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  background-color: #81B963;
  margin: 64px auto;
  transition: 0.3s;
}
.contact .contact_submit::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  display: block;
  width: 10px;
  height: 20px;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.contact .contact_submit:hover {
  opacity: 0.8;
}
.footer {
  background-color: #483620;
  text-align: center;
  padding: 12px 0;
}
.footer small {
  font-size: 12px;
  color: #F4EAD8;
}
/*# sourceMappingURL=style.css.map */