@charset "UTF-8";
/*
+++++++++++++++++++++++++++++++++++++++++
                  共通部分
++++++++++++++++++++++++++++++++++++++++++++++
*/
html {
  /*16px*62.5%=10px*/
  font-size: 62.5%;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Kosugi Maru", "游ゴシック", YuGothic, "メイリオ", Meiryo, Helvetica, Arial, sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  /*文字詰*/
  line-height: 1.6;
  color: #743600;
  letter-spacing: 0.05em;
  background-color: #fbfbef;
  margin: 0;
}

body.noscroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}
a:hover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

table {
  border-collapse: collapse;
}

p {
  font-size: 1.4rem;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.fadein-bottom {
  opacity: 0.1;
  transform: translateY(20px);
  transition: all 1s;
}
.fadein-bottom.active {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 769px) {
  body {
    font-size: 16px;
    /*pcサイズ時のフォントサイズ指定*/
  }

  .pc_br {
    display: block;
  }

  .sp_br {
    display: none;
  }
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.fadeInTrigger {
  opacity: 0;
}
/*
  +++++++++++++++++++++++++++++++++++++++++
				   sp
  +++++++++++++++++++++++++++++++++++++++++
  */
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    /*spサイズ時のフォントサイズ指定*/
  }

  .pc_br {
    display: none;
  }

  .sp_br {
    display: block;
  }

  .main_wrapper {
    margin: 40px 0;
  }
}
/*
  +++++++++++++++++++++++++++++++++++++++++
				   header
  +++++++++++++++++++++++++++++++++++++++++
  */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  z-index: 4;
  background-color: #fbfbef;
}

.header_bg {
  background-image: url(../img/header.png);
  background-repeat: repeat-x;
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
  background-size: contain;
}

.header_inr {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*ハンバーガーメニューの非表示*/
}
.header_inr .logo {
  width: 140px;
}
.header_inr .header_spnav {
  display: none;
}
.header_inr .header_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header_inr .header_nav ul li {
  display: block;
  width: 140px;
  text-align: center;
  font-size: 1.4rem;
  border-right: 1px dashed #743600;
}
.header_inr .header_nav ul li img {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  display: block;
}
.header_inr .header_nav ul li a {
  display: block;
  width: 100%;
  color: #743600;
}
.header_inr .header_nav ul li a:hover {
  color: #f98808;
  transition: 1s;
}
.header_inr .burger-btn {
  display: block;
  width: 41px;
  height: 41px;
  position: relative;
  z-index: 3;
  border: none;
}
.header_inr .bar {
  width: 30px;
  height: 3px;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #743600;
  border-radius: 3px;
}
.header_inr .bar_top {
  top: 10px;
}
.header_inr .bar_mid {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.header_inr .bar_bottom {
  bottom: 10px;
}
.header_inr .burger-btn {
  display: none;
}

/*レスポンシブ*/
@media screen and (max-width: 1000px) {
  header {
    height: 80px;
  }

  .header_bg {
    height: 20px;
    margin-bottom: 0px;
  }

  .header_nav {
    display: none;
  }

  /*ハンバーガーメニュー*/
  .header_inr .logo {
    width: 100px;
  }
  .header_inr .burger-btn {
    display: block;
  }
  .header_inr .burger-btn.close .bar_top {
    transform: translate(-50%, 10px) rotate(45deg);
    transition: transform 0.3s;
  }
  .header_inr .burger-btn.close .bar_mid {
    opacity: 0;
    transition: opacity 0.3s;
  }
  .header_inr .burger-btn.close .bar_bottom {
    transform: translate(-50%, -8px) rotate(-45deg);
    transition: transform 0.3s;
  }
  .header_inr .header_spnav {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: #fbfbef;
    margin-top: 0;
  }
  .header_inr .header_spnav ul {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
  }
  .header_inr .header_spnav ul li {
    margin-right: 0;
    border-right: none;
    border-top: 1px dashed #743600;
    width: 100%;
    padding: 12px;
    font-size: 1.4rem;
    text-align: left;
  }
  .header_inr .header_spnav ul li:last-child {
    border-bottom: 1px dashed #743600;
  }
  .header_inr .header_spnav ul li img {
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-bottom: 0;
    margin-right: 20px;
    vertical-align: middle;
  }
  .header_inr .header_spnav ul li a {
    display: block;
    width: 100%;
    color: #743600;
  }
}
/*
	+++++++++++++++++++++++++++++++++++++++++
					 secttl
	+++++++++++++++++++++++++++++++++++++++++
	*/
.sec_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec_ttl h2 {
  display: inline-block;
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  list-style: none;
  line-height: 2;
  max-width: 100%;
}
.sec_ttl .ttl_txt {
  font-size: 1.6rem;
}

/*レスポンシブ*/
@media screen and (max-width: 768px) {
  .sec_ttl {
    flex-direction: column;
    align-items: center;
  }
  .sec_ttl .ttl_txt {
    margin-top: 20px;
    font-size: 1.4rem;
  }
  .sec_ttl h2 {
    font-size: 1.8rem;
  }
}
/*
	+++++++++++++++++++++++++++++++++++++++++
					 table
	+++++++++++++++++++++++++++++++++++++++++
	*/
table {
  font-size: 1.4rem;
  width: 50%;
  margin: 30px auto;
}
table td {
  width: 65%;
  border-bottom: 1px dashed #743600;
  padding: 20px;
  text-align: left;
}
table th {
  width: 35%;
  text-align: center;
  font-weight: normal;
  border-bottom: 1px dashed #743600;
  padding: 20px;
}

.submit_btn {
  width: 300px;
  margin: 20px auto;
}

input {
  width: 300px;
  max-width: 100%;
  height: 70px;
  line-height: 70px;
  background-color: #743600;
  color: #fff;
  border-radius: 40px;
  font-size: 14px;
  appearance: none;
  border: none;
}
input:hover {
  background-color: #fdefdd;
  color: #743600;
  cursor: pointer;
}

/*レスポンシブ*/
@media screen and (max-width: 1000px) {
  table {
    font-size: 1.4rem;
    width: 80%;
    margin: 30px auto;
  }
  table td {
    width: 100%;
    display: block;
    border-bottom: 1px dashed #743600;
  }
  table th {
    width: 100%;
    display: block;
    text-align: left;
  }

  input {
    width: 100px;
    max-width: 100%;
    height: 40px;
    line-height: 40px;
  }
}
/*
	+++++++++++++++++++++++++++++++++++++++++
					 トップへ戻るボタン
	+++++++++++++++++++++++++++++++++++++++++
	*/
.page_top_innr {
  margin: 4rem;
}

#page_top {
  width: 70px;
  height: 70px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: url(../img/page_top.svg) no-repeat center;
  border-radius: 50%;
  z-index: 2;
}

