@charset "utf-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

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

li {
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  background-color: #ece3c9;
  position: relative;
  overscroll-behavior-y: contain;
}

html {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

table {
  border-collapse: collapse;
}

main .page-title {
  margin: 100px 0 60px;
}

main .page-title p {
  color: #302d53;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 10px;
  margin-left: 0.3em;
}

main .page-title h3 {
  font-size: 40px;
  letter-spacing: 5px;
  color: #ec6922;
  padding-bottom: 10px;
}

/*****************************************/
/* page-title sp-size */
@media screen and (max-width: 1025px) {
  main .page-title p {
    font-size: 18px;
  }

  main .page-title h3 {
    font-size: 28px;
    letter-spacing: 2px;
  }
}

/*****************************************/

/* header */
header {
  width: 100%;
  padding: 15px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #302d53;
  position: fixed;
  top: 0;
  z-index: 10;
}

header h1 {
  width: 110px;
}

nav .global-navi {
  display: flex;
  align-items: center;
}

nav .global-navi li {
  margin: 0 40px 0 0;
  transition: 200ms;
  font-weight: 600;
  letter-spacing: 3px;
}

nav .global-navi li:hover {
  transform: translateY(-3px);
}

nav .global-navi li a {
  color: #ece3c9;
  transition: 200ms;
}

nav .global-navi li a:hover {
  color: #ec6922;
}

nav .global-navi img {
  width: 40px;
}

nav .global-navi .insta {
  background-size: cover;
  background-image: url(../image/insta_o.png);
  background-repeat: no-repeat;
  margin: 0 20px 0 0;
  transition: 200ms;
}

nav .global-navi .facebook {
  background-size: cover;
  background-image: url(../image/facebook_o.png);
  background-repeat: no-repeat;
  margin: 0 0 0 0;
  transition: 200ms;
}

nav .global-navi img:hover {
  opacity: 0;
}

header #accordion-menu {
  display: none;
}
/*****************************************/
/* header sp-size */
@media screen and (max-width: 1025px) {
  header {
    padding: 15px 10px;
    width: 100vw;
  }

  header h1 {
    width: 90px;
  }

  header #accordion-menu {
    display: block;
  }

  header .global-navi {
    display: none;
  }

  header .menu-btn {
    display: block;
    position: relative;
    width: 65px;
    height: 65px;
    cursor: pointer;
    z-index: 100;
  }

  header .menu-btn span {
    position: absolute;
    width: 40%;
    height: 3px;
    left: calc(50% - 40% / 2);
    background: #ece3c9;
    transition: 0.4s;
  }

  header .top-bar {
    top: calc(35% - 2px / 2);
  }
  .center-bar {
    top: calc(50% - 2px / 2);
  }
  .under-bar {
    top: calc(65% - 2px / 2);
  }

  #open:checked ~ .menu-btn > .top-bar {
    top: calc(50% - 2px / 2);
    transform: rotate(45deg);
    background: #ec6922;
  }

  #open:checked ~ .menu-btn > .center-bar {
    opacity: 0;
  }

  #open:checked ~ .menu-btn > .under-bar {
    top: calc(50% - 2px / 2);
    transform: rotate(-45deg);
    background: #ec6922;
  }

  #open {
    display: none;
  }

  .inner-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    box-sizing: border-box;
    background: #383838;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    z-index: 99;
    overflow-y: scroll;
    text-align: left;
    transform: translate(0, -100%);
  }

  .inner-menu h2 {
    width: 90px;
    margin: 15px;
  }

  .inner-menu .sp-size-navi {
    width: 40%;
    display: flex;
    flex-direction: column;
    margin: 120px auto 0;
  }

  .inner-menu .sp-size-navi li {
    font-size: 18px;
    margin: 0 0 30px;
  }

  .inner-menu .sns-container {
    width: 25%;
    display: flex;
    justify-content: space-between;
    margin: 20px auto 0;
  }

  .inner-menu .sns-container p {
    width: 35px;
  }

  .inner-menu a {
    color: inherit;
  }

  #open:checked ~ .inner-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .sp-size-navi li a {
    position: relative;
    color: #ece3c9;
    text-decoration: none;
    transition: 0.4s;
    letter-spacing: 6px;
  }

  .inner-menu a img {
    transition: 0.5s;
  }

  nav .sp-size-navi li {
    margin: 0 40px 0 0;
    transition: 200ms;
    font-weight: 600;
    letter-spacing: 3px;
    text-align: center;
  }

  nav .sp-size-navi li:hover {
    transform: translateY(-3px);
  }

  nav .sp-size-navi li a {
    color: #ece3c9;
    transition: 200ms;
  }

  nav .sp-size-navi li a:hover {
    color: #ec6922;
  }

  header .sns-container p:hover {
    transform: translateY(-3px);
  }

  header .sns-container .insta {
    width: 40px;
    background-size: cover;
    background-image: url(../image/insta_o.png);
    background-repeat: no-repeat;
    transition: 200ms;
  }

  header .sns-container .facebook {
    width: 40px;
    background-size: cover;
    background-image: url(../image/facebook_o.png);
    background-repeat: no-repeat;
    transition: 200ms;
  }

  header .inner-menu .sns-container p a img:hover {
    opacity: 0;
  }
}
/*****************************************************/

