@charset "utf-8";

html {
  font-size: 62.5%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ",
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
  font-kerning: normal;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}


html {
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  background-color: rgba(255, 255, 255, 1);
  font-size: 1.35rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.8);
  text-align: left;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt" 1;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-kerning: normal;
  font-kerning: normal;
}

h1,h2,h3,h4,h5,h6,strong {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

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

textarea::placeholder {
  color: #929191;
}

.info_message {
  width: 100%;
  background-color: #e4e4e4;
  border-radius: 20px;
  font-size: 1.7rem;
  line-height: 2.5rem;
  padding: 30px;
  box-sizing: border-box;
}

.info_message ul {
  list-style: unset;
  padding-left: 1.7rem;
}

/* アコーディオンCSS */
.accordion_wrap {
  width: 100%;
  background-color: #f2f2f2;
}

.accordion_wrap:not([open]) {
  margin-bottom: 7px;
}

.accordion_wrap summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  border-radius: 5px;
  background-color: #60B53A;
  color: #fff;
  font-size: 2.0rem;
  font-weight: 600;
  cursor: pointer;
}

.accordion_wrap summary::-webkit-details-marker {
  display: none;
}

.accordion_wrap summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  content: '';
  transition: transform .3s;
}

.accordion_wrap[open] summary::after {
  transform: rotate(225deg);
}

.accordion_wrap .accordion_desc {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1em 2em;
  font-size: 1.8rem;
  color: #333333;
  transition: transform .5s, opacity .5s;
}

.accordion_wrap[open] .accordion_desc {
  transform: none;
  opacity: 1;
}


@media screen and (min-width: 1001px){
  body {
    min-width: 1200px;
  }
}

@media screen and (max-width: 1000px){
  html {
    font-size: 50%;
  }

  #content-header {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