#page_top a {
  position: relative;
  display: block;
  width: 100%;
  line-height: 70px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

#page_top a {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  text-decoration: none;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

/*レスポンシブ*/
@media screen and (max-width: 768px) {
  .page_top_innr {
    margin: 2rem;
  }

  #page_top {
    width: 60px;
  }

  #page_top a {
    width: 60px;
  }

  #page_top img {
    width: 60px;
  }
}
/*
	+++++++++++++++++++++++++++++++++++++++++
					 footer
	+++++++++++++++++++++++++++++++++++++++++
	*/
footer {
  background-color: #fdefdd;
  position: relative;
  padding-top: 70px;
}
footer a {
  color: #743600;
}
footer::before {
  content: "";
  background-image: url(../img/nami.png);
  background-size: contain;
  display: block;
  width: 100%;
  height: 70px;
  background-repeat: repeat-x;
  position: absolute;
  top: -60px;
}
footer .footer_nav ul {
  display: flex;
  justify-content: center;
}
footer .footer_nav ul li {
  margin-right: 60px;
}
footer .footer_nav ul li:last-child {
  margin-right: 0;
}
footer .footer_nav ul li a {
  color: #743600;
}
footer .address {
  margin-top: 50px;
  text-align: center;
  font-size: 1.3rem;
}
footer .address img {
  width: 320px;
  margin: 0 auto;
  padding-bottom: 20px;
}
footer .small {
  font-size: 1rem;
  text-align: center;
  padding: 50px 0;
  margin: 0;
}
footer .box {
  text-align: center;
  margin: 20px auto 0;
}
footer .box li {
  line-height: 2.5;
}
footer .box a {
  display: block;
  text-decoration: underline;
  font-size: 13px;
}

/*レスポンシブ*/
@media screen and (max-width: 1000px) {
  footer {
    padding-top: 40px;
  }
  footer::before {
    height: 40px;
    top: -30px;
  }
  footer .footer_nav ul {
    display: none;
  }
  footer .address {
    margin-top: 20px;
  }
  footer .address img {
    width: 280px;
  }
  footer .box a {
    font-size: 10px;
  }
}
@media screen and (max-width: 450px) {
  footer {
    padding-top: 40px;
  }
  footer::before {
    height: 40px;
    top: -20px;
  }
}
/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fbfbef;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 260px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*
+++++++++++++++++++++++++++++++++++++++++++++++++
                     mv Style