main {
  margin-bottom: 50px;
}

/* top */
main #top-main {
  width: 90%;
  margin: 0 auto 100px;
  position: relative;
}

main #top-main h2 {
  width: 100%;
  margin: 100px auto 0;
}

main #top-main h2 img {
  height: 700px;
  object-fit: cover;
  margin: 0 auto;
}

main #top-main .top-text {
  color: #fff;
  font-size: 60px;
  letter-spacing: 9px;
  position: absolute;
  top: 10px;
  left: 50px;
  font-family: "Darumadrop One", sans-serif;
}

main #top-main .top-text p:nth-child(2) {
  margin-top: -15px;
}

main #top-main .top-item01 {
  width: 20%;
  position: absolute;
  top: 0;
  left: 55%;

  animation-name: top-item;
  animation-delay: 1.2s;
  animation-duration: 100ms;
  animation-iteration-count: 5;
  animation-direction: alternate;
  animation-timing-function: ease;
}

main #top-main .top-item02 {
  width: 20%;
  position: absolute;
  top: 35%;
  left: 22%;
  transform-origin: 373px, 0;

  animation-name: top-item;
  animation-delay:1.5s;
  animation-duration: 100ms;
  animation-iteration-count: 5;
  animation-direction: alternate;
  animation-timing-function: ease;
}

main #top-main .top-item03 {
  width: 20%;
  position: absolute;
  top: 38%;
  left: 53%;

  animation-name: top-item;
  animation-delay: 1.8s;
  animation-duration: 100ms;
  animation-iteration-count: 5;
  animation-direction: alternate;
  animation-timing-function: ease;
}

@keyframes top-item {
  from {
    transform: rotate(-3deg);
  }
  to {
    transform: rotate(3deg);
  }
}

/**************************************/
/* top-main sp-size */
@media screen and (max-width: 1025px) {
  main #top-main {
    width: 100%;
    margin: 0 auto 50px;
  }

  main #top-main h2 {
    margin: 80px auto 0;
    margin-left: 0;
  }

  main #top-main h2 img {
    width: 100%;
    height: 500px;
    padding: 0;
  }

  main #top-main .top-text {
    font-size: 29px;
    top: 15px;
    left: 25px;
  }

  main #top-main .top-text p:nth-child(2) {
    margin-top: 0;
  }

  main #top-main .top-item01 {
    width: 150px;
    top: 13%;
    left: 58%;
  }

  main #top-main .top-item02 {
    width: 150px;
    top: 45%;
    left: 7%;
    transform-origin: 0, 0;
  }

  main #top-main .top-item03 {
    width: 150px;
    top: 45%;
    left: 58%;
  }
}
/**************************************/

main .top-container {
  width: 1200px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
}

main .top-container #program-ad {
  width: 530px;
}
main .top-container #program-ad .slide-items01 li img {
  height: 500px;
  object-fit: cover;
}

main .top-container #program-ad .slide-items01 li p {
  font-size: 18px;
  margin: 20px 0;
  font-weight: 700;
}

.slick-dots {
  bottom: -10px;
}

.slick-dots li {
  margin: 0 4px;
  width: 30px;
  height: 5px;
}

.slick-dots li button:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #fff8e5;
  opacity: 1;
  border-radius: 50px;
}
.slick-dots li.slick-active button:before {
  background: #ec6922;
  border-radius: 50px;
}

main .top-container .right-content {
  width: 50%;
}

