@charset "UTF-8";
/*
TemplateName: 小川着物教室
*/
header {
  min-width: 1440px;
  padding-top: 25px;
  background-color: #fcf6e6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  header {
    display: none;
  }
}
header .logo {
  width: 271px;
  height: 110px;
  margin-right: 60px;
  position: relative;
}
header .logo img {
  width: 100%;
  position: absolute;
  top: 10px;
}
header .logo span {
  font-size: 12px;
  padding-left: 10px;
}
header nav {
  display: flex;
  justify-content: space-between;
  width: 750px;
}
header nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
header nav a span:first-child {
  font-size: 14px;
}
header nav a span:last-child {
  font-family: "Lato", sans-serif;
  font-size: 12.22px;
  font-weight: 700;
  color: #fea435;
}
header .tel {
  margin-left: 50px;
  display: flex;
  align-items: center;
}
header .tel span:first-child {
  display: inline-block;
  width: 100px;
  padding: 3px 0;
  background-color: #f8b600;
  text-align: center;
  color: #fff;
  font-size: 12px;
  border-radius: 35px 0 35px 0;
}
header .tel span:last-child {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #705a3f;
  margin-left: 15px;
}

#sphead {
  position: relative;
  display: none;
}
@media screen and (max-width: 600px) {
  #sphead {
    display: block;
  }
}
#sphead .btn_wrap {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  top: 3vw;
  right: 2vw;
  width: 16vw;
  height: 16vw;
  background-color: #fea435;
  border-radius: 50px;
  box-shadow: 1px 1px 3px #aaa;
}
#sphead .btn_wrap .btn {
  position: relative;
  width: 8vw;
  height: 0.8vw;
  background-color: #fff;
}
#sphead .btn_wrap .btn:before, #sphead .btn_wrap .btn:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 8vw;
  height: 0.8vw;
  background-color: #fff;
  transition: 0.3s;
}
#sphead .btn_wrap .btn:before {
  transform: translateY(-2.5vw);
}
#sphead .btn_wrap .btn:after {
  transform: translateY(2.5vw);
}
#sphead #spmenu-btn {
  display: none;
  z-index: 999;
}
#sphead #spmenu-btn:checked + .btn_wrap {
  box-shadow: 0 0 0 #fff;
}
#sphead #spmenu-btn:checked + .btn_wrap .btn {
  background-color: rgba(0, 0, 0, 0);
}
#sphead #spmenu-btn:checked + .btn_wrap .btn:before {
  transform: rotate(225deg);
}
#sphead #spmenu-btn:checked + .btn_wrap .btn:after {
  transform: rotate(-225deg);
}
#sphead #spmenu-btn:checked ~ .menu {
  top: 0;
}
#sphead .menu {
  box-sizing: border-box;
  position: absolute;
  top: -100vh;
  background-color: #fea435;
  width: 100vw;
  padding: 2vw 6vw 20vw;
  color: #fff;
  transition: 0.3s;
}
#sphead .menu .logo {
  width: 70vw;
  margin-bottom: 3vw;
  position: relative;
  padding-bottom: 12vw;
}
#sphead .menu .logo span {
  font-size: 3vw;
  margin-left: 5vw;
}
#sphead .menu .logo img {
  width: 100%;
  position: absolute;
  top: 2vw;
}
#sphead .menu a {
  display: block;
  border-bottom: 2px dashed #fff;
  padding: 1em;
}

#pagetop {
  position: fixed;
  right: 3vw;
  bottom: 30px;
  filter: drop-shadow(2px 2px 2px #aaa);
  z-index: 999;
}
@media screen and (max-width: 600px) {
  #pagetop {
    width: 20vw;
    bottom: 3vw;
  }
  #pagetop img {
    width: 100%;
  }
}

section, .kituke {
  min-width: 1440px;
}
@media screen and (max-width: 600px) {
  section, .kituke {
    width: 100%;
    min-width: auto;
  }
}