+++++++++++++++++++++++++++++++++++++++++++++++++
*/
.mv {
  width: 100%;
  position: relative;
  margin-top: 180px;
}
.swiper-container {
  width: 100%;
  height: 60vh;
}
.slide-item1 {
  background: url(../img/main01.png) no-repeat center/cover;
}
.slide-item2 {
  background: url(../img/main02.png) no-repeat center/cover;
}
.slide-item3 {
  background: url(../img/main03.png) no-repeat center/cover;
}
.bg_scircle {
  width: 400px;
  height: 200px;
  max-width: 400px;
  border-radius: 200px 200px 0 0;
  background-color: #fff;
  margin: 0 auto;
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  z-index: 1;
}
.bg_scircle h2 {
  width: 200px;
  margin: 0 auto;
  padding-top: 20px;
}
.bg_scircle .point {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
.bg_scircle .maru1 {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #eb70ad;
}
.bg_scircle .maru2 {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #8ed3f5;
}
.bg_scircle .maru3 {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f98808;
}
/*レスポンシブ*/
@media screen and (max-width: 1000px) {
  .mv {
    margin-top: 60px;
  }
}
/*sp*/
@media screen and (max-width: 768px) {
  .swiper-container {
    height: 40vh;
  }
  .slide-item1 {
    background: url(../img/main_sp01.png) no-repeat center/cover;
  }
  .slide-item2 {
    background: url(../img/main_sp02.png) no-repeat center/cover;
  }
  .slide-item3 {
    background: url(../img/main_sp03.png) no-repeat center/cover;
  }

  .bg_scircle {
    width: 300px;
    height: 150px;
    max-width: 100%;
    border-radius: 150px 150px 0 0;
    bottom: -90px;
  }
  .bg_scircle h2 {
    width: 120px;
    padding-top: 12px;
  }
}

/*
  +++++++++++++++++++++++++++++++++++++++++
                   sec1
  +++++++++++++++++++++++++++++++++++++++++
*/
#about {
  padding-top: 180px;
  margin-top: -180px;
}
.sec1 {
  text-align: center;
  background-color: #fff;
  padding-bottom: 60px;
}
.sec1 .wrapper {
  position: relative;
  max-width: 1200px;
  padding-top: 20px;
  margin: 0 auto;
  z-index: 1;
}
.sec1 h2 {
  width: 260px;
}
.sec1 .sec1_big {
  display: flex;
  font-size: 2.4rem;
  justify-content: center;
  margin: 40px auto;
}
.sec1 .sec1_big h3 {
  margin-right: 20px;
}
.sec1 .sec1_big h3:last-child {
  margin-right: 0;
}
.sec1 .sec1_big .pink {
  background: linear-gradient(transparent 60%, #fbe2ef 0%);
}
.sec1 .sec1_big .blue {
  background: linear-gradient(transparent 60%, #e8f6fd 0%);
}
.sec1 .sec1_big .orange {
  background: linear-gradient(transparent 60%, #fee7ce 0%);
}
.sec1 .sec_txt {
  padding: 30px 0;
  border-top: 1px dashed #743600;
  border-bottom: 1px dashed #743600;
  width: 660px;
  max-width: 100%;
  margin: 0 auto;
}
.sec1 .sec_txt p {
  padding-bottom: 30px;
}
.sec1 .sec_txt p:last-child {
  padding-bottom: 0;
}

/*レスポンシブ*/
@media screen and (max-width: 768px) {
  #about {
    padding-top: 120px;
    margin-top: -120px;
  }
  .sec1 {
    padding: 0 20px 40px;
  }
  .sec1 h2 {
    width: 260px;
  }
  .sec1 .wrapper {
    padding-top: 10px;
  }
  .sec1 .sec1_big {
    flex-direction: column;
    font-size: 1.6rem;
    text-align: center;
    margin: 20px auto 40px;
  }
  .sec1 .sec1_big h3 {
    margin: 0;
  }
  .sec1 .sec_txt p {
    padding-bottom: 20px;
  }
  .sec1 .sec_txt p:last-child {
    padding-bottom: 0;
  }
}
/*
	+++++++++++++++++++++++++++++++++++++++++
					 sec2
	+++++++++++++++++++++++++++++++++++++++++
  */
#day {
  padding-top: 180px;
  margin-top: -180px;
}

.sec2 {
  padding: 40px 30px;
}
.sec2 .sec_ttl h2 {
  background: url(../img/day_ttl.svg) no-repeat center/cover;
  width: 340px;
  text-align: center;
  margin-right: 50px;
}
.sec2 .sec2_img {
  margin: 40px auto;
}

/*レスポンシブ*/
@media screen and (max-width: 768px) {
  #day {
    padding-top: 120px;
    margin-top: -120px;
  }
  .sec2 {
    padding: 40px 20px;
  }
  .sec2 .sec_ttl h2 {
    margin-right: 0;
  }
  .sec2 .sec_ttl .ttl_txt {
    text-align: center;
  }
  .sec2 .sec2_img {
    margin: 20px auto;
  }
}
/*
	+++++++++++++++++++++++++++++++++++++++++
					 sec3
	+++++++++++++++++++++++++++++++++++++++++
  */