main #information {
  width: 100%;
  margin: 0 auto 50px;
}

main #information h3 {
  font-size: 40px;
  text-align: center;
  letter-spacing: 5px;
  margin: 0 0 10px;
  color: #ec6922;
}

main #information dl {
  width: 100%;
  margin: 0 0 20px;
}

main #information dl div {
  border-bottom: 1px solid #302d53;
}

main #information dl div:nth-child(4) {
  border-bottom: none;
}

main #information dl p {
  height: 60px;
  display: flex;
}

main #information dl a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 500ms;
}

main #information dl a:hover {
  opacity: 0.7;
  transform: scale(1.02);
}

main #information dl div dt {
  text-align: center;
  color: #302d53;
  background-color: #fff8e5;
  font-size: 14px;
  border-radius: 25px;
  padding: 5px 15px;
  font-weight: 600;
}

main #information dl div dd {
  width: 100%;
  font-size: 15px;
  color: #302d53;
  margin: 0 0 0 2em;
}

main #information span {
  display: flex;
  justify-content: right;
  margin: 10px 0 0;
  font-size: 15px;
}

main #information span a {
  border: 3px solid #302d53;
  color: #302d53;
  padding: 5px 25px;
  border-radius: 20px;
  transition: 0.3s;
  letter-spacing: 2px;
  font-weight: 700;
}

main #information span a:hover {
  color: #ece3c9;
  background-color: #ec6922;
  padding: 5px 20px 5px 30px;
}

/* information-menu */
main #information-menu {
  width: 50%;
  margin: 180px auto;
  padding: 30px 0 0;
}

main #information-menu dl {
  width: 100%;
  margin: 0;
}

main #information-menu dl div {
  border-bottom: 1px solid #302d53;
}

main #information-menu dl div:nth-child(4) {
  border-bottom: none;
}

main #information-menu dl p {
  height: 150px;
  display: flex;
}

main #information-menu dl a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 500ms;
}

main #information-menu dl a:hover {
  opacity: 0.7;
  transform: scale(1.02);
}

main #information-menu dl div dt {
  text-align: center;
  color: #302d53;
  background-color: #fff8e5;
  font-size: 14px;
  border-radius: 25px;
  padding: 5px 15px;
  font-weight: 600;
}

main #information-menu dl div dd {
  width: 100%;
  font-size: 18px;
  color: #302d53;
  margin: 0 0 0 2em;
}

/*****************************************/
/* #information-menu sp-size*/
@media screen and (max-width: 1025px) {
  main #information-menu {
    width: 90%;
    margin: 100px auto;
  }

  main #information-menu dl {
    text-align: left;
  }

  main #information-menu dl div {
    text-align: left;
  }

  main #information-menu dl p {
    height: 100px;
  }

  main #information-menu dl div dd {
    font-size: 15px;
    margin: 0 0 0 1em;
  }
}
/*****************************************/

/* request */
main .top-container .right-content #request {
  width: 100%;
  background-color: #fff8e5;
  border-radius: 10px;
  padding: 25px;
  margin: 0 auto;
}

main .top-container .right-content #request h3 {
  text-align: center;
  color: #302d53;
  margin-bottom: 20px;
  font-size: 24px;
}

main .top-container .right-content #request .request-address {
  width: 85%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

main .top-container .right-content #request .address-item {
  width: 55%;
  margin: 0 auto;
  display: flex;
}

main .top-container .right-content #request .address-item div {
  display: flex;
  align-items: center;
}

main .top-container .right-content #request .address-item div p {
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #ec6922;
  border-radius: 50%;
  padding: 8px 9px;
}

main .top-container .right-content #request .address-item div p img {
  width: 25px;
}

main .top-container .right-content #request .address-item div span {
  text-align: right;
  color: #ec6922;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-left: 15px;
}

main .top-container .right-content #request .address-item div span a {
  color: #ec6922;
}