#content01 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fcf6e6;
  padding: 70px 0 70px;
}
@media screen and (max-width: 600px) {
  #content01 {
    flex-direction: column;
    padding: 100px 0 70px;
  }
  #content01 img {
    width: 90%;
    margin: 0 5%;
  }
}
#content01 .right .text {
  margin-bottom: 45px;
}
@media screen and (max-width: 600px) {
  #content01 .right .text, #content01 .right .subtext {
    width: 96%;
    margin: 30px 2% 0;
  }
}

#content02 {
  background-color: #fffbed;
  padding: 80px 0 60px;
}
#content02 h2 img {
  margin: 0 auto 50px;
}
#content02 .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  #content02 .wrap {
    width: 100%;
    margin: 0 auto;
  }
}
#content02 .wrap li {
  padding: 0 50px 35px;
}
@media screen and (max-width: 600px) {
  #content02 .wrap li {
    width: 35%;
    padding: 2% 5%;
  }
  #content02 .wrap li img {
    width: 100%;
  }
}

#content03 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 80px 0;
  background-color: #fcf5e4;
}
@media screen and (max-width: 600px) {
  #content03 {
    flex-wrap: wrap;
  }
}
#content03 h2 {
  margin-right: 85px;
}
@media screen and (max-width: 600px) {
  #content03 h2 {
    order: 1;
    position: absolute;
    top: 8vw;
    left: 10vw;
    z-index: 999;
    margin: 0;
  }
  #content03 h2 img {
    width: 25vw;
  }
}
#content03 .wrap {
  margin-right: 110px;
  font-size: 18px;
  font-weight: 500;
  line-height: 42px;
}
@media screen and (max-width: 600px) {
  #content03 .wrap {
    order: 3;
    width: 96%;
    margin-top: 15vw;
    margin-right: 0;
    font-size: 3.5vw;
    line-height: 8vw;
  }
}
#content03 .img {
  position: relative;
  width: 45.833333vw;
  min-width: 640px;
  height: 545px;
  overflow: hidden;
  border-radius: 50px 0 0 50px;
}
@media screen and (max-width: 600px) {
  #content03 .img {
    order: 2;
    width: 70vw;
    min-width: auto;
    height: auto;
    min-width: auto;
    border-radius: 30px 0 0 30px;
  }
}
#content03 .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  right: 0;
}
@media screen and (max-width: 600px) {
  #content03 .img img {
    position: static;
  }
}

#content04 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #fcf5e4;
  padding: 75px 0;
}
@media screen and (max-width: 600px) {
  #content04 {
    flex-wrap: wrap;
  }
}
#content04 .left {
  text-align: right;
}
@media screen and (max-width: 600px) {
  #content04 .left {
    order: 1;
  }
}
#content04 .left .img {
  width: 45.83333vw;
  min-width: 660px;
  height: 545px;
  margin: 0 auto 0 0;
  overflow: hidden;
  border-radius: 0 50px 50px 0;
}
@media screen and (max-width: 600px) {
  #content04 .left .img {
    width: 70vw;
    min-width: auto;
    height: auto;
    border-radius: 0 30px 30px 0;
  }
  #content04 .left .img img {
    width: 100%;
  }
}
#content04 .center {
  width: 615px;
  margin-left: 30px;
  background-color: #fff;
  padding: 45px;
  border-radius: 30px;
}
@media screen and (max-width: 600px) {
  #content04 .center {
    order: 3;
    width: 100%;
    margin: 10vw 3vw 0;
    padding: 5vw;
  }
}
#content04 .center .wrap {
  max-height: 350px;
  overflow-y: scroll;
}
@media screen and (max-width: 600px) {
  #content04 .center .wrap {
    max-height: 100vw;
  }
}
#content04 .center .wrap a {
  display: block;
}
#content04 .center .wrap article {
  position: relative;
  display: flex;
  padding: 20px 5px;
  border-bottom: 1px dashed #c5c5c5;
}
@media screen and (max-width: 600px) {
  #content04 .center .wrap article {
    padding: 3vw 1vw;
    flex-direction: column;
  }
}
#content04 .center .wrap article .date, #content04 .center .wrap article .title {
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  #content04 .center .wrap article .date, #content04 .center .wrap article .title {
    font-size: 3.5vw;
  }
}
#content04 .center .wrap article .date {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #fea435;
}
@media screen and (max-width: 600px) {
  #content04 .center .wrap article .date {
    margin-bottom: 3vw;
  }
}
#content04 .center .wrap article .title {
  margin-left: 30px;
}
@media screen and (max-width: 600px) {
  #content04 .center .wrap article .title {
    margin-left: 5vw;
  }
}
#content04 .center .wrap article:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: rotate(45deg) translateY(-50%);
  width: 10px;
  height: 10px;
  border-top: 2px solid #fea435;
  border-right: 2px solid #fea435;
}
#content04 .right {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  margin-right: 15px;
}
@media screen and (max-width: 600px) {
  #content04 .right {
    order: 2;
  }
  #content04 .right h2 {
    width: 15vw;
  }
  #content04 .right h2 img {
    width: 100%;
  }
}