#program {
  padding-top: 180px;
  margin-top: -180px;
}
.sec3 {
  padding: 40px 0 80px;
  background-color: #fdf7eb;
}
.sec3 .sec_ttl h2 {
  background: url(../img/p_ttl.svg) no-repeat center/cover;
  width: 340px;
  text-align: center;
  margin-right: 50px;
}
.sec3 .flex_box {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  /*番号*/
}
.sec3 .flex_box .item {
  width: 320px;
  border-radius: 50px;
  background-color: #fff;
  border: 1px dashed #743600;
}
.sec3 .flex_box .item img {
  border-radius: 50px 50px 0 0;
}
.sec3 .flex_box .item .item_txt {
  display: flex;
  justify-content: space-between;
  padding: 30px;
}
.sec3 .flex_box .item .item_txt .item_txt_box {
  width: 70%;
}
.sec3 .flex_box .item .item_txt span {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 2.4rem;
}
.sec3 .flex_box .item .item_txt .tai {
  background: url(../img/tai.svg) no-repeat center/cover;
}
.sec3 .flex_box .item .item_txt .ma {
  background: url(../img/ma.svg) no-repeat center/cover;
}
.sec3 .flex_box .item .item_txt .kan {
  background: url(../img/kan.svg) no-repeat center/cover;
}
.sec3 .flex_box .item_01 {
  position: relative;
  margin-right: 20px;
}
.sec3 .flex_box .item_n01 {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  background-color: #eb70ad;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -10%;
}
.sec3 .flex_box .item_02 {
  position: relative;
  margin-right: 20px;
}
.sec3 .flex_box .item_n02 {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  background-color: #57b6e6;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -10%;
}
.sec3 .flex_box .item_03 {
  position: relative;
}
.sec3 .flex_box .item_03 .item_txt {
  padding: 41px 30px;
}
.sec3 .flex_box .item_n03 {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  background-color: #f98808;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -10%;
}

/*レスポンシブ*/
@media screen and (max-width: 1000px) {
  #program {
    padding-top: 120px;
    margin-top: -120px;
  }
  .sec3 {
    padding: 40px 20px;
    background-color: #fdf7eb;
  }
  .sec3 .sec_ttl h2 {
    max-width: 100%;
    margin-right: 0;
  }
  .sec3 .flex_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
    /*番号*/
  }
  .sec3 .flex_box .item {
    width: 100%;
    margin: 0 auto;
  }
  .sec3 .flex_box .item img {
    width: 100%;
    border-radius: 50px 50px 0 0;
  }
  .sec3 .flex_box .item .item_txt span {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.6rem;
  }
  .sec3 .flex_box .item_01 {
    margin-right: 0;
    margin-bottom: 60px;
  }
  .sec3 .flex_box .item_n01 {
    top: -6%;
  }
  .sec3 .flex_box .item_02 {
    margin-right: 0;
    margin-bottom: 60px;
  }
  .sec3 .flex_box .item_n02 {
    top: -6%;
  }
  .sec3 .flex_box .item_03 .item_txt {
    padding: 30px;
  }
  .sec3 .flex_box .item_n03 {
    top: -6%;
  }
}
/*
	+++++++++++++++++++++++++++++++++++++++++
					 sec4
	+++++++++++++++++++++++++++++++++++++++++
  */