/**************************************/
/* top-container sp-size  */
@media screen and (max-width: 1025px) {
  main .top-container {
    width: 100%;
    flex-direction: column-reverse;
  }

  main .top-container .right-content {
    width: 90%;
    margin: 0 auto 50px;
  }

  main .top-container .right-content #request h3 {
    font-size: 18px;
  }
  main .top-container .right-content #request .request-address {
    flex-direction: column;
    margin: 0 auto;
  }

  main .top-container .right-content #request .address-item {
    width: 100%;
    margin: 0 auto 10px;
  }

  main .top-container .right-content #request .address-item span {
    width: 70%;
  }

  main .top-container #program-ad {
    width: 100%;
    margin: 0 auto;
  }

  main .top-container #program-ad .slide-items01 li {
    width: 10%;
    margin: 0 auto;
  }

  main .top-container #program-ad .slide-items01 li img {
    height: 420px;
    object-fit: cover;
    margin: 0 auto;
    padding: 0;
  }

  .slick-dots {
    width: 100%;
    top: 480px;
    left: 4%;
    margin: 0 auto;
  }

  .slick-dots li {
    margin: 0 auto;
    height: 5px;
    margin-left: 10px;
  }

  main .top-container #program-ad .slide-items01 li p {
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    margin-top: 20px;
  }
}
/**************************************/

/* questionnaire */
main #questionnaire {
  width: 50%;
  margin: 180px auto;
  padding: 30px 0 0;
}

main #questionnaire .questionnaire-main-container .summer-logo {
  width: 400px;
  margin: 0 auto 50px;
}

main #questionnaire .questionnaire-main-container .explanation-text {
  font-size: 18px;
  text-align: center;
  margin: 0 0 100px;
  color: #302d53;
  font-weight: bold;
  letter-spacing: 1px;
}

main #questionnaire .questionnaire-main-container .present {
  width: 520px;
  background-color: #ec6922;
  margin: 0 auto 70px;
  padding: 30px;
  position: relative;
  color: #fff;
}

main #questionnaire .questionnaire-main-container .present-image {
  width: 180px;
  position: absolute;
  bottom: -40px;
  right: 30px;
}

main #questionnaire .questionnaire-main-container .present-image img {
  transform: rotate(8deg);
  border: #fff solid 5px;
}

/* form */
main #questionnaire .questionnaire-main-container dl {
  width: 80%;
  margin: 0 auto;
}

main #questionnaire .questionnaire-main-container .form-flex-container {
  margin: 0 0 50px;
  color: #302d53;
}

main #questionnaire .questionnaire-main-container .form-flex-container dt span {
  color: #fff;
  font-size: 10px;
  background-color: #302d53;
  margin: 0 0 0 15px;
  padding: 3px 4px 4px;
  border-radius: 10px;
}

main #questionnaire .questionnaire-main-container .form-flex-container dt {
  margin: 0 0 15px 0.5em;
  font-weight: bold;
}

main
  #questionnaire
  .questionnaire-main-container
  .form-flex-container
  .gender-menu
  label {
  margin: 0 2em 0 0;
}

main
  #questionnaire
  .questionnaire-main-container
  .form-flex-container
  .age-menu
  label {
  margin: 0 2em 0 0;
}

main #questionnaire .questionnaire-main-container input[type="text"] {
  width: 100%;
  border: none;
  border-radius: 15px;
  padding: 10px 10px;
  background-color: #fff8e5;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

main #questionnaire .questionnaire-main-container input[type="tel"] {
  width: 100%;
  border: none;
  border-radius: 15px;
  padding: 10px 10px;
  background-color: #fff8e5;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

main #questionnaire .questionnaire-main-container input[type="email"] {
  width: 100%;
  border: none;
  border-radius: 15px;
  padding: 10px 10px;
  background-color: #fff8e5;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

main #questionnaire .questionnaire-main-container textarea {
  width: 100%;
  height: 10em;
  border: none;
  border-radius: 15px;
  padding: 10px 10px;
  background-color: #fff8e5;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

main #questionnaire .questionnaire-main-container select {
  width: 400px;
  height: 3em;
  padding: 10px;
  border-radius: 15px;
  border: none;
  color: #000;
  background-color: #fff8e5;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

main #questionnaire .questionnaire-main-container form .thankyou-text {
  color: #302d53;
  font-size: 13px;
  text-align: center;
  margin: 0 0 40px;
}

main #questionnaire .questionnaire-main-container p.submit {
  text-align: center;
  margin: 0 auto;
}

main
  #questionnaire
  .questionnaire-main-container
  p.submit
  button[type="submit"] {
  font-size: 15px;
  padding: 15px 50px;
  background: #302d53;
  color: #fff;
  border: none;
  font-weight: bold;
  border-radius: 25px;
  letter-spacing: 3px;
  cursor: pointer;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  transition: 0.2s;
}