#content05 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fcf5e4;
  padding-bottom: 150px;
}
@media screen and (max-width: 600px) {
  #content05 {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
@media screen and (max-width: 600px) {
  #content05 .left h2 {
    width: 24vw;
    margin-right: 6vw;
  }
  #content05 .left h2 img {
    width: 100%;
  }
}
#content05 .center {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 200px;
  height: 390px;
  margin-left: 90px;
}
@media screen and (max-width: 600px) {
  #content05 .center {
    width: 50vw;
    height: auto;
    margin-left: 0;
    padding-top: 5vw;
  }
}
#content05 .center a {
  display: block;
  text-align: center;
}
@media screen and (max-width: 600px) {
  #content05 .center a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 5vw;
  }
}
#content05 .center a img {
  width: 62px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  #content05 .center a img {
    width: 15vw;
  }
}
#content05 .center a span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
#content05 .right {
  width: 885px;
  margin-left: 65px;
}
@media screen and (max-width: 600px) {
  #content05 .right {
    width: 94%;
    margin-left: 0;
  }
}

#content06 article, #content10 article, #content12 article {
  display: none;
}

#content13 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 70px 0;
  background-color: #fcf5e4;
  text-align: center;
}
#content13 h2 {
  margin-bottom: 50px;
}
#content13 .text {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  #content13 iframe {
    width: 90vw;
    height: 50.625vw;
  }
}