#guide {
  padding-top: 180px;
  margin-top: -180px;
}
.sec4 {
  padding: 70px 0;
  text-align: center;
  position: relative;
}
.sec4 .sec_ttl {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sec4 .sec_ttl h2 {
  background: url(../img/guide_ttl.svg) no-repeat center/cover;
  width: 340px;
  text-align: center;
  margin-right: 0;
  margin-bottom: 40px;
}
.sec4 .sec_ttl .ttl_txt {
  font-size: 1.8rem;
}
.sec4 .sec4_big {
  width: 480px;
  max-width: 100%;
  height: 60px;
  line-height: 60px;
  color: #fff;
  text-align: center;
  margin: 0 auto 40px;
  background-color: #90ca7b;
  border-radius: 30px;
}
.sec4 .sec4_big p {
  font-size: 1.8rem;
}
.sec4 .se4_img_left {
  width: 160px;
  position: absolute;
  top: 50px;
  right: 0;
}
.sec4 .se4_img_right {
  width: 160px;
  position: absolute;
  top: 320px;
  left: 0;
}

/*レスポンシブ*/
@media screen and (max-width: 1000px) {
  #guide {
    padding-top: 120px;
    margin-top: -120px;
  }
  .sec4 {
    padding: 40px 20px;
    text-align: center;
    position: relative;
  }
  .sec4 .sec_ttl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .sec4 .sec_ttl h2 {
    background: url(../img/guide_ttl.svg) no-repeat center/cover;
    width: 340px;
    text-align: center;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .sec4 .sec_ttl .ttl_txt {
    font-size: 1.8rem;
  }
  .sec4 table th {
    border-bottom: none;
    padding: 10px 20px 0;
    font-weight: bold;
  }
  .sec4 .sec4_big p {
    font-size: 1.6rem;
  }
  .sec4 .se4_img_left {
    width: 80px;
    position: absolute;
    top: 100px;
    right: 20px;
    z-index: -1;
  }
  .sec4 .se4_img_right {
    width: 80px;
    position: absolute;
    top: 320px;
    left: 20px;
    z-index: -1;
  }
  .sec4 .map iframe {
    max-width: 100%;
  }
}
/*
	+++++++++++++++++++++++++++++++++++++++++
					 sec5
	+++++++++++++++++++++++++++++++++++++++++
  */
#contact {
  padding-top: 180px;
  margin-top: -180px;
}
.sec5 {
  padding: 70px 0;
  text-align: center;
  background-color: #fff;
}
.sec5 .sec_ttl h2 {
  background: url(../img/contact_ttl.svg) no-repeat center/cover;
  width: 340px;
  text-align: center;
  margin-right: 0;
  margin-bottom: 50px;
}
.sec5 .contact_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.sec5 .contact_box a {
  display: block;
}
.sec5 .contact_box a:hover {
  opacity: 0.5;
}
.sec5 .formtable {
  width: 100%;
  max-width: 800px;
  font-size: 16px;
  border-collapse: collapse;
}
.sec5 .formtable th {
  width: 30%;
  padding: 20px;
  text-align: left;
  vertical-align: middle;
  font-size: 1.4rem;
  font-weight: normal;
  border-top: 1px dashed #743600;
}
.sec5 .formtable td {
  width: 70%;
  padding: 20px;
  border-top: 1px dashed #743600;
}
.sec5 .formtable .boxm,
.sec5 .formtable textarea {
  width: 100%;
  padding: 10px 12.5px;
  transition: all 0.5s;
  background-color: #fdfdf7;
  border: none;
  border-radius: 10px;
  color: #743600;
}
.sec5 .formtable .boxm:focus,
.sec5 .formtable textarea:focus {
  border: 1px solid #743600;
  outline: 0;
  background: #fdfdf7;
}
.sec5 .submit_btn {
  width: 300px;
  margin: 20px auto;
}
.sec5 .submit_btn input {
  width: 300px;
  height: 70px;
  line-height: 70px;
  background-color: #743600;
  color: #fff;
  border-radius: 40px;
  font-size: 14px;
  appearance: none;
  border: none;
}
.sec5 .submit_btn input:hover {
  background-color: #fdefdd;
  color: #743600;
  cursor: pointer;
}

@media screen and (max-width: 1000px) {
  #contact {
    padding-top: 120px;
    margin-top: -120px;
  }
  .sec5 {
    padding: 40px 20px;
  }
  .sec5 .sec_ttl h2 {
    margin-bottom: 40px;
  }
  .sec5 .contact_box {
    max-width: 100%;
  }
  .sec5 .formtable th {
    width: 100%;
    display: block;
    border-top: none;
  }
  .sec5 .formtable td {
    width: 100%;
    display: block;
    border-top: none;
  }
  .sec5 .formtable th {
    width: auto;
    display: block;
    padding: 10px 0 0;
  }
  .sec5 .formtable td {
    width: auto;
    display: block;
    padding: 10px 0 20px;
  }
  .sec5 .submit_btn {
    width: 100%;
  }
  .sec5 .submit_btn input {
    width: 100%;
    height: 60px;
    line-height: 60px;
  }
}

/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fbfbef;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 260px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