main
  #questionnaire
  .questionnaire-main-container
  p.submit
  button[type="submit"]:hover {
  background: #ec6922;
  color: #302d53;
}

/*****************************************/
/* questionnaire sp-size */
@media screen and (max-width: 1025px) {
  main #questionnaire {
    width: 90%;
    margin: 100px auto;
  }

  main #questionnaire .questionnaire-main-container {
    width: 100%;
  }

  main #questionnaire .questionnaire-main-container .summer-logo {
    width: 90%;
  }

  main #questionnaire .questionnaire-main-container .explanation-text {
    margin-bottom: 50px;
  }

  main #questionnaire .questionnaire-main-container .explanation-text p {
    font-size: 15px;
    letter-spacing: 0;
  }

  main #questionnaire .questionnaire-main-container .present {
    width: 90%;
  }

  main #questionnaire .questionnaire-main-container .present p {
    font-size: 15px;
    text-align: center;
  }

  main #questionnaire .questionnaire-main-container .present-image {
    display: none;
  }

  main #questionnaire .questionnaire-main-container dl {
    width: 95%;
  }

  main
    #questionnaire
    .questionnaire-main-container
    .form-flex-container
    .age-menu
    label {
    margin: 0 0.5em 0 0;
  }

  main #questionnaire .questionnaire-main-container select {
    width: 100%;
  }

  main #questionnaire .questionnaire-main-container .thankyou-text p {
    font-size: 13px;
  }
}

/*****************************************/

/* sumomo */
main #sumomo {
  width: 50%;
  margin: 180px auto;
  padding: 30px 0 0;
}

main #sumomo .news-image {
  width: 50%;
  margin: 0 auto;
}

main #sumomo .news-text {
  width: 70%;
  margin: 50px auto;
  color: #302d53;
}

/**********************************************/
/* sumomo sp-size */
@media screen and (max-width: 1025px) {
  main #sumomo {
    width: 90%;
    margin: 100px auto;
  }

  main #sumomo .news-image {
    width: 100%;
  }

  main #sumomo .news-text {
    width: 100%;
  }

  main #sumomo .news-text p {
    font-size: 15px;
  }
}

/************************************************/

/* apology */
main #apology {
  width: 50%;
  margin: 180px auto;
  padding: 30px 0 0;
}

main #apology .apology-image {
  width: 50%;
  margin: 0 auto;
}

main #apology .apology-text {
  width: 70%;
  margin: 50px auto;
  color: #302d53;
}

/**********************************************/
/* apology sp-size */
@media screen and (max-width: 1025px) {
  main #apology {
    width: 90%;
    margin: 100px auto;
  }

  main #apology .apology-image {
    width: 100%;
  }

  main #apology .apology-text {
    width: 100%;
  }

  main #apology .apology-text p {
    font-size: 15px;
  }
}

/************************************************/

/* event */
main #event {
  width: 50%;
  margin: 180px auto;
  padding: 30px 0 0;
}

main #event .news-image {
  width: 50%;
  margin: 0 auto;
}

main #event .news-text {
  width: 70%;
  margin: 50px auto;
  color: #302d53;
}

main #event .news-text .date {
  margin: 30px 0;
}

main #event .news-text .event-map {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

main #event .news-text .caution {
  margin-top: 30px;
}

/**********************************************/
/* event sp-size */
@media screen and (max-width: 1025px) {
  main #event {
    width: 90%;
    margin: 100px auto;
  }

  main #event .news-image {
    width: 100%;
  }

  main #event .news-text {
    width: 100%;
  }

  main #event .news-text p {
    font-size: 15px;
  }
}

/************************************************/

/* goods */
main #goods {
  width: 50%;
  margin: 180px auto;
  padding: 30px 0 0;
}

main #goods .goods-container {
  width: 90%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 auto;
  color: #302d53;
}

main #goods .goods-container .goods-item {
  width: 45%;
  background-color: #fff;
  padding: 30px;
  margin-bottom: 80px;
}

main #goods .goods-container .goods-item .goods-visual {
  width: 90%;
  margin: 0 auto;
}

main #goods .goods-container .goods-item .goods-visual img {
  width: 100%;
  margin: 0 auto 10px;
}

main #goods .goods-container .goods-item p:nth-child(1) {
  font-weight: 700;
} 

main #goods .goods-container .goods-item p:nth-child(3) {
  margin: 0 0 20px;
}