#content14 {
  padding: 70px 0;
  background-color: #fffbed;
}
@media screen and (max-width: 600px) {
  #content14 {
    padding: 10vw 0;
  }
}
#content14 h2 img {
  margin: 0 auto;
}
#content14 article {
  width: 1000px;
}
@media screen and (max-width: 600px) {
  #content14 article {
    width: 96vw;
  }
}
#content14 .wrap {
  display: flex;
  align-items: center;
  margin: 50px auto 0;
}
@media screen and (max-width: 600px) {
  #content14 .wrap {
    flex-direction: column;
  }
}
#content14 .wrap .left {
  width: 300px;
}
@media screen and (max-width: 600px) {
  #content14 .wrap .left {
    width: 70vw;
    margin: 0 auto;
  }
}
#content14 .wrap .left img {
  width: 100%;
}
#content14 .wrap .right {
  margin-left: 2em;
}
@media screen and (max-width: 600px) {
  #content14 .wrap .right {
    margin-left: 0;
    margin-top: 5vw;
  }
}
#content14 .wrap .right .name {
  font-size: 48px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  #content14 .wrap .right .name {
    font-size: 10vw;
  }
}
#content14 .wrap .right .hurigana {
  font-size: 24px;
}
@media screen and (max-width: 600px) {
  #content14 .wrap .right .hurigana {
    font-size: 5vw;
  }
}
#content14 .bottom {
  margin: 50px auto 0;
}
#content14 .bottom div {
  font-size: 24px;
  margin-bottom: 12px;
}
#content14 .bottom .caption {
  font-size: 14px;
  margin-top: 1em;
}
#content14 .bottom .topic {
  margin-top: 1.5em;
}
#content14 .bottom .topic .head {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 600px) {
  #content14 .bottom .topic .head {
    font-size: 4.5vw;
  }
}
#content14 .bottom .topic .wrap {
  margin: 0;
}
@media screen and (max-width: 600px) {
  #content14 .bottom .topic .wrap {
    flex-direction: row;
  }
}
#content14 .bottom .topic .wrap a {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 30px;
}
@media screen and (max-width: 600px) {
  #content14 .bottom .topic .wrap a {
    margin: 0 20px;
  }
}
#content14 .bottom .topic .wrap a img {
  width: 53px;
  height: 53px;
}
#content14 .bottom .topic .wrap a span {
  font-size: 14px;
}
#content14 .bottom table {
  width: 100%;
  margin: 0 auto;
  font-size: 18px;
  border: 1px solid #eb6861;
}
#content14 .bottom table th, #content14 .bottom table td {
  border: 1px solid #eb6861;
}
@media screen and (max-width: 600px) {
  #content14 .bottom table th, #content14 .bottom table td {
    font-size: 3.5vw;
  }
}
#content14 .bottom table th {
  width: 100px;
  background-color: #ffc0bd;
  padding: 7px 10px;
}
@media screen and (max-width: 600px) {
  #content14 .bottom table th {
    width: 18vw;
    padding: 3vw 2.5vw;
  }
}
#content14 .bottom table td {
  background-color: #fff;
  padding: 7px 20px;
}
@media screen and (max-width: 600px) {
  #content14 .bottom table td {
    padding: 3vw 5vw;
  }
}
#content14 .bottom table td a {
  color: #ed9d00;
  text-decoration: underline;
}
#content14 .bottom table td .camera {
  display: inline-block;
  width: 24px;
  padding-top: 0px;
  transform: translateY(4px);
}

#content15 {
  background-color: #fcf5e4;
  padding: 70px 0;
}
#content15 h2 {
  margin-bottom: 30px;
}
#content15 h2 img {
  width: 22vw;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  #content15 h2 img {
    width: 80vw;
  }
}
#content15 .wrap {
  width: 800px;
  margin: 50px auto 0;
}
@media screen and (max-width: 600px) {
  #content15 .wrap {
    width: 94vw;
  }
}
#content15 .wrap .bnr {
  margin-bottom: 3em;
}
#content15 .wrap .bnr .pc img {
  width: 60%;
  margin: 0 20%;
}
#content15 .wrap .bnr .sp img {
  width: 70%;
  margin: 0 15%;
}
#content15 .wrap .contactform {
  width: 100%;
}
@media screen and (max-width: 600px) {
  #content15 .wrap .contactform tr {
    display: flex;
    flex-direction: column;
  }
}
#content15 .wrap .contactform th, #content15 .wrap .contactform td {
  border: 1px solid #eb6861;
  padding: 15px;
}
#content15 .wrap .contactform th {
  width: 300px;
  background-color: #ffc0bd;
  text-align: left;
}
#content15 .wrap .contactform th:after {
  content: "必須";
  display: inline-block;
  font-size: 12px;
  padding: 3px 12px;
  margin-left: 10px;
  font-weight: 700;
  border-radius: 4px;
  color: #fff;
  background-color: #d00;
}
@media screen and (max-width: 600px) {
  #content15 .wrap .contactform th {
    width: 92%;
    font-size: 3.5vw;
  }
}
#content15 .wrap .contactform td {
  width: 500px;
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  #content15 .wrap .contactform td {
    width: 92%;
    font-size: 3.5vw;
  }
}
#content15 .wrap .contactform td input, #content15 .wrap .contactform td textarea {
  width: 96%;
  padding: 10px 2%;
}
#content15 .wrap .contactform td input.min {
  width: 5em;
  margin-left: 1em;
}
#content15 .wrap .contactform td .wpcf7-list-item {
  display: inline-flex;
  flex-wrap: wrap;
}
#content15 .wrap .contactform td .wpcf7-list-item label {
  display: flex;
  align-items: center;
  margin: 0.3em 0.5em;
}
#content15 .wrap .contactform td .wpcf7-list-item label span {
  display: inline-block;
}
#content15 .wrap .contactform td .wpcf7-list-item label input {
  width: auto;
  padding: 0;
}
#content15 .wrap .btn {
  text-align: center;
}
#content15 .wrap .btn input[type=submit] {
  display: none;
}
#content15 .wrap .btn label.submit {
  display: inline-block;
  width: 300px;
  padding: 18px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  background-color: #eb6861;
  border-radius: 8px;
  box-shadow: 2px 2px 3px #aaa;
  transition: 0.1s;
}
#content15 .wrap .btn label.submit:hover {
  opacity: 0.7;
}
#content15 .wrap .btn label.submit:active {
  box-shadow: 0px 0px 0px #fff;
}