main #goods .goods-container .goods-item .buy-button {
  width: 180px;
  background-color: #eee;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-align: center;
  margin: 25px auto 0;
}


/************************************************/
/* goods sp-size */
@media screen and (max-width: 1025px) {
  main #goods {
    width: 90%;
    margin: 100px auto;
  }

  main #goods .goods-container {
    width: 100%;
    flex-direction: column;
  }

  main #goods .goods-container .goods-item {
    width: 100%;
    margin: 0 auto 30px;
  }
}

/************************************************/
/* company-profile */
main #company-profile {
  width: 50%;
  margin: 180px auto;
  padding: 30px 0 0;
}

main #company-profile table {
  width: 70%;
  margin: 50px auto;
  color: #302d53;
}

main #company-profile table tr {
  padding: 0 20px;
  height: 90px;
  border-bottom: 1px solid #302d53;
}

main #company-profile table tr th {
  width: 30%;
  font-size: 18px;
  letter-spacing: 2px;
}

/**********************************************/
/* company-profile sp-size */
@media screen and (max-width: 1025px) {
  main #company-profile {
    width: 90%;
    margin: 100px auto;
  }

  main #company-profile table {
    width: 100%;
  }

  main #company-profile table tr {
    height: 80px;
  }

  main #company-profile table tr th {
    width: 28%;
    font-size: 14px;
  }

  main #company-profile table tr td {
    font-size: 13px;
    padding: 0 0 0 1em;
  }
}

/************************************************/

/* privacy */
main #privacy {
  width: 50%;
  margin: 180px auto;
  padding: 30px 0 0;
}

main #privacy .privacy-list li {
  list-style-type: disc;
  margin-left: 1.5em;
}

main #privacy .privacy-text {
  width: 80%;
  margin: 50px auto;
  color: #302d53;
}

main #privacy .privacy-text h3 {
  margin: 20px 0;
}

main #privacy .privacy-text div {
  margin: 20px 0;
}

/******************************************/
/* privacy sp-size */
@media screen and (max-width: 1025px) {
  main #privacy {
    width: 90%;
    margin: 100px auto;
  }

  main #privacy .privacy-text {
    width: 100%;
  }
}

/******************************************/

/* basis */
main #basis {
  width: 50%;
  margin: 180px auto;
  padding: 30px 0 0;
}

main #basis .basis-text {
  width: 90%;
  margin: 50px auto;
  color: #302d53;
}

main #basis .basis-text dl {
  margin-bottom: 50px;
}

main #basis .basis-text dl dt {
  font-weight: bold;
  font-size: 20px;
}

main #basis .basis-text .last-text {
  width: 80%;
  margin: 100px auto 0;
}

main #basis .basis-text .last-text p:nth-child(1),
main #basis .basis-text .last-text p:nth-child(5) {
  margin-bottom: 30px;
}

/**********************************************/
/* basis sp-size */
@media screen and (max-width: 1025px) {
  main #basis {
    width: 90%;
    margin: 100px auto;
  }

  main #basis .basis-text {
    width: 100%;
  }
}

/************************************************/

/* schedule */
main #schedule {
  width: 95%;
  margin: 180px auto;
  padding: 30px 0 0;
}

main #schedule .page-title {
  margin-left: 280px;
}

.container {
  display: grid;
  margin: 0 auto;
  width: 95%;
  height: 700px;
  overflow: auto;
  grid-template-columns: max-content repeat(7, max-content minmax(80px, 1fr));
  grid-template-rows: max-content repeat(0.2rem);
  grid-column-gap: 3px;
  column-gap: 3px;
  grid-row-gap: 3px;
  row-gap: 3px;
}

.time-axis {
  background-color: #ec6922;
  grid-column: 1 / 2;
  color: #ece3c9;
  text-align: center;
}

.channel-title {
  color: #ece3c9;
  background-color: #ec6922;
  text-align: center;
  font-weight: bold;
  top: 0;
  z-index: 2;
  position: sticky;
  grid-row: 1 / 2;
}

.content-box {
  border: solid 1px #ccc;
  border-radius: 3px;
}

.content-minute {
  margin-left: 3px;
  color: gray;
  overflow: hidden;
}

.content-title {
  overflow-wrap: break-word;
  overflow: hidden;
  color: #302d53;
  font-weight: 500;
  font-size: 15px;
}

.content-discription {
  margin-top: 3px;
  color: #747474;
  font-weight: 200;
  font-size: 13px;
}

/*******************************************/
/* schedule sp-size */
@media screen and (max-width: 1025px) {
  main #schedule {
    width: 90%;
    margin: 100px auto;
  }

  main #schedule .page-title p {
    font-size: 18px;
    letter-spacing: 10px;
  }

  main #schedule .page-title h3 {
    font-size: 28px;
    letter-spacing: 2px;
    padding-bottom: 10px;
  }

  main #schedule .page-title {
    margin-left: 0px;
  }

  main #schedule h3 {
    font-size: 40px;
    letter-spacing: 5px;
    color: #ec6922;
  }

  main #schedule .container {
    width: 100%;
  }
}

/*******************************************/

/* recruit */
main #recruit {
  width: 50%;
  margin: 180px auto;
  padding: 30px 0 0;
}

main #recruit h4 {
  text-align: center;
  font-size: 30px;
  color: #302d53;
}

main #recruit table {
  width: 75%;
  margin: 50px auto;
  color: #302d53;
}

main #recruit table tr {
  padding: 0 20px;
  height: 90px;
  border-bottom: 1px solid #302d53;
}

main #recruit table tr th {
  width: 25%;
  font-size: 20px;
}

main #recruit table tr td {
  padding: 0 0 0 3em;
}

main #recruit .entry {
  text-align: center;
  margin: 40px 0 0;
}

main #recruit .entry p {
  margin: 50px 0 0;
}

main #recruit .entry a {
  font-size: 15px;
  padding: 15px 50px;
  background: #302d53;
  color: #fff;
  border: none;
  font-weight: bold;
  border-radius: 25px;
  letter-spacing: 3px;
  cursor: pointer;
  transition: 0.2s;
}

main #recruit .entry a:hover {
  background: #ec6922;
  color: #302d53;
}

/**********************************************/
/* recruit sp-size */
@media screen and (max-width: 1025px) {
  main #recruit {
    width: 90%;
    margin: 100px auto;
  }

  main #recruit h4 {
    font-size: 25px;
  }

  main #recruit table {
    width: 100%;
  }

  main #recruit table tr {
    height: 80px;
  }

  main #recruit table tr th {
    width: 28%;
    font-size: 14px;
  }

  main #recruit table tr td {
    font-size: 13px;
    padding: 0 0 0 1em;
  }
}

/************************************************/

/* contact */
main #contact-container {
  width: 50%;
  margin: 180px auto;
  padding: 30px 0 0;
}

main #contact-container .tel-contact {
  width: 80%;
  text-align: center;
  margin: 0 auto 80px;
  padding: 30px 0;
  border-top: 2px #302d53 solid;
  border-bottom: 2px #302d53 solid;
  letter-spacing: 2px;
}

main #contact-container .tel-contact h4 {
  font-size: 25px;
}

main #contact-container .tel-contact h3 {
  font-size: 30px;
}

main #contact-container .tel-contact p {
  font-size: 18px;
}

main #contact-container .tel-contact h3 a {
  color: #302d53;
}

main #contact-container .contact-main {
  width: 90%;
  margin: 50px auto;
  color: #302d53;
}

main #contact-container .contact-main dl {
  width: 80%;
  margin: 0 auto;
}

main #contact-container .contact-main .form-flex-container {
  margin: 0 0 50px;
  color: #302d53;
}

main #contact-container .contact-main .form-flex-container dt span {
  color: #fff;
  font-size: 10px;
  background-color: #302d53;
  margin: 0 0 0 15px;
  padding: 3px 4px 4px;
  border-radius: 10px;
}

main #contact-container .contact-main .form-flex-container dt {
  margin: 0 0 15px 0.5em;
  font-weight: bold;
}

main #contact-container .contact-main input[type="text"] {
  width: 100%;
  border: none;
  border-radius: 15px;
  padding: 10px 10px;
  background-color: #fff8e5;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

main #contact-container .contact-main input[type="email"] {
  width: 100%;
  border: none;
  border-radius: 15px;
  padding: 10px 10px;
  background-color: #fff8e5;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

main #contact-container .contact-main textarea {
  width: 100%;
  height: 10em;
  border: none;
  border-radius: 15px;
  padding: 10px 10px;
  background-color: #fff8e5;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