#content16 {
  padding: 70px 0;
  background-color: #fffbed;
}
#content16 h2 {
  margin-bottom: 30px;
}
#content16 h2 img {
  margin: 0 auto;
}
#content16 .wrap {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  #content16 .wrap {
    width: 94vw;
  }
}
#content16 .wrap .text {
  font-size: 18px;
  margin-bottom: 18px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  #content16 .wrap .text {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
}
#content16 .wrap iframe {
  width: 100%;
}

.content-plan {
  background-color: #fcf6e5;
  padding-bottom: 130px;
}
.content-plan h2.kituke {
  width: 100vw;
  text-align: center;
  font-size: 36.27px;
  color: #333;
  margin: 0 0 85px;
  padding: 70px 0;
  background-image: url(./images/back.png);
}
@media screen and (max-width: 600px) {
  .content-plan h2.kituke {
    font-size: 7vw;
    margin: 0 0 10vw;
    padding: 10vw 0;
  }
}
.content-plan h2.kituke.backcolor {
  position: relative;
  background-image: none;
  z-index: 1;
}
.content-plan h2.kituke.backcolor:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 1;
  z-index: -1;
  background-blend-mode: overlay;
}
.content-plan h2.kituke.pattern-1:after {
  background-image: url(./images/plan_back1.png);
  opacity: 0.2;
}
.content-plan h2.kituke.pattern-2:after {
  background-image: url(./images/plan_back2.png);
}
.content-plan h2.kituke.pattern-3:after {
  background-image: url(./images/plan_back3.png);
}
.content-plan h2.kituke.pattern-4:after {
  background-image: url(./images/plan_back4.png);
}
.content-plan h2.kituke.pattern-5:after {
  background-image: url(./images/plan_back5.png);
}
.content-plan h2.kituke.pattern-6:after {
  background-image: url(./images/plan_back6.png);
}
.content-plan h2.kituke.pattern-7:after {
  background-image: url(./images/plan_back7.png);
}
.content-plan .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 1030px;
  margin: 0 auto;
  padding: 0 0 65px;
}
@media screen and (max-width: 600px) {
  .content-plan .menu {
    width: 100vw;
    padding: 0 0 10vw;
  }
}
.content-plan .menu li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 310px;
  height: 65px;
  border-radius: 20px;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #ed9d00;
  overflow: hidden;
  opacity: 1;
}
.content-plan .menu li .txt {
  z-index: 999;
}
.content-plan .menu li .back {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(./images/plan_back1.png);
  opacity: 0.2;
}
.content-plan .menu li.nandemo {
  background-color: #A0DFCF;
}
.content-plan .menu li.nandemo .back {
  background-image: url(./images/plan_back7-2.png);
  opacity: 0.15;
}
.content-plan .menu li.syutyo {
  background-color: #E5BFF9;
}
.content-plan .menu li.syutyo .back {
  background-image: url(./images/plan_back5-2.png);
  opacity: 0.15;
}
@media screen and (max-width: 600px) {
  .content-plan .menu li {
    width: 46vw;
    height: 13vw;
    border-radius: 8px;
    margin: 0 2vw 5vw;
    padding: 0 5vw;
    font-size: 3.5vw;
    box-sizing: border-box;
  }
}
.content-plan .menu li.active {
  background-color: #d2555f;
}
.content-plan article {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .content-plan article {
    width: 96vw;
  }
}
.content-plan article .top {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .content-plan article .top {
    flex-direction: column-reverse;
  }
}
.content-plan article .top .img {
  width: 680px;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .content-plan article .top .img {
    width: 96vw;
    height: auto;
  }
}
.content-plan article .top .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-plan article .top .detail {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 520px;
  height: 450px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.content-plan article .top .detail span {
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
}
.content-plan article .top .detail p {
  display: inline-block;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 600px) {
  .content-plan article .top .detail {
    width: 94vw;
    height: auto;
    margin: 0 auto;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
  }
}
.content-plan article .top .detail .title {
  font-size: 32.74px;
  margin-left: 38px;
}
@media screen and (max-width: 600px) {
  .content-plan article .top .detail .title {
    font-size: 7vw;
    margin-left: 0;
    font-weight: 700;
  }
}
.content-plan article .top .detail .text {
  padding-top: 30px;
  font-size: 22px;
  line-height: 34px;
}
@media screen and (max-width: 600px) {
  .content-plan article .top .detail .text {
    padding-top: 3vw;
    font-size: 4vw;
    line-height: 7vw;
    margin-bottom: 5vw;
  }
}
.content-plan article .overview {
  width: 1000px;
  margin: 60px auto 0;
}
@media screen and (max-width: 600px) {
  .content-plan article .overview {
    width: 94vw;
  }
}
.content-plan article .overview .title {
  font-size: 32.74px;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .content-plan article .overview .title {
    font-size: 7vw;
    font-weight: 700;
  }
}
.content-plan article .overview .text {
  font-size: 18px;
  margin-left: 18px;
}
@media screen and (max-width: 600px) {
  .content-plan article .overview .text {
    font-size: 3.5vw;
    margin-left: 0;
  }
}
.content-plan article .content {
  width: 1000px;
  margin: 30px auto 60px;
}
@media screen and (max-width: 600px) {
  .content-plan article .content {
    width: 96vw;
    font-size: 3.5vw;
  }
}
.content-plan article .content a {
  color: #ed9d00;
  text-decoration: underline;
}
.content-plan article .content .caption {
  font-size: 18px;
  font-weight: 700;
  border-bottom: 2px solid #eb6861;
  margin-bottom: 1em;
  padding: 0.3em 0;
}
@media screen and (max-width: 600px) {
  .content-plan article .content .caption {
    font-size: 4vw;
  }
}
.content-plan article .content .caption:before {
  content: "■";
  color: #eb6861;
  margin-right: 0.3em;
}
.content-plan article .content li {
  display: flex;
  width: 1000px;
  border: 1px solid #eb6861;
  border-radius: 15px;
  font-size: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .content-plan article .content li {
    width: 94vw;
    flex-direction: column;
  }
}
.content-plan article .content li .head, .content-plan article .content li .text {
  padding: 20px 0;
}
.content-plan article .content li .head {
  width: 405px;
  border-radius: 15px 0 0 15px;
  background-color: #eb6861;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .content-plan article .content li .head {
    width: 86vw;
    padding: 3vw 4vw;
    border-radius: 15px 15px 0 0;
    font-size: 3.5vw;
    font-weight: 700;
  }
}
.content-plan article .content li .text {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  width: 595px;
  border-radius: 0 15px 15px 0;
  background-color: #fff;
  padding-left: 40px;
}
@media screen and (max-width: 600px) {
  .content-plan article .content li .text {
    width: 86vw;
    padding: 3vw 4vw;
    border-radius: 0 0 15px 15px;
    font-size: 3.5vw;
  }
}
.content-plan article .imgbox {
  display: flex;
  justify-content: center;
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .content-plan article .imgbox {
    width: 96%;
  }
}
.content-plan article .imgbox .img {
  max-width: 400px;
  overflow: hidden;
  flex: 1;
  margin: 0 20px;
}
@media screen and (max-width: 600px) {
  .content-plan article .imgbox .img {
    max-width: 50%;
    margin: 0 2vw;
  }
}
.content-plan article .imgbox .img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.content-plan article .cancelpolicy {
  width: 1000px;
  margin: 50px auto;
}
@media screen and (max-width: 600px) {
  .content-plan article .cancelpolicy {
    width: 94vw;
    font-size: 3.5vw;
  }
}