main #contact-container .contact-main p.submit {
  text-align: center;
  margin: 0 auto;
}

main #contact-container .contact-main p.submit button[type="submit"] {
  font-size: 15px;
  padding: 15px 50px;
  background: #302d53;
  color: #fff;
  border: none;
  font-weight: bold;
  border-radius: 25px;
  letter-spacing: 3px;
  cursor: pointer;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  transition: 0.2s;
}

main #contact-container .contact-main p.submit button[type="submit"]:hover {
  background: #ec6922;
  color: #302d53;
}

/*************************************************/
/* contact sp-size */
@media screen and (max-width: 1025px) {
  main #contact-container {
    width: 90%;
    margin: 100px auto;
  }

  main #contact-container .tel-contact {
    width: 100%;
    margin: 0 auto 40px;
  }

  main #contact-container .tel-contact h4 {
    font-size: 20px;
  }

  main #contact-container .tel-contact h3 {
    font-size: 25px;
  }

  main #contact-container .tel-contact p {
    font-size: 15px;
  }

  main #contact-container .contact-main {
    width: 100%;
  }

  main #contact-container .contact-main dl {
    width: 95%;
  }

  main #contact-container .contact-main .form-flex-container {
    margin: 0 0 30px;
  }
}
/*************************************************/

/* footer */
footer {
  padding: 30px;
  background-color: #383838;
}

footer .footer-menu {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

footer .company-information h2 {
  width: 150px;
  margin: 0 0 10px;
}

footer .company-information p {
  color: #ece3c9;
  font-size: 14px;
  margin: 0 0 5px;
}

footer .company-information a {
  color: #ece3c9;
}

footer .company-information .copy {
  font-size: 12px;
  margin: 10px 0 0;
  color: #ccc;
}

footer nav {
  display: flex;
  justify-content: space-between;
}

footer nav ul {
  margin: 0 20px 0 0;
}

footer nav ul li {
  width: 160px;
  color: #ece3c9;
  margin: 20px 0;
  transition: 300ms;
  background-color: none;
  padding: 5px 1em 5px 1em;
  border-radius: 25px;
}
footer nav li:hover {
  background-color: #ece3c9;
  border-radius: 25px;
}

footer ul a li:hover {
  color: #383838;
}

/*********************************************/
/* footer sp-size */
@media screen and (max-width: 1025px) {
  footer .footer-menu {
    flex-direction: column-reverse;
  }

  footer .company-information {
    margin-top: 30px;
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  footer .company-information h2 {
    width: 100px;
  }

  footer .company-information p {
    font-size: 12px;
  }

  footer nav {
    width: 95%;
    display: flex;
    justify-content: space-between;
  }

  footer nav ul {
    margin: 0 auto;
  }

  footer nav ul li {
    font-size: 15px;
  }
}
/*********************************************/

/* 要素のフェードに関する記述 */
.js-fadeUp {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s, transform 0.5s;
}

.js-fadeUp.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* 要素のフェードに関する記述 */
.js-fadeUp {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s, transform 0.5s;
}

.js-fadeUp.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.js-fadeUp01 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s, transform 0.5s;
}

.js-fadeUp01.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.js-fadeUp02 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s, transform 0.5s;
}

.js-fadeUp02.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.js-fadeUp03 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s, transform 0.5s;
}

.js-fadeUp03.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.js-fadeUp04 {
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.5s, transform 0.5s;
}

.js-fadeUp04.to-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.js-fadeUp05 {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.5s, transform 0.5s;
}

.js-fadeUp05.to-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.navi {
  opacity: 0;
  transform: translateX(10px);
  rotate: 5deg;
  transition: opacity 0.5s, transform 0.5s, rotate 0.5s;
}

.navi.to-inview {
  opacity: 1;
  transform: translateX(0);
  rotate: 0deg;
  transition-delay: 0.05s;
}

.navi01 {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s, transform 0.5s;
}

.navi01.to-inview {
  opacity: 1;
  transform: translateY(0);
  rotate: 0deg;
  transition-delay: 0.2s;
}

.navi02 {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s, transform 0.5s;
}

.navi02.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.navi03 {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s, transform 0.5s;
}

.navi03.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.navi04 {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s, transform 0.5s;
}

.navi04.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.navi05 {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s, transform 0.5s;
}

.navi05.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.navi06 {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s, transform 0.5s;
}

.navi06.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}