#single {
  background-color: #fcf6e6;
  padding: 50px 0;
  flex: 1;
}
@media screen and (max-width: 600px) {
  #single {
    padding: 25vw 0;
  }
}
#single .wrap {
  width: 1000px;
  margin: 0 auto;
  padding: 50px;
  background-color: #fff;
  border-radius: 15px;
}
@media screen and (max-width: 600px) {
  #single .wrap {
    width: 85vw;
    padding: 10vw 5vw;
    border-radius: 8px;
  }
}
#single .wrap h2 {
  margin: 0;
  padding: 10px 0;
  margin-bottom: 20px;
  border-bottom: 2px dashed #ed9d00;
}
#single .wrap article {
  padding-bottom: 50px;
}
#single .wrap .back {
  display: block;
  text-align: center;
}
#single .wrap .back a {
  position: relative;
  display: inline-block;
  color: #ed9d00;
  border: 2px solid #ed9d00;
  border-radius: 15px;
  font-weight: bold;
  padding: 10px 80px;
}
#single .wrap .back a:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ed9d00;
  border-left: 2px solid #ed9d00;
  transform: rotate(-45deg) translateY(-50%);
}
#single .wrap p {
  margin: 0;
  padding: 0;
}

footer {
  min-width: 1440px;
  padding: 40px 0;
  background-color: #eb6861;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 600px) {
  footer {
    width: 100vw;
    min-width: auto;
  }
}
footer .logo {
  width: 350px;
  display: inline-block;
  margin-bottom: 25px;
}
@media screen and (max-width: 600px) {
  footer .logo {
    width: 80vw;
  }
}
footer .logo img {
  width: 100%;
}
footer .info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 600px) {
  footer .info {
    flex-direction: column;
  }
}
footer .info .addr, footer .info .tel {
  margin: 0 21px;
}
@media screen and (max-width: 600px) {
  footer .info .addr, footer .info .tel {
    margin: 3vw 0;
  }
}
footer .info .addr {
  font-size: 16px;
}
footer .info .tel {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .info .tel :first-child {
  display: inline-block;
  width: 100px;
  background-color: #fff;
  color: #eb6861;
  font-size: 12px;
  padding: 5px 0;
  border-radius: 30px 0 30px 0;
  margin-right: 10px;
}
footer .info .tel :last-child {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 18px;
}
footer .menu {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 600px) {
  footer .menu {
    flex-wrap: wrap;
    font-size: 4vw;
  }
}
footer .menu li {
  padding-right: 10px;
}
@media screen and (max-width: 600px) {
  footer .menu li {
    margin-bottom: 3vw;
  }
}
footer .menu li:after {
  content: "|";
  padding-left: 10px;
}
footer .menu li:last-child:after {
  content: "";
}
footer .sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  footer .sns {
    flex-wrap: wrap;
  }
}
footer .sns li {
  margin: 0 20px;
}
@media screen and (max-width: 600px) {
  footer .sns li {
    width: 20%;
    margin-bottom: 5vw;
  }
}
footer .copylight {
  font-family: "Lato", sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}
@media screen and (max-width: 600px) {
  footer .copylight {
    font-size: 3vw;
  }
}

html {
  font-family: "Noto Sans JP", sans-serif;
  color: #2b2b2b;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  margin: 0;
}

img {
  display: block;
}

li {
  list-style: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

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

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