@charset "UTF-8";
/*
theme Name: iyyoto
Author:yo
Description: original theme
version:0.0.1
*/
body {
  font-family: sans-serif;
  font-size: 12pt;
  color: #000000;
  letter-spacing: 0.05em;
  /*@media(min-width:600px){
      width: 1000px;
  }
  @media(max-width:600px){
      min-width: auto;
  }*/
  /*min-width:1000px;

  @media screen and (max-width:769px){
      body{
          min-width: initial;
      }
  }*/
}
@media (min-width: 601px) and (max-width: 1000px) {
  body {
    width: 1000px;
  }
}
@media screen and (max-width: 600px) {
  body {
    width: 100%;
  }
}

:root {
  /*テーマ色の指定*/
  --theme-orange-color:#FFB328;
  --theme-green-color:#E8F6EF;
  --theme-green-vivid-color:#ACDCD3;
}

a {
  text-decoration: none;
  color: #1F91BE;
}

body, ul, li {
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 1.5rem;
}

h1.conteiner-contents-index {
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

h2 {
  font-size: 1.3rem;
}

.marker {
  font-weight: bold;
  background: linear-gradient(transparent 75%, rgb(255, 246, 115) 75%);
}

.button-flexible {
  padding: 15px 20px;
  background-color: var(--theme-orange-color);
  border-radius: 50px;
  color: black;
  font-size: 12px;
  font-weight: bold;
  display: block;
  transition: 0.2s;
  width: 130px;
  text-align: center;
}
.button-flexible.color-white {
  background-color: white;
}
.button-flexible::after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-size: 15px;
  font-weight: 900;
  margin-left: 4px;
}
.button-flexible:hover {
  transition: 0.2s;
  box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.2);
}

.contents-the-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 1rem;
  margin-top: 2rem;
}
.contents-the-button .the-button-item {
  width: 100%;
  transition: 0.3s;
  border: solid #1F91BE 1px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: bold;
  text-align: center;
  font-size: 1.2rem;
  background-color: white;
}
.contents-the-button .the-button-item a {
  width: 100%;
}
.contents-the-button .the-button-item a:hover {
  -webkit-text-decoration: underline #1F91BE;
          text-decoration: underline #1F91BE;
}
.contents-the-button .the-button-item-catch {
  width: 100%;
  transition: 0.3s;
  border: solid #1F91BE 1px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: bold;
  text-align: center;
  font-size: 1.2rem;
  background-color: #1F91BE;
  transition: 0.3s;
  width: 100%;
  color: white;
  box-shadow: 2px 2px 4px #aaa;
}
.contents-the-button .the-button-item-catch:hover {
  transition: 0.3s;
  background-color: white;
  border: solid #1F91BE 1px;
  color: #1F91BE;
}
@media (max-width: 600px) {
  .contents-the-button {
    flex-direction: column;
  }
  .contents-the-button a {
    width: 100%;
    margin-top: 20px;
  }
}

.contents-buttons-list {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 3rem;
}
.contents-buttons-list a {
  width: 45%;
}
.contents-buttons-list a .button-item {
  transition: 0.3s;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-weight: bold;
  color: #1F91BE;
  text-align: center;
  font-size: 1.2rem;
  border: 1px #1F91BE solid;
  background-color: white;
}
.contents-buttons-list a .button-item:hover {
  transition: 0.3s;
  -webkit-text-decoration: #1F91BE underline;
          text-decoration: #1F91BE underline;
}
@media (max-width: 600px) {
  .contents-buttons-list {
    flex-direction: column;
  }
  .contents-buttons-list a {
    width: 100%;
    margin-top: 20px;
  }
}

.tile-image-wrap {
  width: 100%;
  display: flex;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .tile-image-wrap {
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.tile-image-wrap .tile-image-item {
  display: block;
  height: 33vw;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.tile-image-wrap .tile-image-item:hover img {
  filter: brightness(100%);
  transition: 0.3s;
  transform: scale(1.2, 1.2);
}
@media (max-width: 900px) {
  .tile-image-wrap .tile-image-item:hover img {
    transform: none;
  }
}
@media (max-width: 900px) {
  .tile-image-wrap .tile-image-item {
    height: auto;
    display: flex;
    margin-bottom: 0.5rem;
  }
}
.tile-image-wrap .tile-image-item h2 {
  margin-top: 0;
  font-size: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: left;
}
.tile-image-wrap .tile-image-item .contents-example-inner-text {
  text-align: left;
  padding-left: 1rem;
  padding-right: 1rem;
}
.tile-image-wrap .tile-image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(50%);
  transition: 0.3s;
}
@media (max-width: 900px) {
  .tile-image-wrap .tile-image-item img {
    height: 100px;
    width: 150px;
    filter: brightness(100%);
    overflow: hidden;
  }
}
.tile-image-wrap .tile-image-item .tile-image-item-description {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .tile-image-wrap .tile-image-item .tile-image-item-description {
    position: relative;
    padding-top: 0;
    width: 100%;
  }
}
.tile-image-wrap .tile-image-item .tile-image-item-description .tile-image-item-description-title {
  text-align: center;
  padding-top: 3rem;
  font-size: 2rem;
  color: white;
  text-shadow: 1px 1px 1px black;
}
@media (max-width: 900px) {
  .tile-image-wrap .tile-image-item .tile-image-item-description .tile-image-item-description-title {
    padding-top: 0;
    margin: 0;
    margin-bottom: 0.5rem;
    color: black;
    text-shadow: none;
    font-size: 1.2rem;
    text-align: left;
  }
}
.tile-image-wrap .tile-image-item .tile-image-item-description .tile-image-item-description-text {
  color: white;
  text-shadow: 1px 1px 1px black;
}
@media (max-width: 900px) {
  .tile-image-wrap .tile-image-item .tile-image-item-description .tile-image-item-description-text {
    color: black;
    text-shadow: none;
    font-size: 0.8rem;
  }
}

.tile-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  padding-top: 3rem;
}
.tile-wrap .tile-item {
  transition: 0.3s;
  box-sizing: border-box;
  margin-right: 1rem;
  margin-bottom: 1rem;
  border: solid 1px white;
}
.tile-wrap .tile-item:nth-child(2n) {
  margin-right: 0;
}
.tile-wrap .tile-item {
  background-color: white;
  padding: 2rem;
}
.tile-wrap .tile-item .tile-item-image {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 2rem;
}
.tile-wrap .tile-item .tile-item-image i {
  font-size: 10rem;
  color: #1F91BE;
}
.tile-wrap .tile-item .tile-item-text {
  font-size: 0.9rem;
  line-height: 1.5rem;
}
.tile-wrap .tile-item .tile-item-text h3 {
  text-align: center;
  color: #1F91BE;
  font-size: 1.4rem;
  padding: 1rem;
}
.tile-wrap .tile-item .tile-item-text p {
  line-height: 1.7rem;
}
.tile-wrap .tile-item:hover {
  transition: 0.3s;
  border: solid 1px #555;
}
@media (max-width: 900px) {
  .tile-wrap {
    display: flex;
    flex-direction: column;
  }
  .tile-wrap .tile-item {
    width: 100%;
    margin-right: 0;
  }
}

.container-header-plus {
  width: 100%;
}
.container-header-plus .container-header-plus-wrap {
  align-items: center;
}
.container-header-plus .container-header-plus-wrap .header-plus-top-image img {
  height: 500px;
}
.container-header-plus .container-header-plus-wrap .header-plus-top-image {
  position: relative;
}
.container-header-plus .container-header-plus-wrap .header-plus-top-image .header-plus-top-image-contents {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: absolute;
  padding: 0 5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.container-header-plus .container-header-plus-wrap .header-plus-top-image .header-plus-top-image-contents .image-contents-img-wrap {
  width: 300px;
  display: flex;
  align-items: flex-end;
}
.container-header-plus .container-header-plus-wrap .header-plus-top-image .header-plus-top-image-contents .image-contents-img-wrap img {
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 700px) {
  .container-header-plus .container-header-plus-wrap .header-plus-top-image .header-plus-top-image-contents .image-contents-img-wrap {
    width: 100px;
  }
  .container-header-plus .container-header-plus-wrap .header-plus-top-image .header-plus-top-image-contents .image-contents-img-wrap img {
    height: 100px;
  }
}
@media (max-width: 900px) {
  .container-header-plus .container-header-plus-wrap .header-plus-top-image .header-plus-top-image-contents {
    padding: 0 2rem;
  }
}
@media (max-width: 600px) {
  .container-header-plus .container-header-plus-wrap .header-plus-top-image .header-plus-top-image-contents {
    box-shadow: none;
  }
}
.container-header-plus .container-header-plus-wrap .header-plus-top-image .header-plus-top-image-contents .image-contents-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10rem;
}
.container-header-plus .container-header-plus-wrap .header-plus-top-image .header-plus-top-image-contents .image-contents-title span {
  display: block;
}
@media (max-width: 1000px) {
  .container-header-plus .container-header-plus-wrap .header-plus-top-image .header-plus-top-image-contents .image-contents-title {
    font-size: 2rem;
  }
}
@media (max-width: 700px) {
  .container-header-plus .container-header-plus-wrap .header-plus-top-image .header-plus-top-image-contents .image-contents-title {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
}
.container-header-plus .container-header-plus-wrap .header-plus-top-image .header-plus-top-image-contents .image-contents-description {
  list-style: none;
  font-size: 1.5rem;
  font-weight: bold;
}
@media (max-width: 1000px) {
  .container-header-plus .container-header-plus-wrap .header-plus-top-image .header-plus-top-image-contents .image-contents-description {
    font-size: 1.1rem;
  }
}
@media (max-width: 700px) {
  .container-header-plus .container-header-plus-wrap .header-plus-top-image .header-plus-top-image-contents .image-contents-description {
    font-size: 0.8rem;
  }
}
.container-header-plus .container-header-plus-wrap .header-plus-top-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 700px) {
  .container-header-plus .container-header-plus-wrap .header-plus-top-image img {
    height: 200px;
  }
}
@media (max-width: 1000px) {
  .container-header-plus .container-header-plus-wrap .header-plus {
    display: none;
  }
}
.container-header-plus .container-header-plus-wrap .header-plus {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}
.container-header-plus .container-header-plus-wrap .header-plus .header-plus-contents {
  height: 100px;
  width: 200px;
  background-color: white;
  margin-right: 1rem;
}
.container-header-plus .container-header-plus-wrap .header-plus .header-plus-contents a {
  height: 0;
}
.container-header-plus .container-header-plus-wrap .header-plus .header-plus-contents a img {
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
  padding: 0;
  height: 100px;
  width: 200px;
}
.container-header-plus .container-header-plus-wrap .header-logo-plus {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.container-header {
  width: 100%;
  top: 0;
  z-index: 1000;
}
.container-header .header-nav {
  width: 100%;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
  padding-top: 10px;
  padding-bottom: 10px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  justify-content: space-between;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
}
@media (max-width: 600px) {
  .container-header .header-nav {
    display: none;
  }
}
.container-header .header-nav .header-logo-wrap {
  display: flex;
  align-items: center;
}
.container-header .header-nav .header-logo-wrap .header-logo-image {
  margin-right: 7px;
}
.container-header .header-nav .header-logo-wrap .header-logo-image img {
  height: 35px;
}
.container-header .header-nav .header-logo-wrap .header-logo-text {
  display: flex;
  flex-direction: column;
  color: black;
}
.container-header .header-nav .header-logo-wrap .header-logo-text .header-logo-text-title {
  font-size: 17px;
}
.container-header .header-nav .header-logo-wrap .header-logo-text .header-logo-text-description {
  font-size: 12px;
}
.container-header .header-nav .header-nav-items-wrap {
  display: flex;
  font-size: 13px;
}
.container-header .header-nav .header-nav-items-wrap .header-nav-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-header .header-nav .header-nav-items-wrap .header-nav-wrap .header-nav-list {
  display: flex;
  list-style: none;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-header .header-nav .header-nav-items-wrap .header-nav-wrap .header-nav-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}
.container-header .header-nav .header-nav-items-wrap .header-nav-wrap .header-nav-list li:last-of-type {
  padding-right: 20px;
}
.container-header .header-nav .header-nav-items-wrap .header-nav-wrap .header-nav-list li .header-nav-item a {
  position: relative;
  display: inline-block;
  font-weight: normal;
  color: black;
  text-decoration: none;
}
.container-header .header-nav .header-nav-items-wrap .header-nav-wrap .header-nav-list li .header-nav-item a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--theme-orange-color);
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.2s;
}
.container-header .header-nav .header-nav-items-wrap .header-nav-wrap .header-nav-list li .header-nav-item a:hover::after {
  transform: scale(1, 1);
}
.container-header .header-nav .header-nav-items-wrap .header-nav-submit {
  /*display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;*/
}
.container-header .header-nav .header-nav-items-wrap .header-nav-submit div {
  font-size: 14px;
  color: black;
}
.container-header .header-nav .header-nav-items-wrap .header-nav-submit {
  /*&:hover{
      background-color: #89ddff;
      transition: 0.3s;
  }*/
}

.container-contents {
  width: 100%;
}
.container-contents .container-contents-top_image-wrap {
  background-image: url(./images/top-image_l.jpg);
}
@media (max-width: 600px) {
  .container-contents .container-contents-top_image-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  height: 600px;
  width: 1000px;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 600px) {
  .container-contents .container-contents-top_image-wrap .container-contents-top_image {
    height: auto;
    width: auto;
    margin-top: 50px;
  }
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .top_image-c_back_v {
  position: absolute;
  animation: 10s ease-in-out infinite alternate-reverse fly_v;
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .top_image-c_back_v .top_image-c_back_h {
  position: absolute;
  animation: 15s ease-in-out infinite alternate-reverse fly_h;
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .top_image-c_back_v .top_image-c_back_h .top_image-c_back1 .top_image-c_back1_c1 {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  background-color: var(--theme-green-color);
  opacity: 50%;
  z-index: 1;
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .top_image-c_back_v .top_image-c_back_h .top_image-c_back1 .top_image-c_back1_c2 {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 70px;
  left: 50px;
  border-radius: 100px;
  background-color: var(--theme-green-color);
  opacity: 50%;
  z-index: 1;
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .top_image-c_back_v .top_image-c_back_h .top_image-c_back1 .top_image-c_back1_c3 {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 120px;
  left: 45px;
  border-radius: 100px;
  background-color: var(--theme-green-color);
  opacity: 50%;
  z-index: 1;
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .top_image-c_back_v .top_image-c_back_h .top_image-c_back1 .top_image-c_back1_c4 {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 135px;
  left: 30px;
  border-radius: 100px;
  background-color: var(--theme-green-color);
  opacity: 50%;
  z-index: 1;
}
@keyframes fly_v {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(255px);
  }
}
@media (max-width: 600px) {
  @keyframes fly_v {
    from {
      transform: translateY(0px);
    }
    to {
      transform: translateY(50px);
    }
  }
}
@keyframes fly_h {
  from {
    transform: translateX(0px);
  }
  to {
    transform: translateX(50vw);
  }
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .top_image-c_back_v2 {
  position: absolute;
  animation: 5s ease-in-out infinite alternate-reverse fly_v2;
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .top_image-c_back_v2 .top_image-c_back_h2 {
  position: absolute;
  animation: 7.5s ease-in-out infinite alternate-reverse fly_h2;
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .top_image-c_back_v2 .top_image-c_back_h2 .top_image-c_back2 .top_image-c_back2_c1 {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: var(--theme-green-color);
  opacity: 50%;
  z-index: 1;
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .top_image-c_back_v2 .top_image-c_back_h2 .top_image-c_back2 .top_image-c_back2_c2 {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 35px;
  left: 25px;
  border-radius: 100px;
  background-color: var(--theme-green-color);
  opacity: 50%;
  z-index: 1;
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .top_image-c_back_v2 .top_image-c_back_h2 .top_image-c_back2 .top_image-c_back2_c3 {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 60px;
  left: 22.5px;
  border-radius: 100px;
  background-color: var(--theme-green-color);
  opacity: 50%;
  z-index: 1;
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .top_image-c_back_v2 .top_image-c_back_h2 .top_image-c_back2 .top_image-c_back2_c4 {
  position: absolute;
  width: 5px;
  height: 5px;
  top: 67.5px;
  left: 15px;
  border-radius: 100px;
  background-color: var(--theme-green-color);
  opacity: 50%;
  z-index: 1;
}
@keyframes fly_v2 {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(328.5px);
  }
}
@media (max-width: 600px) {
  @keyframes fly_v2 {
    from {
      transform: translateY(0px);
    }
    to {
      transform: translateY(130px);
    }
  }
}
@keyframes fly_h2 {
  from {
    transform: translateX(0px);
  }
  to {
    transform: translateX(50vw);
  }
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap {
  width: 1000px;
  /*margin-right:auto;
  margin-left:auto;
  margin-right:auto;
  margin-left:auto;*/
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 600px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap {
    align-items: flex-start;
    height: auto;
    justify-content: center;
    width: auto;
    margin-top: 50px;
  }
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap {
  z-index: 30;
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .top_image-text-wrap {
  z-index: 30;
  padding-left: 1rem;
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .top_image-text-wrap .top_image-title {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 10px;
  z-index: 30;
}
@media (max-width: 600px) {
  .container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .top_image-text-wrap .top_image-title {
    font-size: 18px;
  }
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .top_image-text-wrap .top_image-title div {
  padding: 2px 0;
  z-index: 30;
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .top_image-text-wrap .top_image-description {
  font-size: 14px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .top_image-text-wrap .top_image-description {
    font-size: 12px;
  }
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .top_image-text-wrap .top_image-description span {
  display: block;
  padding: 2px 0;
  z-index: 30;
}
@media (max-width: 600px) {
  .container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .contents-top_image {
    margin-left: 1rem;
  }
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .contents-top_image .top_image {
  position: relative;
  height: 260px;
  width: 200px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .contents-top_image .top_image {
    width: 180px;
    height: 150px;
    margin-left: 1rem;
  }
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .contents-top_image .top_image img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 200px;
  height: 200px;
  border-radius: 100px;
  z-index: 100;
}
@media (max-width: 600px) {
  .container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .contents-top_image .top_image img {
    width: 150px;
    height: 150px;
  }
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .contents-top_image .top_image .top_image-c1 {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 10px;
  left: 10px;
  border-radius: 100px;
  background-color: var(--theme-orange-color);
  z-index: 50;
}
@media (max-width: 600px) {
  .container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .contents-top_image .top_image .top_image-c1 {
    width: 150px;
    height: 150px;
    top: 7.5px;
    left: 7.5px;
  }
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .contents-top_image .top_image .top_image-c2 {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 130px;
  left: 140px;
  border-radius: 100px;
  background-color: var(--theme-orange-color);
  z-index: 50;
}
@media (max-width: 600px) {
  .container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .contents-top_image .top_image .top_image-c2 {
    width: 53px;
    height: 53px;
    top: 97.5px;
    left: 105px;
  }
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .contents-top_image .top_image .top_image-c3 {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 210px;
  left: 140px;
  border-radius: 100px;
  background-color: var(--theme-orange-color);
  z-index: 50;
}
@media (max-width: 600px) {
  .container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .contents-top_image .top_image .top_image-c3 {
    width: 22.5px;
    height: 22.5px;
    top: 157.5px;
    left: 105px;
  }
}
.container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .contents-top_image .top_image .top_image-c4 {
  position: absolute;
  width: 13px;
  height: 13px;
  top: 240px;
  left: 125px;
  border-radius: 100px;
  background-color: var(--theme-orange-color);
  z-index: 50;
}
@media (max-width: 600px) {
  .container-contents .container-contents-top_image-wrap .container-contents-top_image .contents-top_image-wrap .contents-top_image .top_image .top_image-c4 {
    width: 9.75px;
    height: 9.75px;
    top: 180px;
    left: 93.75px;
  }
}
.container-contents .container-contents-news {
  background-color: var(--theme-green-color);
}
.container-contents .container-contents-news .container-contents-news-subtitle {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
  position: relative;
  top: -28px;
}
.container-contents .container-contents-news h2 {
  font-size: 12px;
  text-align: center;
  font-weight: normal;
  margin: 0;
  position: relative;
  top: -28px;
}
.container-contents .container-contents-news .contents-news-wrap {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 70px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
}
.container-contents .container-contents-news .contents-news-wrap .contents-news-inner {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .container-contents .container-contents-news .contents-news-wrap .contents-news-inner {
    flex-direction: column;
    align-items: center;
  }
  .container-contents .container-contents-news .contents-news-wrap .contents-news-inner a {
    width: 100%;
    margin-bottom: 30px;
  }
  .container-contents .container-contents-news .contents-news-wrap .contents-news-inner a:last-of-type {
    margin-bottom: 0;
  }
}
.container-contents .container-contents-news .contents-news-wrap .contents-news-inner .contents-news-item {
  width: 250px;
  height: 170px;
  background-color: white;
  border: #a0a0a0 solid 1px;
  padding: 20px;
  transition: 0.2s;
}
@media (max-width: 600px) {
  .container-contents .container-contents-news .contents-news-wrap .contents-news-inner .contents-news-item {
    height: auto;
    width: 100%;
    box-sizing: border-box;
  }
}
.container-contents .container-contents-news .contents-news-wrap .contents-news-inner .contents-news-item .contents-news-item-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.container-contents .container-contents-news .contents-news-wrap .contents-news-inner .contents-news-item .contents-news-item-header-wrap .contents-blog-news-date {
  color: black;
  font-weight: bold;
}
.container-contents .container-contents-news .contents-news-wrap .contents-news-inner .contents-news-item .contents-news-item-header-wrap .contents-news-item-category {
  background-color: var(--theme-green-color);
  border-radius: 50px;
  padding: 5px 8px;
}
.container-contents .container-contents-news .contents-news-wrap .contents-news-inner .contents-news-item .contents-news-item-title {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
  color: black;
}
.container-contents .container-contents-news .contents-news-wrap .contents-news-inner .contents-news-item:hover {
  transition: 0.2s;
  box-shadow: 0px 0px 7px #ccc;
}
.container-contents .container-contents-news .contents-news-wrap .contents-news-button-area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.container-contents .container-contents-plan {
  background-color: var(--theme-green-color);
  padding-bottom: 70px;
}
.container-contents .container-contents-plan .container-contents-plan-subtitle {
  text-align: center;
  background: linear-gradient(to bottom, #fff 50%, var(--theme-green-color) 50%);
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
}
.container-contents .container-contents-plan h2 {
  font-size: 12px;
  text-align: center;
  font-weight: normal;
  margin: 0;
}
.container-contents .container-contents-plan .contents-plan-wrap {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 50px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .container-contents .container-contents-plan .contents-plan-wrap {
    flex-direction: column;
  }
}
.container-contents .container-contents-plan .contents-plan-wrap .plan-item {
  background-color: white;
  width: 430px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 45px;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container-contents .container-contents-plan .contents-plan-wrap .plan-item {
    width: 100%;
    height: auto;
    padding: 30px;
  }
  .container-contents .container-contents-plan .contents-plan-wrap .plan-item:first-child {
    margin-bottom: 30px;
  }
}
.container-contents .container-contents-plan .contents-plan-wrap .plan-item .plan-item-title {
  border: solid 1px var(--theme-orange-color);
  padding: 7px;
  color: var(--theme-orange-color);
  font-size: 14px;
  width: 140px;
  text-align: center;
  margin-bottom: 20px;
}
.container-contents .container-contents-plan .contents-plan-wrap .plan-item .plan-item-subtitle {
  font-size: 12px;
  margin-bottom: 20px;
}
.container-contents .container-contents-plan .contents-plan-wrap .plan-item .plan-item-catch {
  font-size: 18px;
  font-weight: bold;
  color: var(--theme-orange-color);
  padding-bottom: 10px;
  width: 340px;
  border-bottom: solid #ccc 2px;
  text-align: center;
}
@media (max-width: 600px) {
  .container-contents .container-contents-plan .contents-plan-wrap .plan-item .plan-item-catch {
    width: auto;
  }
}
.container-contents .container-contents-plan .contents-plan-wrap .plan-item .plan-item-cost {
  font-size: 22px;
  font-weight: bold;
  padding-top: 10px;
  margin-bottom: 30px;
}
.container-contents .container-contents-plan .contents-plan-wrap .plan-item .plan-item-description-wrap ul {
  list-style: none;
}
.container-contents .container-contents-plan .contents-plan-wrap .plan-item .plan-item-description-wrap ul li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  font-size: 12px;
  font-weight: 900;
  margin-left: 4px;
  color: var(--theme-orange-color);
}
.container-contents .container-contents-plan .contents-plan-wrap .plan-item .plan-item-description-wrap ul li .plan-item-description {
  font-size: 12px;
  font-weight: bold;
}
.container-contents .container-contents-plan .contents-plan-wrap .plan-item .plan-item-description-wrap ul li .plan-item-description-text {
  margin-top: 3px;
  font-size: 12px;
  margin-left: 20px;
  margin-bottom: 10px;
}
.container-contents .container-contents-plan .contents-plan-button-area {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
.container-contents .marker {
  font-weight: bold;
  background: linear-gradient(transparent 60%, var(--theme-orange-color) 60%);
}
.container-contents .container-contents-catch {
  margin-top: 70px;
  margin-bottom: 70px;
}
.container-contents .container-contents-catch span {
  display: inline-block;
}
.container-contents .container-contents-catch .contents-catch-wrap {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 50px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner h2 {
  font-size: 36px;
  text-align: center;
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .catch-text-contents-checks {
  display: flex;
  justify-content: center;
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .catch-text-contents-checks .catch-text-contents-checks-wrap .catch-text-contents-question {
  display: flex;
}
@media (max-width: 600px) {
  .container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .catch-text-contents-checks .catch-text-contents-checks-wrap .catch-text-contents-question {
    margin-bottom: 10px;
  }
  .container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .catch-text-contents-checks .catch-text-contents-checks-wrap .catch-text-contents-question:last-of-type {
    margin-bottom: 0;
  }
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .catch-text-contents-checks .catch-text-contents-checks-wrap .catch-text-contents-question i {
  font-size: 20px;
  color: var(--theme-orange-color);
  line-height: 40px;
  margin-right: 5px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .catch-text-contents-checks .catch-text-contents-checks-wrap .catch-text-contents-question i {
    font-size: 16px;
    line-height: 25px;
  }
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .catch-text-contents-checks .catch-text-contents-checks-wrap .catch-text-contents-question .catch-text-contents-checks-text {
  font-size: 20px;
  font-weight: bold;
  line-height: 40px;
  margin: 0;
}
@media (max-width: 600px) {
  .container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .catch-text-contents-checks .catch-text-contents-checks-wrap .catch-text-contents-question .catch-text-contents-checks-text {
    font-size: 16px;
    line-height: 25px;
  }
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .catch-text-contents-checks ul {
  list-style: none;
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .catch-text-contents-checks ul li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ce";
  font-size: 20px;
  font-weight: 900;
  margin-left: 4px;
  color: var(--theme-orange-color);
}
@media (max-width: 600px) {
  .container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .catch-text-contents-checks ul li::before {
    font-size: 16px;
  }
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .catch-text-contents-checks ul li {
  font-size: 20px;
  font-weight: bold;
  line-height: 40px;
  margin-left: 300px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .catch-text-contents-checks ul li {
    font-size: 16px;
  }
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .catch-arrow {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .catch-arrow .catch-arrow-line {
  height: 100px;
  border-right: 2px #ccc solid;
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .catch-arrow .catch-arrow-rightup {
  width: 20px;
  height: 30px;
  background-image: linear-gradient(to left top, transparent 47%, #ccc 50%, #ccc 50%, transparent 53%);
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-cell-subtitle {
  display: none;
  font-size: 22px;
  font-weight: bold;
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-cell-subtitle:nth-of-type(2) {
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-cell-subtitle {
    display: block;
    text-align: center;
  }
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-contents {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-contents {
    flex-direction: column-reverse;
  }
  .container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-contents.inverse {
    flex-direction: column;
  }
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-contents .contents-catch-text {
  width: 30%;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-contents .contents-catch-text {
    width: 100%;
    padding-right: 0;
    margin-top: 30px;
  }
  .container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-contents .contents-catch-text.inverse {
    margin-top: 40px;
  }
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-contents .contents-catch-text .contents-catch-text-subtitle {
  font-size: 22px;
  font-weight: bold;
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-contents .contents-catch-text .contents-catch-text-subtitle:nth-of-type(2) {
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-contents .contents-catch-text .contents-catch-text-subtitle {
    display: none;
  }
  .container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-contents .contents-catch-text .contents-catch-text-subtitle:nth-of-type(1) {
    margin-top: 40px;
  }
  .container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-contents .contents-catch-text .contents-catch-text-subtitle {
    text-align: center;
  }
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-contents .contents-catch-text .contents-catch-text-contents1 {
  font-size: 14px;
  margin-bottom: 30px;
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-contents .contents-catch-text .contents-catch-text-contents2 {
  font-size: 14px;
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-contents .contents-catch-text .contents-catch-button-area {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-contents .contents-catch-image {
  width: 60%;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 600px) {
  .container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-contents .contents-catch-image {
    width: 100%;
  }
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-contents .contents-catch-image img {
  box-sizing: border-box;
  width: 100%;
  z-index: 50;
}
.container-contents .container-contents-catch .contents-catch-wrap .contents-catch-inner .contents-catch-contents .contents-catch-image .contents-catch-image-shadow {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 100%;
  height: 100%;
  background-color: var(--theme-orange-color);
  z-index: -10;
}
.container-contents .container-contents-create {
  background-color: var(--theme-green-color);
  padding-bottom: 70px;
}
.container-contents .container-contents-create .container-contents-create-subtitle {
  text-align: center;
  background: linear-gradient(to bottom, #fff 50%, var(--theme-green-color) 50%);
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
}
.container-contents .container-contents-create h2 {
  font-size: 12px;
  text-align: center;
  margin: 0;
  font-weight: normal;
}
.container-contents .container-contents-create .contents-create {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 50px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container-contents .container-contents-create .contents-create {
    flex-direction: column;
    align-items: center;
  }
}
.container-contents .container-contents-create .contents-create .create-item {
  width: 300px;
  height: 400px;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container-contents .container-contents-create .contents-create .create-item {
    margin-bottom: 30px;
    width: 100%;
    height: auto;
  }
  .container-contents .container-contents-create .contents-create .create-item:last-of-type {
    margin-bottom: 0;
  }
}
.container-contents .container-contents-create .contents-create .create-item .create-item-image {
  width: 100%;
  height: 170px;
  padding-bottom: 20px;
}
.container-contents .container-contents-create .contents-create .create-item .create-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.container-contents .container-contents-create .contents-create .create-item .create-item-text {
  border-top: solid #ccc 2px;
  padding-top: 20px;
}
.container-contents .container-contents-create .contents-create .create-item .create-item-text .create-item-text-title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
.container-contents .container-contents-create .contents-create .create-item .create-item-text .create-item-text-description {
  font-size: 12px;
  line-height: 22px;
}
.container-contents .container-contents-catch-merumaga {
  padding-bottom: 5rem;
  text-align: center;
}
.container-contents .container-contents-catch-merumaga img {
  border: solid black 1px;
  transition: 0.3s;
}
@media (max-width: 900px) {
  .container-contents .container-contents-catch-merumaga img {
    width: 90%;
  }
}
.container-contents .container-contents-catch-merumaga img:hover {
  transition: 0.3s;
  opacity: 0.8;
  filter: brightness(105%);
}
.container-contents .container-contents-example {
  padding-bottom: 30px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-example {
    padding-bottom: 40px;
  }
}
.container-contents .container-contents-example .container-contents-example-subtitle {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
}
.container-contents .container-contents-example h2 {
  font-weight: normal;
  margin: 0;
  font-size: 12px;
  text-align: center;
}
.container-contents .container-contents-example .contents-example-inner {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 50px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  transition: 0.2s;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .container-contents .container-contents-example .contents-example-inner {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}
.container-contents .container-contents-example .contents-example-inner .example-item {
  display: block;
  width: 450px;
  height: 150px;
  border: solid var(--theme-green-vivid-color) 2px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-example .contents-example-inner .example-item {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
}
.container-contents .container-contents-example .contents-example-inner .example-item:hover {
  box-shadow: 0px 0px 7px #ccc;
  transition: 0.2s;
}
.container-contents .container-contents-example .contents-example-inner .example-item .example-item-text {
  padding-right: 20px;
}
.container-contents .container-contents-example .contents-example-inner .example-item .example-item-text .example-item-title {
  font-size: 16px;
  margin: 0;
  margin-bottom: 20px;
  color: black;
}
@media (max-width: 600px) {
  .container-contents .container-contents-example .contents-example-inner .example-item .example-item-text .example-item-title {
    margin-bottom: 10px;
  }
}
.container-contents .container-contents-example .contents-example-inner .example-item .example-item-text .example-item-description {
  font-size: 14px;
  color: black;
}
@media (max-width: 600px) {
  .container-contents .container-contents-example .contents-example-inner .example-item .example-item-text .example-item-description {
    font-size: 12px;
  }
}
.container-contents .container-contents-example .contents-example-inner .example-item .example-item-arrow {
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-contents .container-contents-example .contents-example-inner .example-item .example-item-arrow .example-arrow-rightdown {
  width: 20px;
  height: 20px;
  background-image: linear-gradient(to right top, transparent 47%, var(--theme-green-vivid-color) 47%, var(--theme-green-vivid-color) 53%, transparent 53%);
}
.container-contents .container-contents-example .contents-example-inner .example-item .example-item-arrow .example-arrow-rightup {
  width: 20px;
  height: 20px;
  background-image: linear-gradient(to left top, transparent 47%, var(--theme-green-vivid-color) 47%, var(--theme-green-vivid-color) 53%, transparent 53%);
}
.container-contents .container-contents-contact_top {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: var(--theme-green-vivid-color);
  color: white;
}
.container-contents .container-contents-contact_top .container-contents-contact_top-subtitle {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
}
.container-contents .container-contents-contact_top h2 {
  font-weight: normal;
  margin: 0;
  font-size: 12px;
  text-align: center;
}
.container-contents .container-contents-contact_top .contents-contact_top-inner {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 50px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container-contents .container-contents-contact_top .contents-contact_top-inner {
    flex-direction: column;
  }
}
.container-contents .container-contents-contact_top .contents-contact_top-inner .contact_top-item {
  width: 46%;
}
@media (max-width: 600px) {
  .container-contents .container-contents-contact_top .contents-contact_top-inner .contact_top-item {
    width: 100%;
  }
  .container-contents .container-contents-contact_top .contents-contact_top-inner .contact_top-item:first-child {
    margin-bottom: 30px;
  }
}
.container-contents .container-contents-contact_top .contents-contact_top-inner .contact_top-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container-contents .container-contents-contact_top .contents-contact_top-inner .contact_top-item .contact_top-item-text {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 30px;
}
.container-contents .container-contents-contact_top .contents-contact_top-inner .contact_top-item .contents-contact_top-button-area {
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-contact_top .contents-contact_top-inner .contact_top-item .contents-contact_top-button-area {
    margin-bottom: 20px;
  }
}
.container-contents .container-contents-reasonable .container-contents-reasonable-header {
  position: relative;
  box-sizing: border-box;
  margin-bottom: 70px;
}
.container-contents .container-contents-reasonable .container-contents-reasonable-header img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 350px;
}
.container-contents .container-contents-reasonable .container-contents-reasonable-header .reasonable-header-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .container-contents-reasonable-header .reasonable-header-text {
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents .container-contents-reasonable .container-contents-reasonable-header .reasonable-header-text .reasonable-header-text-wrap {
  width: 900px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .container-contents-reasonable-header .reasonable-header-text .reasonable-header-text-wrap {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents .container-contents-reasonable .container-contents-reasonable-header .reasonable-header-text .reasonable-header-text-wrap .reasonable-header-text-title {
  font-size: 35px;
  text-align: center;
  margin-top: 40px;
}
.container-contents .container-contents-reasonable .container-contents-reasonable-header .reasonable-header-text .reasonable-header-text-wrap .reasonable-header-text-subtitle {
  margin-top: 0px;
  padding-bottom: 10px;
  border-bottom: solid 2px var(--theme-orange-color);
  font-size: 12px;
  font-weight: normal;
  width: 200px;
  text-align: center;
}
.container-contents .container-contents-reasonable .container-contents-reasonable-header .reasonable-header-text .reasonable-header-text-wrap .reasonable-header-text-description {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-reason-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-reason-subtitle {
  font-weight: normal;
  margin: 0;
  font-size: 12px;
  text-align: center;
  margin-bottom: 50px;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap {
    background-color: var(--theme-green-color);
    padding-bottom: 70px;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left {
  background-color: var(--theme-green-color);
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
  z-index: -50;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left {
    flex-direction: column;
    margin-top: 0;
    padding-top: 50px;
    margin-bottom: 0px;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left .reasons-item-left-padding-left {
  margin-left: 0;
  flex: 1;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left .reasons-item-left-padding-left {
    display: none;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left .reasons-item-contents-left {
  max-width: 1000px;
  margin-right: 0;
  margin-left: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 350px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left .reasons-item-contents-left {
    flex-direction: column;
    width: 100%;
    height: auto;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-text-left {
  padding-left: 1rem;
  width: 35%;
  box-sizing: border-box;
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-text-left {
    width: 100%;
    padding-right: 1rem;
    padding-top: 0;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-text-left .reasons-item-text-title-left {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 28px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-text-left .reasons-item-text-title-left {
    text-align: center;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-text-left .reasons-item-text-description-left {
  font-size: 16px;
  margin-top: 20px;
  line-height: 30px;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-text-left .contents-catch-button-area {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-image-left {
  width: 65%;
  padding-right: 1rem;
  background-color: white;
  padding-left: 50px;
  box-sizing: border-box;
  z-index: 100;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-image-left {
    width: 100%;
    padding-left: 1rem;
    background-color: var(--theme-green-color);
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-image-left .reasons-item-image-wrap-left {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-image-left .reasons-item-image-wrap-left {
    height: auto;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-image-left .reasons-item-image-wrap-left img {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-image-left .reasons-item-image-wrap-left img {
    height: auto;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-image-left .reasons-item-image-wrap-left .reasons-item-image-shadow-left {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 100%;
  height: 100%;
  background-color: var(--theme-orange-color);
  z-index: -10;
  padding-left: 50px;
  box-sizing: border-box;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left .reasons-item-right-padding-left {
  background-color: white;
  margin-right: 0;
  flex: 1;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-left .reasons-item-right-padding-left {
    display: none;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right {
  background-color: var(--theme-green-color);
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
  z-index: -50;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right {
    flex-direction: column;
    margin-top: 0;
    padding-top: 50px;
    margin-bottom: 0px;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right .reasons-item-left-padding-right {
  background-color: white;
  margin-right: 0;
  flex: 1;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right .reasons-item-left-padding-right {
    display: none;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right .reasons-item-contents-right {
  max-width: 1000px;
  margin-right: 0;
  margin-left: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 350px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right .reasons-item-contents-right {
    flex-direction: column-reverse;
    width: 100%;
    height: auto;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-text-right {
  padding-right: 1rem;
  width: 35%;
  box-sizing: border-box;
  padding-top: 30px;
  padding-left: 30px;
  padding-bottom: 30px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-text-right {
    width: 100%;
    padding-left: 1rem;
    padding-top: 0;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-text-right .reasons-item-text-title-right {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 28px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-text-right .reasons-item-text-title-right {
    text-align: center;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-text-right .reasons-item-text-description-right {
  font-size: 16px;
  margin-top: 20px;
  line-height: 30px;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-text-right .contents-catch-button-area {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-image-right {
  width: 65%;
  padding-left: 1rem;
  background-color: white;
  padding-right: 50px;
  box-sizing: border-box;
  z-index: 100;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-image-right {
    width: 100%;
    padding-right: 1rem;
    background-color: var(--theme-green-color);
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-image-right .reasons-item-image-wrap-right {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-image-right .reasons-item-image-wrap-right {
    height: auto;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-image-right .reasons-item-image-wrap-right img {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-image-right .reasons-item-image-wrap-right img {
    height: auto;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-image-right .reasons-item-image-wrap-right .reasons-item-image-shadow-right {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 100%;
  height: 100%;
  background-color: var(--theme-orange-color);
  z-index: -10;
  padding-left: 50px;
  box-sizing: border-box;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right .reasons-item-right-padding-right {
  margin-left: 0;
  flex: 1;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasons-items-wrap .reasons-item-right .reasons-item-right-padding-right {
    display: none;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-package {
  margin-top: 70px;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-package .reasonable-package-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-package .reasonable-package-subtitle {
  font-weight: normal;
  margin: 0;
  font-size: 12px;
  text-align: center;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-package .reasonable-package-table-wrap {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 50px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  transition: 0.2s;
  flex-wrap: wrap;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-package .reasonable-package-table-wrap dl {
  width: 80%;
  box-shadow: 5px 5px var(--theme-orange-color);
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasonable-package .reasonable-package-table-wrap dl {
    width: 100%;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-package .reasonable-package-table-wrap dl dt {
  float: left;
  clear: left;
  width: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: #ccc solid 1px;
  border-left: #ccc solid 1px;
  font-size: 18px;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-package .reasonable-package-table-wrap dl dt.none {
  border-top: none;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasonable-package .reasonable-package-table-wrap dl dt {
    font-size: 12px;
    width: 70%;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-package .reasonable-package-table-wrap dl dt:last-of-type {
  font-weight: bold;
  border-bottom: #ccc solid 1px;
  color: var(--theme-orange-color);
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-package .reasonable-package-table-wrap dl dd {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: #ccc solid 1px;
  border-right: #ccc solid 1px;
  border-left: #ccc solid 1px;
  font-size: 18px;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-package .reasonable-package-table-wrap dl dd.none {
  border-top: none;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-package .reasonable-package-table-wrap dl dd .strike {
  text-decoration: line-through;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasonable-package .reasonable-package-table-wrap dl dd {
    font-size: 12px;
    margin-left: 70%;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-package .reasonable-package-table-wrap dl dd:last-of-type {
  font-weight: bold;
  border-bottom: #ccc solid 1px;
  color: var(--theme-orange-color);
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-package .reasonable-package-table-wrap dl dd:last-of-type i {
  padding-right: 10px;
  padding-left: 10px;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo {
  margin-top: 70px;
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 70px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-subtitle {
  font-weight: normal;
  margin: 0;
  font-size: 12px;
  text-align: center;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .demo-item-text-subtitle_cell {
  display: none;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .demo-item-text-subtitle_cell {
    display: block;
    box-shadow: 5px 5px var(--theme-orange-color);
    border: solid 1px var(--theme-orange-color);
    margin-bottom: 10px;
    font-size: 26px;
    color: var(--theme-orange-color);
    padding: 7px 10px;
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    margin-top: 50px;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item {
    flex-direction: column-reverse;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item .demo-item-text {
  width: 30%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item .demo-item-text {
    width: 100%;
    padding-right: 0;
    margin-top: 30px;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item .demo-item-text .demo-item-text-subtitle {
  box-shadow: 5px 5px var(--theme-orange-color);
  border: solid 1px var(--theme-orange-color);
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 26px;
  color: var(--theme-orange-color);
  padding: 7px 10px;
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  margin-left: 0px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item .demo-item-text .demo-item-text-subtitle {
    width: 100%;
    text-align: center;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item .demo-item-text .demo-item-text-subtitle:nth-of-type(2) {
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item .demo-item-text .demo-item-text-subtitle {
    display: none;
  }
  .container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item .demo-item-text .demo-item-text-subtitle:nth-of-type(1) {
    margin-top: 40px;
  }
  .container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item .demo-item-text .demo-item-text-subtitle {
    text-align: center;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item .demo-item-text .demo-item-text-contents {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 36px;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item .demo-item-text .demo-item-button-area {
  display: flex;
  justify-content: center;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item .demo-item-image {
  width: 60%;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item .demo-item-image {
    width: 100%;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item .demo-item-image img {
  box-sizing: border-box;
  width: 100%;
  z-index: 50;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item .demo-item-image .demo-item-image-shadow {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 100%;
  height: 100%;
  background-color: var(--theme-orange-color);
  z-index: -10;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item-noimage {
  margin-top: 70px;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item-noimage .demo-item-text .demo-item-text-subtitle {
  box-shadow: 5px 5px var(--theme-orange-color);
  border: solid 1px var(--theme-orange-color);
  margin-bottom: 10px;
  font-size: 26px;
  color: var(--theme-orange-color);
  padding: 7px 10px;
  display: block;
  width: 290px;
  text-align: center;
  box-sizing: border-box;
  font-weight: bold;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item-noimage .demo-item-text .demo-item-text-subtitle {
    width: 100%;
    text-align: center;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-demo .reasonable-demo-item-wrap .demo-item-noimage .demo-item-text .demo-item-text-contents {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 36px;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-format {
  margin-top: 70px;
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 50px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-format .format-items-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasonable-format .format-items-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-format .format-items-wrap .format-item {
  width: 300px;
  height: 400px;
  padding: 20px;
  margin-bottom: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: solid 1px #ccc;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasonable-format .format-items-wrap .format-item {
    width: 100%;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-format .format-items-wrap .format-item .format-item-image {
  width: 100%;
  height: 170px;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-format .format-items-wrap .format-item .format-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-format .format-items-wrap .format-item .format-item-text {
  width: 100%;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-format .format-items-wrap .format-item .format-item-text .format-item-text-title {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: bold;
  font-size: 16px;
  width: 100%;
  border-bottom: solid 1px #ccc;
  margin: 0;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-format .format-items-wrap .format-item .format-item-text .format-item-text-dl {
  list-style: none;
  padding-top: 20px;
  padding-bottom: 20px;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-format .format-items-wrap .format-item .format-item-text .format-item-text-dl li {
  line-height: 20px;
  font-size: 14px;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-format .format-items-wrap .format-item .format-item-text .format-item-text-dl li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f381";
  font-weight: 900;
  color: var(--theme-orange-color);
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-format .format-items-wrap .format-item .format-item-text .format-item-text-dl li a {
  color: var(--theme-green-vivid-color);
  text-decoration: underline;
  font-weight: bold;
  margin-left: 4px;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-format .format-items-wrap .format-item .format-item-text .format-item-button-area {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-faq {
  margin-top: 70px;
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 70px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-faq .reasonable-faq-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-faq .reasonable-faq-subtitle {
  font-weight: normal;
  margin: 0;
  font-size: 12px;
  text-align: center;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-faq .reasonable-faq-item-wrap {
  box-sizing: border-box;
  padding-bottom: 20px;
  border-bottom: solid 1px #ccc;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-faq .reasonable-faq-item-wrap .faq-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px #ccc solid;
  box-sizing: border-box;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-faq .reasonable-faq-item-wrap .faq-item .faq-item-chk {
  display: none;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-faq .reasonable-faq-item-wrap .faq-item .faq-item-lbl {
  width: 100%;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-faq .reasonable-faq-item-wrap .faq-item .faq-item-lbl .faq-item-lbl-content {
  box-sizing: border-box;
  font-size: 16px;
  display: block;
  width: 100%;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-faq .reasonable-faq-item-wrap .faq-item .faq-item-lbl .faq-item-lbl-content::after {
  display: block;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-size: 30px;
  font-weight: 900;
  color: var(--theme-orange-color);
  /*position: absolute;
  top:0;
  right: 0;*/
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-faq .reasonable-faq-item-wrap .faq-item .faq-item-text {
  box-sizing: border-box;
  font-size: 16px;
  line-height: 30px;
  opacity: 0;
  visibility: hidden;
  padding: 0 15px;
  margin-left: 20px;
  background-color: var(--theme-green-color);
  height: 0;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .reasonable-reason .reasonable-faq .reasonable-faq-item-wrap .faq-item .faq-item-text {
    margin-left: 0;
  }
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-faq .reasonable-faq-item-wrap .faq-item .faq-item-text .faq-item-text_content {
  padding: 5px;
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-faq .reasonable-faq-item-wrap .faq-item .faq-item-chk:checked + .faq-item-lbl > .faq-item-lbl-content::after {
  content: "\f068";
}
.container-contents .container-contents-reasonable .reasonable-reason .reasonable-faq .reasonable-faq-item-wrap .faq-item .faq-item-chk:checked + .faq-item-lbl + .faq-item-text {
  opacity: 1;
  visibility: visible;
  padding: 15px;
  height: auto;
  box-sizing: border-box;
  transition: 0.5s;
  margin-top: 20px;
}
.container-contents .container-contents-reasonable .resonable-contact {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 70px;
  margin-bottom: 70px;
}
.container-contents .container-contents-reasonable .resonable-contact .resonable-contact-title-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--theme-orange-color);
  font-size: 30px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .resonable-contact .resonable-contact-title-wrap {
    font-size: 20px;
  }
}
.container-contents .container-contents-reasonable .resonable-contact .resonable-contact-title-wrap .resonable-contact-title {
  margin-bottom: 10px;
  text-align: center;
}
.container-contents .container-contents-reasonable .resonable-contact .resonable-contact-description {
  margin-top: 60px;
  text-align: center;
  color: var(--theme-green-vivid-color);
  font-weight: bold;
  font-size: 30px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-reasonable .resonable-contact .resonable-contact-description {
    font-size: 20px;
  }
}
.container-contents .container-contents-menu {
  background-color: #F6F6F6;
}
.container-contents .container-contents-menu .container-contents-menu-wrap {
  width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .container-contents .container-contents-menu .container-contents-menu-wrap {
    flex-direction: column;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.container-contents .container-contents-menu .container-contents-menu-wrap .top-description {
  padding-bottom: 2rem;
  font-size: 2rem;
  line-height: 3.5rem;
  margin: 0;
  width: 30%;
}
@media (max-width: 900px) {
  .container-contents .container-contents-menu .container-contents-menu-wrap .top-description {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
  }
}
.container-contents .container-contents-menu .container-contents-menu-wrap .menu-items-wrap {
  width: 630px;
}
@media (max-width: 900px) {
  .container-contents .container-contents-menu .container-contents-menu-wrap .menu-items-wrap {
    width: 100%;
  }
}
.container-contents .container-contents-menu .container-contents-menu-wrap .menu-items-wrap .menu-items-inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, 202px);
  justify-content: center;
}
@media (max-width: 600px) {
  .container-contents .container-contents-menu .container-contents-menu-wrap .menu-items-wrap .menu-items-inner {
    grid-template-columns: repeat(auto-fill, 152px);
  }
}
.container-contents .container-contents-menu .container-contents-menu-wrap .menu-items-wrap .menu-items-inner .menu-item {
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  width: 200px;
  height: 200px;
  border: #F6F6F6 1px solid;
  transition: 0.3s;
  margin: 0;
}
@media (max-width: 600px) {
  .container-contents .container-contents-menu .container-contents-menu-wrap .menu-items-wrap .menu-items-inner .menu-item {
    width: 150px;
    height: 150px;
  }
}
.container-contents .container-contents-menu .container-contents-menu-wrap .menu-items-wrap .menu-items-inner .menu-item:hover {
  color: black;
  transition: 0.3s;
  border: #F6F6F6 1px solid;
  background-color: #1F91BE;
}
.container-contents .container-contents-menu .container-contents-menu-wrap .menu-items-wrap .menu-items-inner .menu-item:hover .menu-item-icon {
  color: white;
}
.container-contents .container-contents-menu .container-contents-menu-wrap .menu-items-wrap .menu-items-inner .menu-item:hover .menu-item-title {
  color: white;
}
.container-contents .container-contents-menu .container-contents-menu-wrap .menu-items-wrap .menu-items-inner .menu-item .menu-item-title {
  font-size: 1rem;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: bold;
  color: black;
}
.container-contents .container-contents-menu .container-contents-menu-wrap .menu-items-wrap .menu-items-inner .menu-item .menu-item-icon {
  padding-top: 3rem;
  padding-bottom: 1.5rem;
  font-size: 3rem;
  color: #1F91BE;
}
@media (max-width: 600px) {
  .container-contents .container-contents-menu .container-contents-menu-wrap .menu-items-wrap .menu-items-inner .menu-item .menu-item-icon {
    padding-bottom: 0;
  }
}
.container-contents .container-contents-menu .container-contents-menu-wrap .menu-items-wrap .menu-items-inner .menu-item .menu-item-description {
  font-size: 0.8rem;
  text-align: center;
  margin-top: auto;
  margin-bottom: 0;
  width: 100%;
}
.container-contents .container-contents-menu .container-contents-menu-wrap .menu-items-wrap .menu-items-inner .menu-item .menu-item-description p {
  line-height: 0.5rem;
  color: #1F91BE;
}
.container-contents .container-contents-menu .container-contents-menu-wrap .menu-items-wrap .menu-items-inner {
  /*@media(max-width:900px){
      flex-direction: column;
      .menu-item{
          width: 100%;
          height: auto;
          flex-direction: row-reverse;
          justify-content: flex-end;
          align-items: center;
          margin-bottom: 1rem;
          .menu-item-icon{
              width: 70px;
              padding:1rem;
              text-align: center;
          }
          .menu-item-description{
              display: none;
          }
      }

  }*/
}
.container-contents .container-contents-from {
  background-color: white;
}
.container-contents .container-contents-from .from-image-wrap {
  width: 100%;
}
.container-contents .container-contents-from .from-image-wrap img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.container-contents .container-contents-from .contents-from-inner {
  max-width: 1000px;
  padding: 0 2rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.container-contents .container-contents-from .contents-from-inner h2 {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 0.5rem;
  margin: 0;
  font-size: 1.7rem;
}
.container-contents .container-contents-from .contents-from-inner p.contents-from-inner-text {
  text-align: center;
  font-size: 0.9rem;
  padding-top: 0rem;
  font-weight: normal;
  margin-top: 0rem;
  margin-bottom: 0rem;
}
.container-contents .container-contents-from .contents-from-inner .from-description {
  padding: 1rem 3rem;
}
.container-contents .container-contents-from .contents-from-inner .from-description p {
  font-size: 1rem;
  line-height: 1.8rem;
}
.container-contents .container-contents-from .contents-from-inner .from-description p span {
  display: block;
}
.container-contents .container-contents-from .contents-from-inner .from-description p {
  color: #555;
}
.container-contents .container-contents-from .contents-from-inner .from-description .from-description-sign {
  text-align: right;
  font-weight: bold;
  color: #555;
}
.container-contents .container-contents-about {
  background-color: #CAE7F2;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.container-contents .container-contents-about h2 {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 0.5rem;
  margin: 0;
  font-size: 1.7rem;
}
.container-contents .container-contents-about p.contents-about-inner-text {
  text-align: center;
  font-size: 0.9rem;
  padding-top: 0rem;
  font-weight: normal;
  margin-top: 0rem;
  margin-bottom: 2rem;
}
.container-contents .container-contents-about .contents-about-inner {
  max-width: 1000px;
  padding: 0 2rem;
  margin-right: auto;
  margin-left: auto;
}
.container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap {
  padding-top: 1rem;
  padding-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap .contents-about-item {
  display: flex;
  flex-direction: column;
  line-height: 1.7rem;
  padding-bottom: 1.5rem;
  margin-top: 2rem;
}
.container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap .contents-about-item:last-of-type {
  margin-right: 0;
}
.container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap .contents-about-item {
  justify-content: center;
  align-items: center;
}
.container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap .contents-about-item .contents-about-item-image {
  width: 170px;
  height: 170px;
  border-radius: 100px;
  background-color: #68CFC3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap .contents-about-item .contents-about-item-image i {
  font-size: 5rem;
  color: white;
}
.container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap .contents-about-item .contents-about-item-text {
  padding-right: 2.5rem;
  padding-top: 2rem;
  font-size: 0.9rem;
}
.container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap .contents-about-item .contents-about-item-text h3 {
  font-size: 1.4rem;
  margin-top: 0rem;
  text-align: center;
}
.container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap .contents-about-item .contents-about-item-text ul {
  list-style: none;
  font-weight: bold;
  text-indent: 2rem;
  padding: 1rem 0;
}
.container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap .contents-about-item:last-of-type .contents-about-item-text {
  padding-right: 0;
}
@media (max-width: 900px) {
  .container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap {
    padding: 0 1rem;
    padding-bottom: 2rem;
    flex-direction: column;
  }
  .container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap .contents-about-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 0rem;
  }
  .container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap .contents-about-item .contents-about-item-image img {
    height: 200px;
  }
  .container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap .contents-about-item .contents-about-item-text {
    padding-top: 2rem;
    padding-left: 0rem;
    padding-right: 0rem;
    text-align: center;
    width: 60%;
  }
  .container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap .contents-about-item .contents-about-item-text h3 {
    text-align: left;
  }
  .container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap .contents-about-item .contents-about-item-text p {
    text-align: left;
  }
}
@media (max-width: 600px) {
  .container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap {
    padding: 0 0rem;
    padding-bottom: 2rem;
  }
  .container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap .contents-about-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 0rem;
  }
  .container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap .contents-about-item .contents-about-item-image img {
    height: 200px;
  }
  .container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap .contents-about-item .contents-about-item-text {
    padding-top: 2rem;
    padding-left: 0rem;
    padding-right: 0rem;
    text-align: center;
    width: 100%;
  }
  .container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap .contents-about-item .contents-about-item-text h3 {
    text-align: center;
  }
  .container-contents .container-contents-about .contents-about-inner .contents-about-items-wrap .contents-about-item .contents-about-item-text p {
    text-align: left;
  }
}
.container-contents .container-contents-flow {
  background-color: white;
}
.container-contents .container-contents-flow .contens-flow-inner {
  max-width: 1000px;
  padding: 0 2rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.container-contents .container-contents-flow .contens-flow-inner h2 {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 0.5rem;
  margin: 0;
  font-size: 1.7rem;
}
.container-contents .container-contents-flow .contens-flow-inner p.contents-flow-inner-text {
  text-align: center;
  font-size: 0.9rem;
  padding-top: 0rem;
  font-weight: normal;
  margin-top: 0rem;
  margin-bottom: 2rem;
}
.container-contents .container-contents-flow .contens-flow-inner h3 {
  margin-top: 0rem;
}
.container-contents .container-contents-flow .contens-flow-inner .contents-flow-item {
  width: 100%;
  display: flex;
  line-height: 1.7rem;
  padding-bottom: 1.5rem;
  padding-right: 1rem;
  padding-left: 1rem;
  box-sizing: border-box;
  margin-top: 2rem;
  margin-bottom: 70px;
}
.container-contents .container-contents-flow .contens-flow-inner .contents-flow-item:last-of-type {
  margin-bottom: 0;
}
.container-contents .container-contents-flow .contens-flow-inner .contents-flow-item {
  justify-content: center;
  align-items: center;
}
.container-contents .container-contents-flow .contens-flow-inner .contents-flow-item .contents-flow-item-image {
  width: 20%;
  display: flex;
  align-items: center;
}
.container-contents .container-contents-flow .contens-flow-inner .contents-flow-item .contents-flow-item-image .contents-flow-item-image-wrap {
  width: 170px;
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: #1F91BE solid 1px;
}
.container-contents .container-contents-flow .contens-flow-inner .contents-flow-item .contents-flow-item-image .contents-flow-item-image-wrap i {
  font-size: 5rem;
  color: #1F91BE;
}
.container-contents .container-contents-flow .contens-flow-inner .contents-flow-item .contents-flow-item-text {
  padding-left: 2rem;
  width: 80%;
  font-size: 0.9rem;
}
.container-contents .container-contents-flow .contens-flow-inner .contents-flow-item .contents-flow-item-text h3 {
  font-size: 1.4rem;
}
.container-contents .container-contents-flow .contens-flow-inner .contents-flow-item .contents-flow-item-text ul {
  list-style: none;
  font-weight: bold;
  text-indent: 2rem;
  padding: 1rem 0;
}
@media (max-width: 600px) {
  .container-contents .container-contents-flow .contens-flow-inner {
    padding: 0 1rem;
    padding-bottom: 2rem;
  }
  .container-contents .container-contents-flow .contens-flow-inner .contents-flow-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 0rem;
  }
  .container-contents .container-contents-flow .contens-flow-inner .contents-flow-item .contents-flow-item-image {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .container-contents .container-contents-flow .contens-flow-inner .contents-flow-item .contents-flow-item-image .contents-flow-item-image-wrap img {
    height: 200px;
  }
  .container-contents .container-contents-flow .contens-flow-inner .contents-flow-item .contents-flow-item-text {
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
  }
  .container-contents .container-contents-flow .contens-flow-inner .contents-flow-item .contents-flow-item-text h3 {
    text-align: center;
  }
}
.container-contents .container-contents-commit {
  background-color: #f5f7f7;
  padding: 2rem;
  font-weight: bold;
}
.container-contents .container-contents-commit .contents-commit-inner {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 2rem;
  background-color: white;
  box-sizing: border-box;
}
.container-contents .container-contents-commit .contents-commit-inner .contents-commit-text {
  width: auto;
}
.container-contents .container-contents-commit .contents-commit-inner .contents-commit-text p {
  margin-block-start: 0.5em;
  margin-block-end: 0.5em;
  text-align: center;
  font-size: 1.5rem;
}
.container-contents .container-contents-commit .contents-commit-inner .contents-commit-buttons {
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.container-contents .container-contents-commit .contents-commit-inner .contents-commit-buttons .contents-commit-buttons-cost {
  border: #68CFC3 1px solid;
  box-shadow: 0 2px 3px rgba(104, 207, 195, 0.4);
  border-radius: 4px;
  color: #68CFC3;
  text-align: center;
  padding: 1rem;
  margin: auto 2rem;
  width: 200px;
  box-sizing: border-box;
}
.container-contents .container-contents-commit .contents-commit-inner .contents-commit-buttons .contents-commit-buttons-cost:hover {
  transition: 0.3s;
  border: #68CFC3 1px solid;
  background-color: #68CFC3;
  color: white;
}
.container-contents .container-contents-commit .contents-commit-inner .contents-commit-buttons .contents-commit-buttons-form {
  background-color: white;
  border: #E06A3B 1px solid;
  color: #E06A3B;
  text-align: center;
  box-shadow: 0 2px 3px rgba(224, 106, 59, 0.4);
  padding: 1rem;
  margin: auto 2rem;
  width: 200px;
  box-sizing: border-box;
  border-radius: 4px;
}
.container-contents .container-contents-commit .contents-commit-inner .contents-commit-buttons .contents-commit-buttons-form:hover {
  transition: 0.3s;
  border: #E06A3B 1px solid;
  background-color: #E06A3B;
  color: white;
}
.container-contents .container-contents-commit .contents-commit-inner .contents-commit-buttons .contents-commit-buttons-request {
  background-color: #68CFC3;
  border: #68CFC3 1px solid;
  color: white;
  text-align: center;
  box-shadow: 0 2px 3px rgba(104, 207, 195, 0.4);
  padding: 1rem;
  margin: auto 2rem;
  width: 200px;
  box-sizing: border-box;
  border-radius: 4px;
}
.container-contents .container-contents-commit .contents-commit-inner .contents-commit-buttons .contents-commit-buttons-request:hover {
  transition: 0.3s;
  border: #68CFC3 1px solid;
  background-color: white;
  color: #68CFC3;
}
@media (max-width: 700px) {
  .container-contents .container-contents-commit {
    padding: 2rem 1rem;
  }
  .container-contents .container-contents-commit .contents-commit-inner {
    flex-direction: column;
    text-align: center;
  }
  .container-contents .container-contents-commit .contents-commit-inner .contents-commit-buttons a {
    width: 100%;
  }
  .container-contents .container-contents-commit .contents-commit-inner .contents-commit-buttons a .contents-commit-buttons-cost {
    width: 100%;
    margin: 1rem auto;
    margin-bottom: auto;
  }
  .container-contents .container-contents-commit .contents-commit-inner .contents-commit-buttons a .contents-commit-buttons-form {
    width: 100%;
    margin: 1rem auto;
    margin-bottom: auto;
  }
}
.container-contents .container-contents-archive {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
}
.container-contents .container-contents-archive .container-contents-archive-header {
  position: relative;
  box-sizing: border-box;
  margin-bottom: 70px;
}
.container-contents .container-contents-archive .container-contents-archive-header img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 350px;
}
.container-contents .container-contents-archive .container-contents-archive-header .archive-header-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container-contents .container-contents-archive .container-contents-archive-header .archive-header-text {
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents .container-contents-archive .container-contents-archive-header .archive-header-text .archive-header-text-wrap {
  width: 900px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 600px) {
  .container-contents .container-contents-archive .container-contents-archive-header .archive-header-text .archive-header-text-wrap {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents .container-contents-archive .container-contents-archive-header .archive-header-text .archive-header-text-wrap .archive-header-text-title {
  font-size: 50px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 0;
  font-weight: normal;
}
.container-contents .container-contents-archive .container-contents-archive-header .archive-header-text .archive-header-text-wrap .archive-header-text-subtitle {
  margin-top: 0px;
  padding-bottom: 10px;
  border-bottom: solid 2px var(--theme-orange-color);
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: normal;
  width: 200px;
  text-align: center;
}
.container-contents .container-contents-archive .container-contents-archive-header .archive-header-text .archive-header-text-wrap .archive-header-text-description {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}
.container-contents .container-contents-archive .archive-items {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  margin-bottom: 70px;
}
.container-contents .container-contents-archive .archive-items .archive-items-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
}
.container-contents .container-contents-archive .archive-items .archive-items-subtitle {
  font-weight: normal;
  margin: 0;
  font-size: 12px;
  text-align: center;
}
.container-contents .container-contents-archive .archive-items .archive-items-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-archive .archive-items .archive-items-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
.container-contents .container-contents-archive .archive-items .archive-items-wrap .archive-item-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 330px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-archive .archive-items .archive-items-wrap .archive-item-wrap {
    height: auto;
  }
}
.container-contents .container-contents-archive .archive-items .archive-items-wrap .archive-item-wrap .archive-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-archive .archive-items .archive-items-wrap .archive-item-wrap .archive-item {
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
    padding: 0;
  }
}
.container-contents .container-contents-archive .archive-items .archive-items-wrap .archive-item-wrap .archive-item .archive-item-image {
  height: 180px;
  width: 100%;
}
@media (max-width: 600px) {
  .container-contents .container-contents-archive .archive-items .archive-items-wrap .archive-item-wrap .archive-item .archive-item-image {
    height: 100%;
    width: auto;
  }
}
.container-contents .container-contents-archive .archive-items .archive-items-wrap .archive-item-wrap .archive-item .archive-item-image img {
  width: 100%;
  height: 100%;
}
@media (max-width: 600px) {
  .container-contents .container-contents-archive .archive-items .archive-items-wrap .archive-item-wrap .archive-item .archive-item-image img {
    width: 120px;
    height: 100px;
  }
}
.container-contents .container-contents-archive .archive-items .archive-items-wrap .archive-item-wrap .archive-item .archive-item-image img {
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 5px 5px var(--theme-orange-color);
}
.container-contents .container-contents-archive .archive-items .archive-items-wrap .archive-item-wrap .archive-item .archive-item-text {
  width: 100%;
}
@media (max-width: 600px) {
  .container-contents .container-contents-archive .archive-items .archive-items-wrap .archive-item-wrap .archive-item .archive-item-text {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    height: 100px;
  }
}
.container-contents .container-contents-archive .archive-items .archive-items-wrap .archive-item-wrap .archive-item .archive-item-text .archive-item-text-date {
  font-size: 12px;
  color: #ccc;
  margin-top: 10px;
  margin-bottom: 7px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-archive .archive-items .archive-items-wrap .archive-item-wrap .archive-item .archive-item-text .archive-item-text-date {
    margin-top: 0px;
  }
}
.container-contents .container-contents-archive .archive-items .archive-items-wrap .archive-item-wrap .archive-item .archive-item-text .archive-item-text-title {
  font-size: 14px;
  color: black;
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .container-contents .container-contents-archive .archive-items .archive-items-wrap .archive-item-wrap .archive-item .archive-item-text .archive-item-text-title {
    font-size: 12px;
  }
}
.container-contents .container-contents-archive .archive-contact {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 70px;
  margin-bottom: 70px;
}
.container-contents .container-contents-archive .archive-contact .archive-contact-title-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--theme-green-vivid-color);
  font-size: 30px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .container-contents .container-contents-archive .archive-contact .archive-contact-title-wrap {
    font-size: 20px;
  }
}
.container-contents .container-contents-archive .archive-contact .archive-contact-title-wrap .archive-contact-title {
  margin-bottom: 10px;
  text-align: center;
}
.container-contents .container-contents-archive .archive-contact .archive-contact-description {
  margin-top: 60px;
  text-align: center;
  color: var(--theme-green-vivid-color);
  font-weight: bold;
  font-size: 30px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-archive .archive-contact .archive-contact-description {
    font-size: 20px;
  }
}
.container-contents .container-contents-archive .contents-archive-inner {
  max-width: 1000px;
  padding: 0;
  margin-right: auto;
  margin-left: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: white;
  display: flex;
}
.container-contents .container-contents-archive .contents-archive-inner .contents-archive-contents {
  width: 70%;
  padding-right: 2rem;
}
.container-contents .container-contents-archive .contents-archive-inner .contents-archive-contents h1 {
  margin-top: 0;
  margin-left: 1rem;
  margin-right: 1rem;
  /*width: 100%;*/
  background-color: #efefef;
  font-size: 1rem;
  line-height: 3rem;
  padding-left: 2rem;
  box-sizing: border-box;
}
.container-contents .container-contents-archive .contents-archive-inner .contents-archive-contents .contents-archive-item {
  border-bottom: #ccc 1px solid;
  display: flex;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  justify-content: space-between;
}
.container-contents .container-contents-archive .contents-archive-inner .contents-archive-contents .contents-archive-item .contents-archive-item-img-wrap {
  width: 25%;
  height: 150px;
}
.container-contents .container-contents-archive .contents-archive-inner .contents-archive-contents .contents-archive-item .contents-archive-item-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container-contents .container-contents-archive .contents-archive-inner .contents-archive-contents .contents-archive-item .contents-archive-item-contents-wrap {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 1rem;
  width: 75%;
}
.container-contents .container-contents-archive .contents-archive-inner .contents-archive-contents .contents-archive-item .contents-archive-item-contents-wrap .contents-archive-item-date {
  margin-top: 0;
  margin-bottom: auto;
  color: #000000;
  font-size: 0.8rem;
}
.container-contents .container-contents-archive .contents-archive-inner .contents-archive-contents .contents-archive-item .contents-archive-item-contents-wrap h2 {
  color: #000000;
}
.container-contents .container-contents-archive .contents-archive-inner .contents-archive-contents .contents-archive-item .contents-archive-item-contents-wrap .contents-archive-item-author-wrap {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.container-contents .container-contents-archive .contents-archive-inner .contents-archive-contents .contents-archive-item .contents-archive-item-contents-wrap .contents-archive-item-author-wrap .item-author-image {
  width: 50px;
  height: 50px;
}
.container-contents .container-contents-archive .contents-archive-inner .contents-archive-contents .contents-archive-item .contents-archive-item-contents-wrap .contents-archive-item-author-wrap .item-author-image img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
  width: 100%;
  height: 100%;
}
.container-contents .container-contents-archive .contents-archive-inner .contents-archive-contents .contents-archive-item .contents-archive-item-contents-wrap .contents-archive-item-author-wrap .item-author-name {
  padding-right: 1rem;
  color: #000000;
}
@media (max-width: 600px) {
  .container-contents .container-contents-archive .contents-archive-inner .contents-archive-contents .contents-archive-item .contents-archive-item-img-wrap {
    width: 75px;
    height: 75px;
  }
  .container-contents .container-contents-archive .contents-archive-inner .contents-archive-contents .contents-archive-item .contents-archive-item-img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .container-contents .container-contents-archive .contents-archive-inner .contents-archive-contents .contents-archive-item .contents-archive-item-contents-wrap {
    box-sizing: border-box;
    margin-left: 0;
    padding-left: 1rem;
  }
  .container-contents .container-contents-archive .contents-archive-inner .contents-archive-contents .contents-archive-item .contents-archive-item-contents-wrap .contents-archive-item-date {
    font-size: 0.8rem;
  }
  .container-contents .container-contents-archive .contents-archive-inner .contents-archive-contents .contents-archive-item .contents-archive-item-contents-wrap h2 {
    font-size: 1rem;
    margin: 0;
  }
  .container-contents .container-contents-archive .contents-archive-inner .contents-archive-contents .contents-archive-item .contents-archive-item-contents-wrap .contents-archive-item-author-wrap {
    display: none;
  }
}
@media (max-width: 900px) {
  .container-contents .container-contents-archive .contents-archive-inner .contents-archive-contents {
    padding-right: 0;
    width: 100%;
  }
  .container-contents .container-contents-archive .contents-archive-inner .contents-article-sidebar {
    display: none;
  }
}
.container-contents {
  /*.container-contents-blog{
      padding-top: 5rem;
      padding-bottom: 5rem;
      h2{
          //color: #68CFC3;
          //text-align: center;
          //font-size:1.7rem;
          //margin-bottom: 0.5rem;
      }
      p{
          //color: #68CFC3;
          text-align: center;
          font-size: 0.9rem;
          padding-top:0rem;
          font-weight: normal;
          margin-top:0rem;
          margin-bottom: 2rem;
      }
      .contents-blog-wrap{
          .contents-blog-inner{
              max-width: 1000px;
              padding:0;
              margin-right:auto;
              margin-left:auto;
              padding-top: 2rem;
              background-color: white;
              padding:0 1rem;
              .contents-blog-grid-wrap{
                  display: grid;
                  grid-template-columns:repeat(auto-fill, minmax(240px, 1fr));
                  a{
                      display: flex;
                      justify-content: center;
                      .contents-blog-item{
                          display: flex;
                          flex-direction: column;
                          width: 200px;
                          margin-bottom: 2rem;
                          .contents-blog-item-category{
                              background-color: #68CFC3;
                              color: white;
                              font-size: 0.8rem;
                              font-weight: bold;
                              padding:0.3rem;
                          }
                          .contents-blog-item-img-wrap{
                              position: relative;
                              img{
                                  width: 100%;
                                  height: 130px;
                                  object-fit: cover;
                              }
                              .contents-blog-item-category{
                                  position: absolute;
                                  top:0;
                                  left: 0;
                              }
                          }
                          .contents-blog-item-contents-wrap{
                              height: 100%;
                              .contents-blog-item-title{
                                  //color: #706460;
                                  color:black;
                                  font-size: 0.8rem;
                                  font-weight: bold;
                              }
                              .contents-blog-item-date{
                                  //color: #706460;
                                  color:black;
                                  font-size: 0.8rem;
                              }
                          }
                      }
                  }
              }
          }

          @media(max-width: 600px){
              margin-top:0;
              h2{
                  display: none;
              }
              .contents-blog-inner{
                  .contents-blog-grid-wrap{
                      display: flex;
                      flex-direction: column;
                      width: 100%;
                      padding-bottom: 0;
                      padding-top: 0;
                      a{

                          justify-content: flex-start;
                          .contents-blog-item{
                              display: flex;
                              flex-direction: row;
                              width: 100%;
                              border-top:#f5f7f7 1px solid;
                              margin-bottom: 0;
                              height: 130px;

                              .contents-blog-item-category{
                                  display: none;
                              }
                              .contents-blog-item-img-wrap{
                                  position: static;
                                  width: 25%;
                                  margin:15px;
                                  img{
                                      width: 90px;
                                      height: 60px;
                                      object-fit: cover;
                                  }
                              }
                              .contents-blog-item-contents-wrap{
                                  display: flex;
                                  flex-direction: column;
                                  width: 75%;
                                  .contents-blog-item-title{
                                      margin:15px;
                                  }
                                  .contents-blog-item-date{
                                      text-align: right;
                                      margin-right:15px;
                                      margin-top:auto;
                                      margin-bottom:15px;
                                      color: #777;
                                  }
                              }
                          }
                      }
                  }
              }
          }
      }
  }*/
}
.container-contents .container-contents-services .container-contents-services-header {
  position: relative;
  box-sizing: border-box;
  margin-bottom: 70px;
}
.container-contents .container-contents-services .container-contents-services-header img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 350px;
}
.container-contents .container-contents-services .container-contents-services-header .services-header-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .container-contents-services-header .services-header-text {
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents .container-contents-services .container-contents-services-header .services-header-text .services-header-text-wrap {
  width: 900px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .container-contents-services-header .services-header-text .services-header-text-wrap {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents .container-contents-services .container-contents-services-header .services-header-text .services-header-text-wrap .services-header-text-title {
  font-size: 50px;
  text-align: center;
  margin-top: 40px;
}
.container-contents .container-contents-services .container-contents-services-header .services-header-text .services-header-text-wrap .services-header-text-subtitle {
  margin-top: 0px;
  padding-bottom: 10px;
  border-bottom: solid 2px var(--theme-orange-color);
  font-size: 12px;
  font-weight: normal;
  width: 200px;
  text-align: center;
}
.container-contents .container-contents-services .container-contents-services-header .services-header-text .services-header-text-wrap .services-header-text-description {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}
.container-contents .container-contents-services .services-menu {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  margin-bottom: 70px;
}
.container-contents .container-contents-services .services-menu .services-menu-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
}
.container-contents .container-contents-services .services-menu h2 {
  font-weight: normal;
  margin: 0;
  font-size: 12px;
  text-align: center;
}
.container-contents .container-contents-services .services-menu .services-menu-items-wrap {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-menu .services-menu-items-wrap {
    flex-direction: column;
  }
}
.container-contents .container-contents-services .services-menu .services-menu-items-wrap .menu-item {
  box-sizing: border-box;
  width: 220px;
  border: solid #ccc 1px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-menu .services-menu-items-wrap .menu-item {
    width: 100%;
    margin-bottom: 30px;
  }
}
.container-contents .container-contents-services .services-menu .services-menu-items-wrap .menu-item .menu-item-title {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
}
.container-contents .container-contents-services .services-menu .services-menu-items-wrap .menu-item .menu-item-img {
  width: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
}
.container-contents .container-contents-services .services-menu .services-menu-items-wrap .menu-item .menu-item-pages {
  margin-top: 10px;
  align-items: center;
  font-size: 12px;
  background-color: var(--theme-orange-color);
  font-weight: bold;
  color: white;
  padding: 5px 30px;
  border-radius: 30px;
}
.container-contents .container-contents-services .services-menu .services-menu-items-wrap .menu-item .menu-item-cost {
  margin-top: 10px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
.container-contents .container-contents-services .services-menu .services-menu-items-wrap .menu-item .menu-item-description {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px #ccc solid;
  width: 100%;
}
.container-contents .container-contents-services .services-menu .services-menu-items-wrap .menu-item .menu-item-list-wrap {
  padding-top: 20px;
}
.container-contents .container-contents-services .services-menu .services-menu-items-wrap .menu-item .menu-item-list-wrap .menu-item-list {
  list-style: none;
}
.container-contents .container-contents-services .services-menu .services-menu-items-wrap .menu-item .menu-item-list-wrap .menu-item-list .menu-item-list-li {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 20px;
}
.container-contents .container-contents-services .services-menu .services-menu-items-wrap .menu-item .menu-item-list-wrap .menu-item-list .menu-item-list-li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 12px;
  font-weight: 900;
  color: var(--theme-orange-color);
}
.container-contents .container-contents-services .services-menu .services-menu-items-wrap .menu-item .menu-item-list-wrap .menu-item-list .menu-item-list-li.disable::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00d";
  font-size: 12px;
  font-weight: 900;
  color: #ccc;
}
.container-contents .container-contents-services .services-menu .services-menu-items-wrap .menu-item .menu-item-list-wrap .menu-item-list .menu-item-list-li .menu-item-list-child {
  list-style: none;
}
.container-contents .container-contents-services .services-menu .services-menu-items-wrap .menu-item .menu-item-list-wrap .menu-item-list .menu-item-list-li .menu-item-list-child .menu-item-list-child-li {
  font-size: 12px;
  font-weight: normal;
  margin-top: 5px;
}
.container-contents .container-contents-services .services-menu .services-menu-items-wrap .menu-item .menu-item-list-wrap .menu-item-list .menu-item-list-li .menu-item-list-child .menu-item-list-child-li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 12px;
  font-weight: 900;
  margin-left: 15px;
  margin-right: 3px;
  color: var(--theme-orange-color);
}
.container-contents .container-contents-services .services-menu .services-menu-items-wrap .menu-item .menu-item-list-wrap .menu-item-list .menu-item-list-li .menu-item-list-child .menu-item-list-child-li.disable::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00d";
  font-size: 12px;
  font-weight: 900;
  margin-left: 15px;
  margin-right: 3px;
  color: #ccc;
}
.container-contents .container-contents-services .services-menu .services-menu-items-wrap .menu-item .contents-services-menu-button-area {
  margin-top: auto;
  margin-bottom: 0;
}
.container-contents .container-contents-services .services-reasons {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
}
.container-contents .container-contents-services .services-reasons .services-reasons-title {
  text-align: center;
  font-size: 36px;
  padding-bottom: 5px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .services-reasons-title {
    background: linear-gradient(to bottom, #fff 50%, var(--theme-green-color) 50%);
  }
}
.container-contents .container-contents-services .services-reasons h2 {
  font-weight: normal;
  margin: 0;
  font-size: 12px;
  text-align: center;
  padding-bottom: 50px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons h2 {
    background-color: var(--theme-green-color);
    padding-bottom: 0;
  }
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap {
  padding-bottom: 70px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .reasons-items-wrap {
    background-color: var(--theme-green-color);
  }
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left {
  background-color: var(--theme-green-color);
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
  z-index: -50;
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left {
    flex-direction: column;
    margin-top: 0;
    padding-top: 50px;
    margin-bottom: 0px;
  }
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left .reasons-item-left-padding-left {
  margin-left: 0;
  flex: 1;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left .reasons-item-left-padding-left {
    display: none;
  }
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left .reasons-item-contents-left {
  max-width: 1000px;
  margin-right: 0;
  margin-left: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 350px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left .reasons-item-contents-left {
    flex-direction: column;
    width: 100%;
    height: auto;
  }
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-text-left {
  padding-left: 1rem;
  width: 35%;
  box-sizing: border-box;
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-text-left {
    width: 100%;
    padding-right: 1rem;
    padding-top: 0;
  }
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-text-left .reasons-item-text-title-left {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 28px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-text-left .reasons-item-text-title-left {
    text-align: center;
  }
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-text-left .reasons-item-text-description-left {
  font-size: 16px;
  margin-top: 20px;
  line-height: 30px;
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-image-left {
  width: 65%;
  padding-right: 1rem;
  background-color: white;
  padding-left: 50px;
  box-sizing: border-box;
  z-index: 100;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-image-left {
    width: 100%;
    padding-left: 1rem;
    background-color: var(--theme-green-color);
  }
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-image-left .reasons-item-image-wrap-left {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-image-left .reasons-item-image-wrap-left {
    height: auto;
  }
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-image-left .reasons-item-image-wrap-left img {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-image-left .reasons-item-image-wrap-left img {
    height: auto;
  }
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left .reasons-item-contents-left .reasons-item-image-left .reasons-item-image-wrap-left .reasons-item-image-shadow-left {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 100%;
  height: 100%;
  background-color: var(--theme-orange-color);
  z-index: -10;
  padding-left: 50px;
  box-sizing: border-box;
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left .reasons-item-right-padding-left {
  background-color: white;
  margin-right: 0;
  flex: 1;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-left .reasons-item-right-padding-left {
    display: none;
  }
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right {
  background-color: var(--theme-green-color);
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
  z-index: -50;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right {
    flex-direction: column;
    margin-top: 0;
    padding-top: 50px;
    margin-bottom: 0px;
  }
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right .reasons-item-left-padding-right {
  background-color: white;
  margin-right: 0;
  flex: 1;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right .reasons-item-left-padding-right {
    display: none;
  }
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right .reasons-item-contents-right {
  max-width: 1000px;
  margin-right: 0;
  margin-left: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 350px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right .reasons-item-contents-right {
    flex-direction: column-reverse;
    width: 100%;
    height: auto;
  }
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-text-right {
  padding-right: 1rem;
  width: 35%;
  box-sizing: border-box;
  padding-top: 30px;
  padding-left: 30px;
  padding-bottom: 30px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-text-right {
    width: 100%;
    padding-left: 1rem;
    padding-top: 0;
  }
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-text-right .reasons-item-text-title-right {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 28px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-text-right .reasons-item-text-title-right {
    text-align: center;
  }
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-text-right .reasons-item-text-description-right {
  font-size: 16px;
  margin-top: 20px;
  line-height: 30px;
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-image-right {
  width: 65%;
  padding-left: 1rem;
  background-color: white;
  padding-right: 50px;
  box-sizing: border-box;
  z-index: 100;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-image-right {
    width: 100%;
    padding-right: 1rem;
    background-color: var(--theme-green-color);
  }
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-image-right .reasons-item-image-wrap-right {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-image-right .reasons-item-image-wrap-right {
    height: auto;
  }
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-image-right .reasons-item-image-wrap-right img {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-image-right .reasons-item-image-wrap-right img {
    height: auto;
  }
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right .reasons-item-contents-right .reasons-item-image-right .reasons-item-image-wrap-right .reasons-item-image-shadow-right {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 100%;
  height: 100%;
  background-color: var(--theme-orange-color);
  z-index: -10;
  padding-left: 50px;
  box-sizing: border-box;
}
.container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right .reasons-item-right-padding-right {
  margin-left: 0;
  flex: 1;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-reasons .reasons-items-wrap .reasons-item-right .reasons-item-right-padding-right {
    display: none;
  }
}
.container-contents .container-contents-services .services-making {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  margin-bottom: 70px;
}
.container-contents .container-contents-services .services-making .services-making-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
  margin-top: 70px;
}
.container-contents .container-contents-services .services-making .services-making-subtitle {
  font-size: 12px;
  text-align: center;
  font-weight: normal;
  margin: 0;
}
.container-contents .container-contents-services .services-making .services-making-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container-contents .container-contents-services .services-making .services-making-header .services-making-header-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container-contents .container-contents-services .services-making .services-making-header .services-making-header-text .services-making-header-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.container-contents .container-contents-services .services-making .services-making-header .services-making-header-text .services-making-header-title .vivid {
  color: var(--theme-orange-color);
}
.container-contents .container-contents-services .services-making .services-making-header .services-making-header-text .services-making-header-comment {
  font-size: 18px;
  text-align: center;
  line-height: 36px;
}
.container-contents .container-contents-services .services-making .services-making-header .services-making-header-image {
  width: 800px;
  height: auto;
  position: relative;
  margin-top: 70px;
  margin-bottom: 70px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-making .services-making-header .services-making-header-image {
    width: 100%;
  }
}
.container-contents .container-contents-services .services-making .services-making-header .services-making-header-image img {
  width: 100%;
}
.container-contents .container-contents-services .services-making .services-making-header .services-making-header-image .services-making-header-image-shadow {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 100%;
  height: 100%;
  background-color: var(--theme-orange-color);
  z-index: -10;
  padding-left: 50px;
  box-sizing: border-box;
}
.container-contents .container-contents-services .services-making .making-item {
  margin-bottom: 50px;
}
.container-contents .container-contents-services .services-making .making-item .making-item-title {
  box-shadow: 5px 5px var(--theme-orange-color);
  border: solid 1px var(--theme-orange-color);
  margin-bottom: 10px;
  font-size: 26px;
  color: var(--theme-orange-color);
  padding: 7px 10px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-making .making-item .making-item-title {
    width: 100%;
    text-align: center;
  }
}
.container-contents .container-contents-services .services-making .making-item .making-item-subtitle {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--theme-orange-color);
  font-weight: bold;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services .services-making .making-item .making-item-subtitle {
    text-align: center;
  }
}
.container-contents .container-contents-services .services-making .making-item .making-item-description {
  font-size: 18px;
  line-height: 36px;
}
.container-contents .container-contents-services-page {
  padding-top: 2rem;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents h2 {
  margin-top: 1rem;
  text-align: center;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .services-page-contents-description {
  font-size: 0.9rem;
  text-align: center;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-list-wrap {
  background-color: #f5f7f7;
  margin-top: 3rem;
  padding-bottom: 3rem;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-list-wrap .article-services-list-inner {
  position: relative;
  top: -2rem;
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-around;
  justify-items: center;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-list-wrap .article-services-list-inner .article-services-list-item {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-list-wrap .article-services-list-inner .article-services-list-item a {
  color: black;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-list-wrap .article-services-list-inner .article-services-list-item a:hover .article-services-list-item-image-warp img {
  transition: 0.3s;
  transform: scale(1.2, 1.2);
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-list-wrap .article-services-list-inner .article-services-list-item a .article-services-list-item-image-warp {
  display: flex;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-list-wrap .article-services-list-inner .article-services-list-item a .article-services-list-item-image-warp img {
  height: 150px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-list-wrap .article-services-list-inner .article-services-list-item a .article-services-list-item-contents {
  font-size: 1rem;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-list-wrap .article-services-list-inner .article-services-list-item a .article-services-list-item-contents h3 {
  padding-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
  margin: 0;
  font-weight: bold;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-list-wrap .article-services-list-inner .article-services-list-item a .article-services-list-item-contents p {
  display: none;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 900px) {
  .container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents {
    padding-bottom: 1rem;
  }
  .container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-list-wrap {
    padding-top: 2rem;
    padding-bottom: 1rem;
    margin-top: 0rem;
  }
  .container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-list-wrap .article-services-list-inner {
    display: flex;
    flex-direction: column;
    top: 0rem;
  }
  .container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-list-wrap .article-services-list-inner .article-services-list-item {
    margin-right: 0rem;
    margin-left: 0rem;
    width: 100%;
    align-items: start;
    padding-bottom: 2rem;
  }
  .container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-list-wrap .article-services-list-inner .article-services-list-item a {
    display: flex;
    width: 100%;
  }
  .container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-list-wrap .article-services-list-inner .article-services-list-item a .article-services-list-item-image-warp img {
    height: 100px;
    width: 150px;
  }
  .container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-list-wrap .article-services-list-inner .article-services-list-item a .article-services-list-item-contents {
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-list-wrap .article-services-list-inner .article-services-list-item a .article-services-list-item-contents h3 {
    padding-top: 0;
    font-size: 1.1rem;
  }
  .container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-list-wrap .article-services-list-inner .article-services-list-item a .article-services-list-item-contents p {
    display: block;
    text-align: left;
    line-height: auto;
  }
}
@media (max-width: 900px) and (max-width: 600px) {
  .container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-list-wrap .article-services-list-inner .article-services-list-item a .article-services-list-item-contents p {
    font-size: 0.8rem;
    line-height: 1.3rem;
  }
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-wrap {
  box-sizing: border-box;
  padding-top: 2rem;
  background-color: #f5f7f7;
  padding-bottom: 5rem;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-wrap h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-wrap .services-page-contents-description {
  font-size: 0.9rem;
  text-align: center;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-wrap .article-services-inner {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 4rem;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-wrap .article-services-inner .article-services-item-wrap {
  background-color: white;
  display: flex;
  margin-bottom: 4rem;
  align-items: flex-end;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-wrap .article-services-inner .article-services-item-wrap:hover .article-services-item-img .article-services-item-img-wrap img {
  transition: 0.3s;
  transform: scale(1.2, 1.2);
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-wrap .article-services-inner .article-services-item-wrap .article-services-item-img {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -2rem;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-wrap .article-services-inner .article-services-item-wrap .article-services-item-img .article-services-item-img-wrap {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  width: 80%;
  overflow: hidden;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-wrap .article-services-inner .article-services-item-wrap .article-services-item-img .article-services-item-img-wrap img {
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-wrap .article-services-inner .article-services-item-wrap .article-services-item-description {
  box-sizing: border-box;
  width: 50%;
  padding: 2rem;
  padding-right: 3rem;
  display: flex;
  flex-direction: column;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-wrap .article-services-inner .article-services-item-wrap .article-services-item-description h3 {
  margin-top: 0rem;
  margin-bottom: 0rem;
  text-align: right;
}
.container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-wrap .article-services-inner .article-services-item-wrap .article-services-item-description p {
  color: black;
  line-height: 1.7rem;
  font-size: 0.9rem;
}
@media (max-width: 600px) {
  .container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-wrap .article-services-inner .article-services-item-wrap {
    flex-direction: column;
  }
  .container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-wrap .article-services-inner .article-services-item-wrap .article-services-item-img {
    width: 100%;
  }
  .container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-wrap .article-services-inner .article-services-item-wrap .article-services-item-description {
    width: 100%;
    flex-direction: column-reverse;
  }
  .container-contents .container-contents-services-page .contents-services-page-inner .services-page-contents .article-services-wrap .article-services-inner .article-services-item-wrap .article-services-item-description h3 {
    text-align: center;
    padding-top: 1rem;
  }
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents h2 {
  padding-top: 2rem;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents h3 {
  padding-top: 2rem;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents h3 i {
  color: #1F91BE;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents p {
  line-height: 1.9rem;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-wrap {
  background-color: #f5f7f7;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-wrap .menu-contents-plan {
  max-width: 1000px;
  padding: 1rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-wrap .menu-contents-plan .menu-contents-plan-image-holder {
  width: 50%;
  display: flex;
  align-items: center;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-wrap .menu-contents-plan .menu-contents-plan-image-holder .menu-contents-plan-image-wrap {
  width: 80%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-wrap .menu-contents-plan .menu-contents-plan-image-holder .menu-contents-plan-image-wrap img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-wrap .menu-contents-plan .menu-contents-plan-description {
  width: 50%;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-wrap .menu-contents-plan .menu-contents-plan-description table {
  font-size: 0.9rem;
  border-spacing: 0;
  width: 100%;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-wrap .menu-contents-plan .menu-contents-plan-description table tr td {
  border-bottom: #aaa 1px solid;
  padding: 1rem 2rem;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-wrap .menu-contents-plan .menu-contents-plan-description table tr td:first-child {
  font-weight: bold;
}
@media (max-width: 900px) {
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-wrap .menu-contents-plan .menu-contents-plan-description table {
    font-size: 0.8rem;
    border-spacing: 0;
    width: 100%;
  }
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-wrap .menu-contents-plan .menu-contents-plan-description table tr td {
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 600px) {
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-wrap .menu-contents-plan h2, .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-wrap .menu-contents-plan h3 {
    padding-top: 1rem;
  }
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-wrap .menu-contents-plan {
    flex-direction: column;
  }
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-wrap .menu-contents-plan .menu-contents-plan-image-holder {
    width: 100%;
    justify-content: center;
  }
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-wrap .menu-contents-plan .menu-contents-plan-description {
    width: 100%;
  }
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-text-wrap {
  background-color: white;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-text-wrap .menu-contents-plan-text {
  max-width: 1000px;
  padding: 1rem;
  margin-right: auto;
  margin-left: auto;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-text-wrap .menu-contents-plan-text h2 {
  text-align: center;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-text-wrap .menu-contents-plan-text h3 {
  padding-top: 1rem;
  margin-top: 0;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-text-wrap .menu-contents-plan-text .menu-contents-plan-text-description {
  text-align: center;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-text-wrap .menu-contents-plan-text .menu-contents-plan-items-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-text-wrap .menu-contents-plan-text .menu-contents-plan-items-wrap .menu-contents-plan-item {
  width: 40%;
  padding: 2rem;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-text-wrap .menu-contents-plan-text .menu-contents-plan-items-wrap {
    flex-direction: column;
  }
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .menu-contents-plan-text-wrap .menu-contents-plan-text .menu-contents-plan-items-wrap .menu-contents-plan-item {
    width: 100%;
    padding: 1rem;
  }
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap {
  max-width: 1000px;
  padding: 1rem;
  margin-right: auto;
  margin-left: auto;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-wrap-description {
  padding-top: 3rem;
  text-align: center;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-sample-wrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 900px) {
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-sample-wrap {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-sample-wrap .reasonable-sample {
  display: flex;
  justify-content: space-around;
  padding-bottom: 3rem;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-sample-wrap .reasonable-sample .reasonable-sample-image {
  padding-right: 1rem;
  width: 50%;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-sample-wrap .reasonable-sample .reasonable-sample-image img {
  box-sizing: border-box;
  /*position: relative;
  top:-100px;*/
  width: 100%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-sample-wrap .reasonable-sample .reasonable-sample-text {
  width: 50%;
  padding-left: 1rem;
  text-align: left;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-sample-wrap .reasonable-sample .reasonable-sample-text i {
  color: #1F91BE;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-sample-wrap .reasonable-sample .reasonable-sample-text h2 {
  font-size: 1.7rem;
  margin-top: 0;
  padding-top: 0;
  text-align: right;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-sample-wrap .reasonable-sample .reasonable-sample-text p {
  line-height: 1.7rem;
  margin: 0;
  padding-bottom: 1rem;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-sample-wrap .reasonable-sample .reasonable-sample-text .reasonable-sample-text-subtitle {
  font-size: 1.7rem;
  line-height: 3rem;
  font-weight: bold;
  padding-bottom: 2rem;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-sample-wrap .reasonable-sample .reasonable-sample-text .reasonable-sample-text-contents .reasonable-sample-text-contents-checks ul {
  list-style: none;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2rem;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-sample-wrap .reasonable-sample .reasonable-sample-text .reasonable-sample-text-contents .reasonable-sample-text-contents-checks ul li {
  text-align: right;
  padding: 1rem;
}
@media (max-width: 900px) {
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-sample-wrap .reasonable-sample {
    flex-direction: column;
    padding-bottom: 1rem;
  }
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-sample-wrap .reasonable-sample .reasonable-sample-image {
    width: 100%;
    padding-right: 0;
  }
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-sample-wrap .reasonable-sample .reasonable-sample-text {
    width: 100%;
    padding-left: 0;
  }
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-sample-wrap .reasonable-sample .reasonable-sample-text h2 {
    font-size: 1.3rem;
    margin-top: 2rem;
    padding-top: 0;
    text-align: center;
  }
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-sample-wrap .reasonable-sample .reasonable-sample-text .reasonable-sample-text-contents .reasonable-sample-text-contents-checks ul {
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 2rem;
  }
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-sample-wrap .reasonable-sample .reasonable-sample-text .reasonable-sample-text-contents .reasonable-sample-text-contents-checks ul li {
    text-align: center;
    padding: 1rem;
  }
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-flow {
  padding-bottom: 5rem;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-flow h2 {
  text-align: center;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-flow .reasonable-flow-description {
  text-align: center;
  font-size: 0.9rem;
  padding-bottom: 1rem;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-flow .reasonable-flow-item {
  transition: 0.3s;
  display: flex;
  align-items: flex-start;
  background-color: #f5f7f7;
  border: #f5f7f7 solid 1px;
  padding: 2rem;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-flow .reasonable-flow-item .flow-item-number {
  font-size: 2rem;
  width: 10%;
  color: #1F91BE;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-flow .reasonable-flow-item .flow-item-title {
  font-weight: bold;
  width: 20%;
  color: #1F91BE;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-flow .reasonable-flow-item .flow-item-contents {
  width: 70%;
  font-size: 0.9rem;
  line-height: 1.5rem;
  padding-left: 2rem;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-flow .reasonable-flow-item:hover {
  transition: 0.3s;
  border: #777 solid 1px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-flow .reasonable-flow-item {
    flex-direction: column;
  }
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-flow .reasonable-flow-item .flow-item-number,
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-flow .reasonable-flow-item .flow-item-title,
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-flow .reasonable-flow-item .flow-item-contents {
    width: 100%;
  }
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-flow .reasonable-flow-item .flow-item-title {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-flow .reasonable-flow-item .flow-item-contents {
    padding-left: 0;
  }
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .reasonable-wrap .reasonable-flow .flow-arrow {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  color: #1F91BE;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .white-paper-wrap {
  background-color: #f5f7f7;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .white-paper-wrap h2 {
  text-align: center;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .white-paper-wrap .white-paper-description {
  font-size: 0.9rem;
  text-align: center;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .white-paper-wrap .white-paper {
  max-width: 1000px;
  padding: 1rem;
  margin-right: auto;
  margin-left: auto;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .white-paper-wrap .white-paper .white-paper-item-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  padding-top: 3rem;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .white-paper-wrap .white-paper .white-paper-item-wrap .white-paper-item {
  transition: 0.3s;
  box-sizing: border-box;
  margin-right: 1rem;
  margin-bottom: 1rem;
  border: solid 1px white;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .white-paper-wrap .white-paper .white-paper-item-wrap .white-paper-item:nth-child(2n) {
  margin-right: 0;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .white-paper-wrap .white-paper .white-paper-item-wrap .white-paper-item {
  background-color: white;
  padding: 2rem;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .white-paper-wrap .white-paper .white-paper-item-wrap .white-paper-item h3 {
  color: #1F91BE;
  padding-top: 0;
  margin-top: 0;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .white-paper-wrap .white-paper .white-paper-item-wrap .white-paper-item .white-paper-item-description {
  font-size: 0.9rem;
  line-height: 1.5rem;
  height: 100px;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .white-paper-wrap .white-paper .white-paper-item-wrap .white-paper-item .white-paper-item-files {
  padding-top: 1rem;
  list-style: none;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .white-paper-wrap .white-paper .white-paper-item-wrap .white-paper-item .white-paper-item-files li i {
  line-height: 3rem;
}
.container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .white-paper-wrap .white-paper .white-paper-item-wrap .white-paper-item:hover {
  transition: 0.3s;
  border: solid 1px #555;
}
@media (max-width: 900px) {
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .white-paper-wrap .white-paper .white-paper-item-wrap {
    display: flex;
    flex-direction: column;
  }
  .container-contents .container-contents-menu-page .contents-menu-page-inner .services-menu-contents .white-paper-wrap .white-paper .white-paper-item-wrap .white-paper-item {
    width: 100%;
    margin-right: 0;
  }
}
.container-contents .container-contents-t_cost-header {
  background-color: white;
}
.container-contents .container-contents-t_cost-header h1 {
  text-align: center;
}
.container-contents .container-contents-t_cost-header h2 {
  text-align: center;
}
.container-contents .container-contents-t_cost-header .contents-cost-text {
  text-align: center;
}
.container-contents .container-contents-t_cost-header .contents-cost-header-inner {
  max-width: 1000px;
  padding: 1rem;
  margin-right: auto;
  margin-left: auto;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents {
  padding: 2rem 0;
  background-color: #f5f7f7;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents h2 {
  text-align: center;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .container-contents-pattern-text {
  font-size: 0.9rem;
  text-align: center;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap {
  max-width: 1000px;
  padding: 1rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item {
  margin-top: 70px;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: white;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description {
  position: relative;
  display: flex;
  align-items: flex-end;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-img-wrap {
  width: 350px;
  height: 280px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  position: absolute;
  top: -50px;
  margin-left: 4rem;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #ccc;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-text-wrap {
  padding-left: 480px;
  padding-right: 4rem;
  height: 230px;
  margin-top: auto;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-text-wrap h3 {
  text-align: right;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-text-wrap .contents-pattern-item-cost {
  text-align: right;
  font-size: 0.9rem;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-text-wrap .contents-pattern-item-text {
  font-size: 0.9rem;
  margin-top: 30px;
  text-align: right;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-text-wrap .contents-pattern-item-text p {
  margin: 0.5rem auto;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-table {
  padding: 2rem 4rem;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-table h4 {
  font-size: 1.2rem;
  text-align: center;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-table table {
  font-size: 0.9rem;
  border-spacing: 0;
  width: 100%;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-table table tr td {
  border-bottom: #aaa 1px solid;
  padding: 1rem 2rem;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-table table tr td:first-child {
  font-weight: bold;
}
@media (max-width: 1000px) {
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-img-wrap {
    width: 40%;
    height: auto;
  }
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-img-wrap img {
    width: 100%;
  }
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-text-wrap {
    padding-left: 60%;
    height: 230px;
  }
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-text-wrap .contents-pattern-item-text {
    margin-top: 30px;
  }
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-text-wrap .contents-pattern-item-text p {
    margin: 0.5rem auto;
  }
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-text-wrap .contents-pattern-item-text p:nth-child(n+2) {
    display: none;
  }
}
@media (max-width: 600px) {
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item {
    margin-top: 1rem;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: white;
  }
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-img-wrap {
    width: 90%;
    height: auto;
    box-shadow: none;
    position: static;
    margin-left: 0rem;
  }
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-img-wrap img {
    width: 100%;
  }
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-text-wrap {
    padding: 0rem 1rem;
    height: auto;
    margin-top: auto;
  }
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-text-wrap h3 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-text-wrap .contents-pattern-item-cost {
    text-align: center;
    font-size: 0.9rem;
  }
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-text-wrap .contents-pattern-item-text {
    font-size: 0.9rem;
    margin-top: 30px;
    text-align: center;
  }
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-text-wrap .contents-pattern-item-text p {
    margin: 0.5rem auto;
  }
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-description .contents-pattern-item-text-wrap .contents-pattern-item-text p:nth-child(n+2) {
    display: none;
  }
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-table {
  padding: 2rem 4rem;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-table h4 {
  font-size: 1.2rem;
  text-align: center;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-table table {
  font-size: 0.9rem;
  border-spacing: 0;
  width: 100%;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-table table tr td {
  border-bottom: #aaa 1px solid;
  padding: 1rem 2rem;
}
.container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-table table tr td:first-child {
  font-weight: bold;
}
@media (max-width: 1000px) {
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-table {
    padding-top: 1rem;
  }
}
@media (max-width: 600px) {
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-table {
    padding: 2rem 1rem;
  }
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-table h4 {
    font-size: 1rem;
    margin: 1rem;
  }
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-table table {
    font-size: 0.5rem;
  }
  .container-contents .container-contents-pattern .container-contents-pattern-contents .contents-pattern-list-wrap .contents-pattern-item .contents-pattern-item-table table tr td {
    padding: 1rem 0;
    text-align: center;
  }
}
.container-contents .container-contents-lowprice {
  padding: 2rem 0;
  background-color: white;
}
.container-contents .container-contents-lowprice h2 {
  text-align: center;
}
.container-contents .container-contents-lowprice .container-contents-lowprice-text {
  font-size: 0.9rem;
  text-align: center;
}
.container-contents .container-contents-lowprice .contents-lowprice-inner {
  max-width: 1000px;
  padding: 5rem 0rem;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.container-contents .container-contents-lowprice .contents-lowprice-inner .contents-lowprice-item {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container-contents .container-contents-lowprice .contents-lowprice-inner .contents-lowprice-item .contents-lowprice-item-img-wrap {
  width: 170px;
  height: 170px;
  border-radius: 100px;
  background-color: #68CFC3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-contents .container-contents-lowprice .contents-lowprice-inner .contents-lowprice-item .contents-lowprice-item-img-wrap i {
  font-size: 5em;
  color: white;
}
.container-contents .container-contents-lowprice .contents-lowprice-inner .contents-lowprice-item h3 {
  font-size: 1.1rem;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.container-contents .container-contents-lowprice .contents-lowprice-inner .contents-lowprice-item .contents-lowprice-item-description {
  font-size: 0.9rem;
  line-height: 1.7rem;
}
@media (max-width: 600px) {
  .container-contents .container-contents-lowprice .contents-lowprice-inner {
    padding: 1rem;
    flex-direction: column;
    align-items: center;
  }
  .container-contents .container-contents-lowprice .contents-lowprice-inner .contents-lowprice-item {
    margin: 1rem auto;
  }
  .container-contents .container-contents-lowprice .contents-lowprice-inner .contents-lowprice-item .contents-lowprice-item-img-wrap {
    width: 130px;
    height: 130px;
    border-radius: 100px;
    background-color: #68CFC3;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container-contents .container-contents-lowprice .contents-lowprice-inner .contents-lowprice-item .contents-lowprice-item-img-wrap i {
    font-size: 3em;
    color: white;
  }
  .container-contents .container-contents-lowprice .contents-lowprice-inner .contents-lowprice-item .contents-lowprice-item-description {
    font-size: 0.8rem;
    line-height: 1.3rem;
  }
}
.container-contents .container-contents-cost .container-contents-cost-header {
  position: relative;
  box-sizing: border-box;
  margin-bottom: 70px;
}
.container-contents .container-contents-cost .container-contents-cost-header img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 350px;
}
.container-contents .container-contents-cost .container-contents-cost-header .cost-header-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container-contents .container-contents-cost .container-contents-cost-header .cost-header-text {
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents .container-contents-cost .container-contents-cost-header .cost-header-text .cost-header-text-wrap {
  width: 900px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 600px) {
  .container-contents .container-contents-cost .container-contents-cost-header .cost-header-text .cost-header-text-wrap {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents .container-contents-cost .container-contents-cost-header .cost-header-text .cost-header-text-wrap .cost-header-text-title {
  font-size: 50px;
  text-align: center;
  margin-top: 40px;
}
.container-contents .container-contents-cost .container-contents-cost-header .cost-header-text .cost-header-text-wrap .cost-header-text-subtitle {
  margin-top: 0px;
  padding-bottom: 10px;
  border-bottom: solid 2px var(--theme-orange-color);
  font-size: 12px;
  font-weight: normal;
  width: 200px;
  text-align: center;
}
.container-contents .container-contents-cost .container-contents-cost-header .cost-header-text .cost-header-text-wrap .cost-header-text-description {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}
.container-contents .container-contents-cost .cost-single .cost-single-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
}
.container-contents .container-contents-cost .cost-single .cost-single-subtitle {
  font-weight: normal;
  margin: 0;
  font-size: 12px;
  text-align: center;
}
.container-contents .container-contents-cost .cost-single .cost-single-table-wrap {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 50px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  transition: 0.2s;
  flex-wrap: wrap;
}
.container-contents .container-contents-cost .cost-single .cost-single-table-wrap dl {
  width: 80%;
  box-shadow: 5px 5px var(--theme-orange-color);
}
@media (max-width: 600px) {
  .container-contents .container-contents-cost .cost-single .cost-single-table-wrap dl {
    width: 100%;
  }
}
.container-contents .container-contents-cost .cost-single .cost-single-table-wrap dl dt {
  float: left;
  clear: left;
  width: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-top: #ccc solid 1px;
  border-left: #ccc solid 1px;
  font-size: 18px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-cost .cost-single .cost-single-table-wrap dl dt {
    font-size: 12px;
    width: 70%;
  }
}
.container-contents .container-contents-cost .cost-single .cost-single-table-wrap dl dt:last-of-type {
  border-bottom: #ccc solid 1px;
}
.container-contents .container-contents-cost .cost-single .cost-single-table-wrap dl dd {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: #ccc solid 1px;
  border-right: #ccc solid 1px;
  border-left: #ccc solid 1px;
  font-size: 18px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-cost .cost-single .cost-single-table-wrap dl dd {
    font-size: 12px;
    margin-left: 70%;
  }
}
.container-contents .container-contents-cost .cost-single .cost-single-table-wrap dl dd:last-of-type {
  border-bottom: #ccc solid 1px;
}
.container-contents .container-contents-cost .cost-catch {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 50px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
}
.container-contents .container-contents-cost .cost-catch .cost-catch-title {
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  color: var(--theme-orange-color);
  font-size: 36px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-cost .cost-catch .cost-catch-title {
    font-size: 20px;
  }
}
.container-contents .container-contents-cost .cost-catch .cost-catch-arrow {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.container-contents .container-contents-cost .cost-catch .cost-catch-arrow .cost-catch-arrow-line {
  height: 100px;
  border-right: 2px #ccc solid;
}
.container-contents .container-contents-cost .cost-catch .cost-catch-arrow .cost-catch-arrow-rightup {
  width: 20px;
  height: 30px;
  background-image: linear-gradient(to left top, transparent 47%, #ccc 50%, #ccc 50%, transparent 53%);
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap {
  background-color: var(--theme-green-color);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-text .cost-catch-graph-text-title {
  font-size: 30px;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 600px) {
  .container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-text .cost-catch-graph-text-title {
    font-size: 18px;
  }
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image {
  display: flex;
}
@media (max-width: 600px) {
  .container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image {
    flex-direction: column;
  }
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image .graph-left {
  box-sizing: border-box;
  height: 400px;
  display: flex;
  padding: 20px;
  background-color: white;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: solid #ccc 1px;
  margin-right: 50px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image .graph-left {
    margin-right: auto;
    margin-bottom: 30px;
  }
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image .graph-left .graph-left-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image .graph-left .graph-left-title-wrap .graph-left-title {
  font-size: 20px;
  text-align: center;
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image .graph-left .graph-left-packages-wrap .package-item-list {
  list-style: none;
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image .graph-left .graph-left-packages-wrap .package-item-list .package-item-list-li {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 20px;
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image .graph-left .graph-left-packages-wrap .package-item-list .package-item-list-li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 12px;
  font-weight: 900;
  color: var(--theme-orange-color);
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image .graph-left .graph-left-packages-wrap .package-item-list .package-item-list-li .package-item-list-child {
  list-style: none;
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image .graph-left .graph-left-packages-wrap .package-item-list .package-item-list-li .package-item-list-child .package-item-list-child-li {
  font-size: 12px;
  font-weight: normal;
  margin-top: 5px;
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image .graph-left .graph-left-packages-wrap .package-item-list .package-item-list-li .package-item-list-child .package-item-list-child-li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 12px;
  font-weight: 900;
  margin-left: 15px;
  margin-right: 3px;
  color: var(--theme-orange-color);
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image .graph-right {
  display: flex;
  flex-direction: column;
  height: 400px;
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image .graph-right .graph-right-arrow-wrap {
  height: 56%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 600px) {
  .container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image .graph-right .graph-right-arrow-wrap {
    margin-bottom: 30px;
  }
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image .graph-right .graph-right-arrow-wrap .graph-right-arrow-text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: var(--theme-orange-color);
  font-size: 20px;
  font-weight: bold;
  color: white;
  text-align: center;
  height: 100%;
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image .graph-right .graph-right-arrow-wrap .graph-right-arrow-tri {
  border-top: 100px solid var(--theme-orange-color);
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image .graph-right .graph-right-under {
  height: 44%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: white;
  color: var(--theme-orange-color);
  box-shadow: 5px 5px var(--theme-orange-color);
  box-sizing: border-box;
  border: solid 1px var(--theme-orange-color);
  z-index: 2;
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image .graph-right .graph-right-under .graph-right-under-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-image .graph-right .graph-right-under .graph-right-under-description {
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
}
.container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-end {
  width: 70%;
  border-bottom: solid #ccc 5px;
  z-index: 1;
}
@media (max-width) {
  .container-contents .container-contents-cost .cost-catch .cost-catch-graph-wrap .cost-catch-graph-end {
    display: none;
  }
}
.container-contents .container-contents-cost .cost-set {
  margin-top: 40px;
}
.container-contents .container-contents-cost .cost-set .cost-set-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
}
.container-contents .container-contents-cost .cost-set .cost-set-subtitle {
  font-weight: normal;
  margin: 0;
  font-size: 12px;
  text-align: center;
}
.container-contents .container-contents-cost .cost-set .cost-set-table-wrap {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 50px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  transition: 0.2s;
  flex-wrap: wrap;
}
.container-contents .container-contents-cost .cost-set .cost-set-table-wrap dl {
  width: 80%;
  box-shadow: 5px 5px var(--theme-orange-color);
}
@media (max-width: 600px) {
  .container-contents .container-contents-cost .cost-set .cost-set-table-wrap dl {
    width: 100%;
  }
}
.container-contents .container-contents-cost .cost-set .cost-set-table-wrap dl dt {
  float: left;
  clear: left;
  width: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-top: #ccc solid 1px;
  border-left: #ccc solid 1px;
  font-size: 18px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-cost .cost-set .cost-set-table-wrap dl dt {
    font-size: 12px;
    width: 60%;
  }
}
.container-contents .container-contents-cost .cost-set .cost-set-table-wrap dl dt:last-of-type {
  border-bottom: #ccc solid 1px;
}
.container-contents .container-contents-cost .cost-set .cost-set-table-wrap dl dd {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: #ccc solid 1px;
  border-right: #ccc solid 1px;
  border-left: #ccc solid 1px;
  font-size: 18px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-cost .cost-set .cost-set-table-wrap dl dd {
    font-size: 12px;
    margin-left: 60%;
  }
}
.container-contents .container-contents-cost .cost-set .cost-set-table-wrap dl dd:last-of-type {
  border-bottom: #ccc solid 1px;
}
.container-contents .container-contents-cost .cost-set .cost-set-table-wrap dl dd .vivid {
  color: var(--theme-orange-color);
}
.container-contents .container-contents-cost .cost-contact {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 70px;
  margin-bottom: 70px;
}
.container-contents .container-contents-cost .cost-contact .cost-contact-title-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--theme-orange-color);
  font-size: 30px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .container-contents .container-contents-cost .cost-contact .cost-contact-title-wrap {
    font-size: 20px;
  }
}
.container-contents .container-contents-cost .cost-contact .cost-contact-title-wrap .cost-contact-title {
  margin-bottom: 10px;
  text-align: center;
}
.container-contents .container-contents-cost .cost-contact .cost-contact-description {
  margin-top: 60px;
  text-align: center;
  color: var(--theme-green-vivid-color);
  font-weight: bold;
  font-size: 30px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-cost .cost-contact .cost-contact-description {
    font-size: 20px;
  }
}
.container-contents .container-contents-blog {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
}
.container-contents .container-contents-blog.back-green {
  background-color: var(--theme-green-color);
}
.container-contents .container-contents-blog .container-contents-blog-header {
  position: relative;
  box-sizing: border-box;
  margin-bottom: 70px;
}
.container-contents .container-contents-blog .container-contents-blog-header img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 350px;
}
.container-contents .container-contents-blog .container-contents-blog-header .blog-header-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container-contents .container-contents-blog .container-contents-blog-header .blog-header-text {
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents .container-contents-blog .container-contents-blog-header .blog-header-text .blog-header-text-wrap {
  width: 900px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 600px) {
  .container-contents .container-contents-blog .container-contents-blog-header .blog-header-text .blog-header-text-wrap {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents .container-contents-blog .container-contents-blog-header .blog-header-text .blog-header-text-wrap .blog-header-text-title {
  font-size: 50px;
  text-align: center;
  margin-top: 40px;
}
.container-contents .container-contents-blog .container-contents-blog-header .blog-header-text .blog-header-text-wrap .blog-header-text-subtitle {
  margin-top: 0px;
  padding-bottom: 10px;
  border-bottom: solid 2px var(--theme-orange-color);
  font-size: 12px;
  font-weight: normal;
  width: 200px;
  text-align: center;
}
.container-contents .container-contents-blog .container-contents-blog-header .blog-header-text .blog-header-text-wrap .blog-header-text-description {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}
.container-contents .container-contents-blog .container-contents-blog-categories {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  margin-bottom: 70px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-blog .container-contents-blog-categories {
    margin-bottom: 100px;
  }
}
.container-contents .container-contents-blog .container-contents-blog-categories .blog-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
}
.container-contents .container-contents-blog .container-contents-blog-categories .blog-subtitle {
  font-weight: normal;
  margin: 0;
  font-size: 12px;
  text-align: center;
  margin-bottom: 50px;
}
.container-contents .container-contents-blog .container-contents-blog-categories .blog-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-blog .container-contents-blog-categories .blog-category {
    margin-bottom: 70px;
  }
}
.container-contents .container-contents-blog .container-contents-blog-categories .blog-category .blog-category-title {
  width: 100%;
  font-size: 30px;
  margin-bottom: 5px;
  margin-top: 0;
  font-weight: bold;
}
@media (max-width: 600px) {
  .container-contents .container-contents-blog .container-contents-blog-categories .blog-category .blog-category-title {
    font-size: 26px;
  }
}
.container-contents .container-contents-blog .container-contents-blog-categories .blog-category .blog-items-wrap {
  /*display: flex;
  width: 100%;
  justify-content:space-between;
  margin-top:10px;
  margin-bottom:30px;
  @media(max-width:600px){
      flex-direction: column;
      align-items: center;
      margin-top:20px;
      margin-bottom:10px;
  }*/
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  margin-top: 50px;
  margin-bottom: 30px;
  width: 100%;
  place-items: center;
  row-gap: 50px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-blog .container-contents-blog-categories .blog-category .blog-items-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
.container-contents .container-contents-blog .container-contents-blog-categories .blog-category .blog-items-wrap .blog-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-blog .container-contents-blog-categories .blog-category .blog-items-wrap .blog-item {
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
  }
}
.container-contents .container-contents-blog .container-contents-blog-categories .blog-category .blog-items-wrap .blog-item .blog-item-image img {
  width: 200px;
  height: 150px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-blog .container-contents-blog-categories .blog-category .blog-items-wrap .blog-item .blog-item-image img {
    width: 120px;
    height: 100px;
  }
}
.container-contents .container-contents-blog .container-contents-blog-categories .blog-category .blog-items-wrap .blog-item .blog-item-image img {
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 5px 5px var(--theme-orange-color);
}
.container-contents .container-contents-blog .container-contents-blog-categories .blog-category .blog-items-wrap .blog-item .blog-item-text {
  width: 100%;
}
@media (max-width: 600px) {
  .container-contents .container-contents-blog .container-contents-blog-categories .blog-category .blog-items-wrap .blog-item .blog-item-text {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    height: 100px;
  }
}
.container-contents .container-contents-blog .container-contents-blog-categories .blog-category .blog-items-wrap .blog-item .blog-item-text .blog-item-text-date {
  font-size: 12px;
  color: #ccc;
  margin-top: 10px;
  margin-bottom: 7px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-blog .container-contents-blog-categories .blog-category .blog-items-wrap .blog-item .blog-item-text .blog-item-text-date {
    margin-top: 0px;
  }
}
.container-contents .container-contents-blog .container-contents-blog-categories .blog-category .blog-items-wrap .blog-item .blog-item-text .blog-item-text-title {
  font-size: 14px;
  color: black;
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .container-contents .container-contents-blog .container-contents-blog-categories .blog-category .blog-items-wrap .blog-item .blog-item-text .blog-item-text-title {
    font-size: 12px;
  }
}
.container-contents .container-contents-blog .container-contents-blog-category-catalog {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  padding-bottom: 100px;
}
.container-contents .container-contents-blog .container-contents-blog-category-catalog .category-catalog-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
}
.container-contents .container-contents-blog .container-contents-blog-category-catalog .category-catalog-subtitle {
  font-weight: normal;
  margin: 0;
  font-size: 12px;
  text-align: center;
  margin-bottom: 50px;
}
.container-contents .container-contents-blog .container-contents-blog-category-catalog .category-catalog-items-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .container-contents .container-contents-blog .container-contents-blog-category-catalog .category-catalog-items-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.container-contents .container-contents-blog .container-contents-blog-category-catalog .category-catalog-items-wrap .category-catalog-item {
  width: 450px;
  height: 150px;
  display: block;
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-blog .container-contents-blog-category-catalog .category-catalog-items-wrap .category-catalog-item {
    width: 100%;
  }
}
.container-contents .container-contents-blog .container-contents-blog-category-catalog .category-catalog-items-wrap .category-catalog-item .category-catalog-item-image {
  width: 100%;
  height: 100%;
}
.container-contents .container-contents-blog .container-contents-blog-category-catalog .category-catalog-items-wrap .category-catalog-item .category-catalog-item-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.container-contents .container-contents-blog .container-contents-blog-category-catalog .category-catalog-items-wrap .category-catalog-item .category-catalog-item-text-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
}
.container-contents .container-contents-blog .container-contents-blog-category-catalog .category-catalog-items-wrap .category-catalog-item .category-catalog-item-text-wrap .category-catalog-item-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 600px) {
  .container-contents .container-contents-blog .container-contents-blog-category-catalog .category-catalog-items-wrap .category-catalog-item .category-catalog-item-text-wrap .category-catalog-item-text {
    width: 90%;
  }
}
.container-contents .container-contents-blog .container-contents-blog-category-catalog .category-catalog-items-wrap .category-catalog-item .category-catalog-item-text-wrap .category-catalog-item-text .category-catalog-item-text-title {
  width: 150px;
  font-size: 18px;
  color: black;
  text-align: center;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0;
  border-bottom: 2px var(--theme-orange-color) solid;
}
.container-contents .container-contents-blog .container-contents-blog-category-catalog .category-catalog-items-wrap .category-catalog-item .category-catalog-item-text-wrap .category-catalog-item-text .category-catalog-item-text-subtitle {
  font-size: 12px;
  color: black;
  text-align: center;
  margin-top: 5px;
}
.container-contents .container-contents-blog .blog-contact {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 70px;
  margin-bottom: 70px;
}
.container-contents .container-contents-blog .blog-contact .blog-contact-title-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--theme-green-vivid-color);
  font-size: 30px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .container-contents .container-contents-blog .blog-contact .blog-contact-title-wrap {
    font-size: 20px;
  }
}
.container-contents .container-contents-blog .blog-contact .blog-contact-title-wrap .blog-contact-title {
  margin-bottom: 10px;
  text-align: center;
}
.container-contents .container-contents-blog .blog-contact .blog-contact-description {
  margin-top: 60px;
  text-align: center;
  color: var(--theme-green-vivid-color);
  font-weight: bold;
  font-size: 30px;
}
@media (max-width: 600px) {
  .container-contents .container-contents-blog .blog-contact .blog-contact-description {
    font-size: 20px;
  }
}
.container-contents {
  /*.container-contents-cost{
      padding:2rem 0;
      background-color: #f5f7f7;
      h2{
          text-align: center;
      }
      .container-contents-cost-text{
          font-size: 0.9rem;
          text-align: center;
      }
      .contents-cost-table-wrap{
          max-width: 1000px;
          padding:1rem;
          margin-right:auto;
          margin-left:auto;
          //background-color: #f5f7f7;
          box-sizing: border-box;
          .contents-cost-table{

              table{
                  font-size: 0.9rem;
                  border-spacing: 0;
                  width: 100%;
                  tr{
                      td{
                          border-bottom: #aaa 1px solid;
                          padding:1rem 2rem;
                          &:first-child{
                              font-weight: bold;
                          }
                      }
                  }
              }
              @media(max-width:600px){
                  padding:2rem 0;
                  table{
                      font-size: 0.5rem;
                      tr{
                          td{
                              padding:1rem 0;
                              text-align: center;
                          }
                      }
                  }
              }
          }
      }
  }*/
  /*.container-contents-contact-header{
      background-color: white;
      .contents-contact-header-inner{
          max-width: 1000px;
          padding:1rem;
          margin-right:auto;
          margin-left:auto;
      }
      h1{
          text-align: center;
      }
      h2{
          text-align: center;
      }
      .contents-contact-text{
          text-align: center;
      }

  }*/
}
.container-contents .container-contents-contact .container-contents-contact-header {
  position: relative;
  box-sizing: border-box;
}
.container-contents .container-contents-contact .container-contents-contact-header img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 350px;
}
.container-contents .container-contents-contact .container-contents-contact-header .contact-header-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container-contents .container-contents-contact .container-contents-contact-header .contact-header-text {
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents .container-contents-contact .container-contents-contact-header .contact-header-text .contact-header-text-wrap {
  width: 900px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 600px) {
  .container-contents .container-contents-contact .container-contents-contact-header .contact-header-text .contact-header-text-wrap {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents .container-contents-contact .container-contents-contact-header .contact-header-text .contact-header-text-wrap .contact-header-text-title {
  font-size: 50px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 0;
  font-weight: normal;
}
@media (max-width: 600px) {
  .container-contents .container-contents-contact .container-contents-contact-header .contact-header-text .contact-header-text-wrap .contact-header-text-title {
    font-size: 26px;
  }
}
.container-contents .container-contents-contact .container-contents-contact-header .contact-header-text .contact-header-text-wrap .contact-header-text-subtitle {
  margin-top: 0px;
  padding-bottom: 10px;
  border-bottom: solid 2px var(--theme-orange-color);
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: normal;
  width: 200px;
  text-align: center;
}
.container-contents .container-contents-contact .container-contents-contact-header .contact-header-text .contact-header-text-wrap .contact-header-text-description {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}
.container-contents .container-contents-contact .contact-contents {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
}
.container-contents .container-contents-contact .contact-contents .contact-contents-padding-left {
  flex: 1;
}
.container-contents .container-contents-contact .contact-contents .contact-contents-text {
  max-width: 700px;
  box-sizing: border-box;
  padding-left: 1rem;
  padding-right: 50px;
  padding-top: 100px;
  font-size: 16px;
  color: #555;
}
@media (max-width: 600px) {
  .container-contents .container-contents-contact .contact-contents .contact-contents-text {
    width: 100%;
    padding-right: 1rem;
    padding-top: 30px;
  }
}
.container-contents .container-contents-contact .contact-contents .contact-contents-text .contact-contents-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
  color: black;
}
.container-contents .container-contents-contact .contact-contents .contact-contents-text .contact-contents-subtitle {
  font-weight: normal;
  margin: 0;
  font-size: 12px;
  text-align: center;
  margin-bottom: 50px;
  color: black;
}
.container-contents .container-contents-contact .contact-contents .contact-contents-text .contact-item-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container-contents .container-contents-contact .contact-contents .contact-contents-text .contact-item-wrap .contact-item {
  padding-bottom: 30px;
  width: 100%;
}
.container-contents .container-contents-contact .contact-contents .contact-contents-text .contact-item-wrap .contact-item .contact-item-title {
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 0px;
}
.container-contents .container-contents-contact .contact-contents .contact-contents-text .contact-item-wrap .contact-item .contact-item-title .contact-must {
  padding: 5px 8px;
  color: white;
  background-color: var(--theme-orange-color);
  margin-left: 10px;
  border-radius: 20px;
  font-size: 14px;
}
.container-contents .container-contents-contact .contact-contents .contact-contents-sidebar {
  padding-left: 50px;
  width: 300px;
  box-sizing: border-box;
  padding-right: 1rem;
  background-color: var(--theme-green-color);
}
@media (max-width: 600px) {
  .container-contents .container-contents-contact .contact-contents .contact-contents-sidebar {
    display: none;
  }
}
.container-contents .container-contents-contact .contact-contents .contact-contents-padding-right {
  flex: 1;
  background-color: var(--theme-green-color);
}
@media (max-width: 600px) {
  .container-contents .container-contents-contact .contact-contents .contact-contents-padding-right {
    display: none;
  }
}
.container-contents .container-contents-contact .contact-contents .wpcf7 form p {
  margin-top: 30px;
}
.container-contents .container-contents-contact .contact-contents .wpcf7 form p .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  justify-content: space-between;
}
.container-contents .container-contents-contact .contact-contents .wpcf7 form p .wpcf7-radio .wpcf7-list-item {
  width: 45%;
  padding-bottom: 10px;
  margin: 0;
}
@media (max-width: 600px) {
  .container-contents .container-contents-contact .contact-contents .wpcf7 form p .wpcf7-radio {
    flex-direction: column;
    align-items: center;
  }
  .container-contents .container-contents-contact .contact-contents .wpcf7 form p .wpcf7-radio .wpcf7-list-item {
    width: 100%;
  }
}
.container-contents .container-contents-contact .contact-contents .wpcf7 form p input[type=text], .container-contents .container-contents-contact .contact-contents .wpcf7 form p input[type=email], .container-contents .container-contents-contact .contact-contents .wpcf7 form p input[type=tel] {
  font-size: 1.3rem;
  border: #ccc 1px solid;
  width: 100%;
  border-radius: 5px;
  font-weight: bold;
}
.container-contents .container-contents-contact .contact-contents .wpcf7 form p textarea {
  border: #ccc 1px solid;
  width: 100%;
  border-radius: 5px;
  font-size: 15px;
}
.container-contents .container-contents-contact .contact-contents .wpcf7 form p input[type=submit] {
  width: 50%;
  margin: 0 auto;
  padding: 15px 20px;
  background-color: var(--theme-orange-color);
  border-radius: 50px;
  color: black;
  font-size: 12px;
  font-weight: bold;
  display: block;
  transition: 0.2s;
  width: 130px;
  text-align: center;
  border-style: none;
}
.container-contents .container-contents-contact .contact-contents .wpcf7 form p input[type=submit].color-white {
  background-color: white;
}
.container-contents .container-contents-contact .contact-contents .wpcf7 form p input[type=submit]:hover {
  transition: 0.2s;
  box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.2);
}
.container-contents .container-contents-contact .contact-contents .wpcf7 form.sent .contact-item-wrap {
  display: none;
}
.container-contents .container-contents-contact .contact-contents .wpcf7 form.sent .wpcf7-response-output {
  border: none;
  background-color: var(--theme-green-vivid-color);
  color: white;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 10px;
  text-align: center;
}
.container-contents .container-contents-contact .contact-contents .wpcf7 form.invalid .wpcf7-response-output {
  border: 1px var(--theme-orange-color) solid;
  box-shadow: 5px 5px var(--theme-orange-color);
  color: black;
  font-size: 16px;
  padding: 10px 20px;
  text-align: center;
  background-color: white;
  border-radius: 0;
}
.container-contents .container-contents-contact .contact-contents .wpcf7 form.invalid .wpcf7-not-valid-tip {
  margin-top: 5px;
  text-align: left;
  font-size: 14px;
  color: #DA6272;
}

.container-contents-article-header {
  background-color: white;
}
.container-contents-article-header h1 {
  text-align: center;
}
.container-contents-article-header h2 {
  text-align: center;
}
.container-contents-article-header .contents-cost-text {
  text-align: center;
}
.container-contents-article-header .contents-header-image-wrap {
  position: relative;
}
.container-contents-article-header .contents-header-image-wrap img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(70%);
}
.container-contents-article-header .contents-header-image-wrap .contents-header-image-text {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  left: 0px;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-contents-article-header .contents-header-image-wrap .contents-header-image-text .contents-header-image-text-wrap {
  color: white;
  text-shadow: 1px 1px 1px black;
}
.container-contents-article-header .contents-header-image-wrap .contents-header-image-text .contents-header-image-text-wrap h1 {
  font-size: 1.7rem;
}
.container-contents-article-header .contents-article-header-inner {
  max-width: 1000px;
  padding: 1rem;
  margin-right: auto;
  margin-left: auto;
}
.container-contents-article-header .contents-article-header-inner .contents-article-header-information {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: #777 solid 1px;
}
.container-contents-article-header .contents-article-header-inner .contents-article-header-information .contents-article-header-lastupdated {
  font-size: 0.8rem;
  text-align: center;
}
.container-contents-article-header .contents-article-header-inner .contents-article-header-information .contents-article-header-category {
  font-size: 0.8rem;
  text-align: center;
}

.container-contents-article .contents-article-inner {
  max-width: 1000px;
  padding: 1rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
}
.container-contents-article .contents-article-inner .contents-article-contents {
  width: 70%;
  line-height: 2rem;
  padding-right: 2rem;
}
.container-contents-article .contents-article-inner .contents-article-contents h2 {
  margin-top: 4rem;
  font-size: 1.7rem;
  border-bottom: solid 1px #777;
  padding-bottom: 1rem;
}
.container-contents-article .contents-article-inner .contents-article-contents first-child {
  margin-top: 0;
}
.container-contents-article .contents-article-inner .contents-article-contents h3 {
  margin-top: 2.5rem;
  background-color: #efefef;
  padding: 1rem;
}
.container-contents-article .contents-article-inner .contents-article-contents ul {
  padding-left: 3rem;
}
.container-contents-article .contents-article-inner .contents-article-contents figure {
  text-align: center;
  padding: 3rem 0;
  width: 600px;
}
@media (max-width: 600px) {
  .container-contents-article .contents-article-inner .contents-article-contents figure {
    width: 100%;
    margin: 0.5rem 0;
    padding: 0;
  }
}
.container-contents-article .contents-article-inner .contents-article-contents figure img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}
.container-contents-article .contents-article-inner .contents-article-contents figure {
  width: auto;
  display: block;
}
.container-contents-article .contents-article-inner .contents-article-contents figure table {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 0.8rem;
  border-spacing: 0;
  width: 100%;
}
.container-contents-article .contents-article-inner .contents-article-contents figure table tr td {
  border-bottom: #aaa 1px solid;
  padding: 1rem 1rem;
}
.container-contents-article .contents-article-inner .contents-article-contents figure table tr td:first-child {
  font-weight: bold;
}
.container-contents-article .contents-article-inner .contents-article-contents figure img {
  width: 600px;
}
.container-contents-article .contents-article-inner .contents-article-contents figure figcaption {
  display: block;
}
@media (max-width: 900px) {
  .container-contents-article .contents-article-inner .contents-article-contents {
    width: 100%;
    padding-right: 0;
  }
  .container-contents-article .contents-article-inner .contents-article-sidebar {
    display: none;
  }
}
.container-contents-article .contents-article-attracting {
  padding-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #f5f7f7;
  font-size: 0.9rem;
  text-align: center;
}
.container-contents-article .contents-article-attracting a {
  text-align: center;
}
.container-contents-article .contents-article-attracting a .contents-article-attraction-mail {
  border: black 1px solid;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  color: black;
  background-color: white;
  text-align: center;
  padding: 1rem;
  margin: 3rem 2rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  width: 550px;
  box-sizing: border-box;
}
.container-contents-article .contents-article-attracting a .contents-article-attraction-mail:hover {
  transition: 0.3s;
  border: #68CFC3 1px solid;
  background-color: #68CFC3;
  color: white;
}
@media (max-width: 600px) {
  .container-contents-article .contents-article-attracting a .contents-article-attraction-mail {
    width: 90%;
    box-sizing: border-box;
    margin: 3rem auto;
    margin-top: 1rem;
  }
}
.container-contents-article .contents-article-attracting .contents-article-blogranking {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 1rem;
}
.container-contents-article .contents-article-attracting .contents-article-blogranking a {
  padding: 0.5rem;
}
.container-contents-article .contents-others-title {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 0.5rem;
  margin: 0;
  font-size: 1.7rem;
  font-weight: bold;
}
.container-contents-article .contents-others-title .contents-others-info {
  font-size: 0.9rem;
  font-weight: normal;
  text-align: center;
  margin-top: 1rem;
}
.container-contents-article .contents-others-inner {
  max-width: 1000px;
  padding: 0;
  margin-right: auto;
  margin-left: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: white;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.container-contents-article .contents-others-inner a {
  display: flex;
  justify-content: center;
}
.container-contents-article .contents-others-inner a .contents-others-item {
  display: flex;
  flex-direction: column;
  width: 200px;
  margin-bottom: 2rem;
}
.container-contents-article .contents-others-inner a .contents-others-item .contents-others-item-img img {
  width: 100%;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
}
.container-contents-article .contents-others-inner a .contents-others-item .contents-others-item-title {
  color: black;
  font-size: 0.8rem;
  font-weight: bold;
}
@media (max-width: 600px) {
  .container-contents-article .contents-others-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: 0;
    padding-top: 0;
  }
  .container-contents-article .contents-others-inner a {
    justify-content: flex-start;
  }
  .container-contents-article .contents-others-inner a .contents-others-item {
    display: flex;
    flex-direction: row;
    width: 100%;
    border-top: #f5f7f7 1px solid;
    margin-bottom: 0;
  }
  .container-contents-article .contents-others-inner a .contents-others-item .contents-others-item-img {
    margin: 15px;
  }
  .container-contents-article .contents-others-inner a .contents-others-item .contents-others-item-img img {
    width: 90px;
    height: 60px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .container-contents-article .contents-others-inner a .contents-others-item .contents-others-item-title {
    margin: 15px;
  }
}

/*.container-contents-page-header{
    background-color: white;
    .contents-article-page-inner{
        max-width: 1000px;
        padding:1rem;
        margin-right:auto;
        margin-left:auto;
        h1{
            text-align: center;
        }
        h2{
            text-align: center;
        }
        p{
            text-align: center;
        }

    }
}*/
.container-contents-single .container-contents-single-header {
  position: relative;
  box-sizing: border-box;
}
.container-contents-single .container-contents-single-header img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 350px;
}
.container-contents-single .container-contents-single-header .single-header-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container-contents-single .container-contents-single-header .single-header-text {
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents-single .container-contents-single-header .single-header-text .single-header-text-wrap {
  width: 900px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 600px) {
  .container-contents-single .container-contents-single-header .single-header-text .single-header-text-wrap {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents-single .container-contents-single-header .single-header-text .single-header-text-wrap .single-header-text-title {
  font-size: 50px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 0;
  font-weight: normal;
}
@media (max-width: 600px) {
  .container-contents-single .container-contents-single-header .single-header-text .single-header-text-wrap .single-header-text-title {
    font-size: 26px;
  }
}
.container-contents-single .container-contents-single-header .single-header-text .single-header-text-wrap .single-header-text-category-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.container-contents-single .container-contents-single-header .single-header-text .single-header-text-wrap .single-header-text-category-wrap .single-header-text-category {
  color: black;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  background-color: var(--theme-green-vivid-color);
  border-radius: 30px;
  padding: 7px 15px;
}
.container-contents-single .container-contents-single-header .single-header-text .single-header-text-wrap .single-header-text-category-wrap .single-header-text-category a {
  color: white;
}
.container-contents-single .container-contents-single-header .single-header-text .single-header-text-wrap .single-header-text-description {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
  padding-top: 10px;
  border-top: solid 2px var(--theme-orange-color);
}
.container-contents-single .single-contents {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
}
.container-contents-single .single-contents .single-contents-padding-left {
  flex: 1;
}
.container-contents-single .single-contents .single-contents-text {
  max-width: 700px;
  box-sizing: border-box;
  padding-left: 1rem;
  padding-right: 50px;
  padding-top: 100px;
  font-size: 16px;
  color: #555;
  margin-bottom: 70px;
}
@media (max-width: 600px) {
  .container-contents-single .single-contents .single-contents-text {
    width: 100%;
    padding-right: 1rem;
    padding-top: 30px;
  }
}
.container-contents-single .single-contents .single-contents-text h1.single-contents-text-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 50px;
}
.container-contents-single .single-contents .single-contents-text .single-contents-text-wrap {
  margin-bottom: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-contents-single .single-contents .single-contents-text .single-contents-text-wrap .single-contents-text-padding {
  flex: 1;
}
.container-contents-single .single-contents .single-contents-text .single-contents-text-wrap .single-contents-text-date {
  flex: 1;
  color: #ccc;
  text-align: center;
  width: 100%;
}
.container-contents-single .single-contents .single-contents-text .single-contents-text-wrap .single-contents-text-category-wrap {
  flex: 1;
  display: flex;
}
.container-contents-single .single-contents .single-contents-text .single-contents-text-wrap .single-contents-text-category-wrap .single-contents-text-category {
  color: black;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  background-color: var(--theme-green-vivid-color);
  border-radius: 30px;
  padding: 7px 15px;
}
.container-contents-single .single-contents .single-contents-text .single-contents-text-wrap .single-contents-text-category-wrap .single-contents-text-category a {
  color: white;
}
.container-contents-single .single-contents .single-contents-text h1 {
  color: black;
}
.container-contents-single .single-contents .single-contents-text h2 {
  margin-top: 70px;
  font-size: 24px;
  color: black;
}
.container-contents-single .single-contents .single-contents-text h3 {
  border-bottom: solid 1px var(--theme-orange-color);
  margin-top: 40px;
  color: black;
}
.container-contents-single .single-contents .single-contents-text h4::before {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  font-size: 16px;
  font-weight: 900;
  color: var(--theme-orange-color);
  margin-right: 4px;
}
.container-contents-single .single-contents .single-contents-text h4 {
  color: black;
  margin-top: 25px;
  display: inline-block;
}
.container-contents-single .single-contents .single-contents-text p {
  line-height: 2rem;
  margin-top: 0;
  margin-bottom: 20px;
}
.container-contents-single .single-contents .single-contents-text ul, .container-contents-single .single-contents .single-contents-text ol {
  margin-bottom: 40px;
  padding-left: 3rem;
}
.container-contents-single .single-contents .single-contents-text ul li, .container-contents-single .single-contents .single-contents-text ol li {
  line-height: 2rem;
}
.container-contents-single .single-contents .single-contents-text strong {
  color: black;
}
.container-contents-single .single-contents .single-contents-text figure {
  text-align: center;
  padding: 20px 0;
  width: 100%;
}
@media (max-width: 600px) {
  .container-contents-single .single-contents .single-contents-text figure {
    width: 100%;
    margin: 0.5rem 0;
    padding: 0;
  }
}
.container-contents-single .single-contents .single-contents-text figure img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  box-shadow: 5px 5px var(--theme-orange-color);
}
.container-contents-single .single-contents .single-contents-text figure {
  width: auto;
  display: block;
}
.container-contents-single .single-contents .single-contents-text figure table {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 0.8rem;
  border-spacing: 0;
  width: 100%;
}
.container-contents-single .single-contents .single-contents-text figure table tr td {
  border-bottom: #aaa 1px solid;
  padding: 1rem 1rem;
}
.container-contents-single .single-contents .single-contents-text figure table tr td:first-child {
  font-weight: bold;
}
.container-contents-single .single-contents .single-contents-text figure img {
  width: 100%;
}
.container-contents-single .single-contents .single-contents-text figure figcaption {
  display: block;
}
.container-contents-single .single-contents .single-contents-text .wp-embedded-content {
  width: 100%;
  box-sizing: border-box;
  border: solid #ccc 1px;
  /*border:solid 1px #ccc;
  transition: 0.2s;
  &:hover{
      box-shadow: #FFB328 5px 5px;
      transition: 0.2s;
  }*/
}
.container-contents-single .single-contents .single-contents-sidebar {
  padding-left: 50px;
  width: 300px;
  box-sizing: border-box;
  padding-right: 1rem;
  background-color: var(--theme-green-color);
}
@media (max-width: 600px) {
  .container-contents-single .single-contents .single-contents-sidebar {
    display: none;
  }
}
.container-contents-single .single-contents .single-contents-padding-right {
  flex: 1;
  background-color: var(--theme-green-color);
}
@media (max-width: 600px) {
  .container-contents-single .single-contents .single-contents-padding-right {
    display: none;
  }
}
.container-contents-single .single-item-contents {
  background-color: var(--theme-green-color);
}
.container-contents-single .single-item-contents .single-items {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 50px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
}
.container-contents-single .single-item-contents .single-items .single-items-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
}
.container-contents-single .single-item-contents .single-items .single-items-subtitle {
  font-weight: normal;
  margin: 0;
  font-size: 12px;
  text-align: center;
}
.container-contents-single .single-item-contents .single-items .single-items-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 600px) {
  .container-contents-single .single-item-contents .single-items .single-items-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding-bottom: 10px;
  }
}
.container-contents-single .single-item-contents .single-items .single-items-wrap .single-item-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 330px;
}
@media (max-width: 600px) {
  .container-contents-single .single-item-contents .single-items .single-items-wrap .single-item-wrap {
    height: auto;
  }
}
.container-contents-single .single-item-contents .single-items .single-items-wrap .single-item-wrap .single-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
}
@media (max-width: 600px) {
  .container-contents-single .single-item-contents .single-items .single-items-wrap .single-item-wrap .single-item {
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
    padding: 0;
  }
}
.container-contents-single .single-item-contents .single-items .single-items-wrap .single-item-wrap .single-item .single-item-image {
  height: 180px;
  width: 100%;
}
@media (max-width: 600px) {
  .container-contents-single .single-item-contents .single-items .single-items-wrap .single-item-wrap .single-item .single-item-image {
    height: 100%;
    width: auto;
  }
}
.container-contents-single .single-item-contents .single-items .single-items-wrap .single-item-wrap .single-item .single-item-image img {
  width: 100%;
  height: 100%;
}
@media (max-width: 600px) {
  .container-contents-single .single-item-contents .single-items .single-items-wrap .single-item-wrap .single-item .single-item-image img {
    width: 120px;
    height: 100px;
  }
}
.container-contents-single .single-item-contents .single-items .single-items-wrap .single-item-wrap .single-item .single-item-image img {
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 5px 5px var(--theme-orange-color);
}
.container-contents-single .single-item-contents .single-items .single-items-wrap .single-item-wrap .single-item .single-item-text {
  width: 100%;
}
@media (max-width: 600px) {
  .container-contents-single .single-item-contents .single-items .single-items-wrap .single-item-wrap .single-item .single-item-text {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    height: 100px;
  }
}
.container-contents-single .single-item-contents .single-items .single-items-wrap .single-item-wrap .single-item .single-item-text .single-item-text-date {
  font-size: 12px;
  color: #ccc;
  margin-top: 10px;
  margin-bottom: 7px;
}
@media (max-width: 600px) {
  .container-contents-single .single-item-contents .single-items .single-items-wrap .single-item-wrap .single-item .single-item-text .single-item-text-date {
    margin-top: 0px;
  }
}
.container-contents-single .single-item-contents .single-items .single-items-wrap .single-item-wrap .single-item .single-item-text .single-item-text-title {
  font-size: 14px;
  color: black;
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .container-contents-single .single-item-contents .single-items .single-items-wrap .single-item-wrap .single-item .single-item-text .single-item-text-title {
    font-size: 12px;
  }
}
.container-contents-single .single-contact-wrap {
  background-color: var(--theme-green-color);
}
.container-contents-single .single-contact-wrap .single-contact {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 70px;
}
.container-contents-single .single-contact-wrap .single-contact .single-contact-title-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--theme-green-vivid-color);
  font-size: 30px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .container-contents-single .single-contact-wrap .single-contact .single-contact-title-wrap {
    font-size: 20px;
  }
}
.container-contents-single .single-contact-wrap .single-contact .single-contact-title-wrap .blog-contact-title {
  margin-bottom: 10px;
  text-align: center;
}
.container-contents-single .single-contact-wrap .single-contact .single-contact-description {
  margin-top: 60px;
  text-align: center;
  color: var(--theme-green-vivid-color);
  font-weight: bold;
  font-size: 30px;
}
@media (max-width: 600px) {
  .container-contents-single .single-contact-wrap .single-contact .single-contact-description {
    font-size: 20px;
  }
}

.container-contents-page .container-contents-page-header {
  position: relative;
  box-sizing: border-box;
}
.container-contents-page .container-contents-page-header img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 350px;
}
.container-contents-page .container-contents-page-header .page-header-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container-contents-page .container-contents-page-header .page-header-text {
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents-page .container-contents-page-header .page-header-text .page-header-text-wrap {
  width: 900px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 600px) {
  .container-contents-page .container-contents-page-header .page-header-text .page-header-text-wrap {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents-page .container-contents-page-header .page-header-text .page-header-text-wrap .page-header-text-title {
  font-size: 50px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 0;
  font-weight: normal;
}
@media (max-width: 600px) {
  .container-contents-page .container-contents-page-header .page-header-text .page-header-text-wrap .page-header-text-title {
    font-size: 26px;
  }
}
.container-contents-page .container-contents-page-header .page-header-text .page-header-text-wrap .page-header-text-subtitle {
  margin-top: 0px;
  padding-bottom: 10px;
  border-bottom: solid 2px var(--theme-orange-color);
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: normal;
  width: 200px;
  text-align: center;
}
.container-contents-page .container-contents-page-header .page-header-text .page-header-text-wrap .page-header-text-description {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}
.container-contents-page .page-contents {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
}
.container-contents-page .page-contents .page-contents-padding-left {
  flex: 1;
}
.container-contents-page .page-contents .page-contents-text {
  max-width: 700px;
  box-sizing: border-box;
  padding-left: 1rem;
  padding-right: 50px;
  padding-top: 100px;
  font-size: 16px;
  color: #555;
}
@media (max-width: 600px) {
  .container-contents-page .page-contents .page-contents-text {
    width: 100%;
    padding-right: 1rem;
    padding-top: 30px;
  }
}
.container-contents-page .page-contents .page-contents-text h2 {
  margin-top: 0;
  font-size: 24px;
  padding-bottom: 10px;
  color: black;
}
.container-contents-page .page-contents .page-contents-text h3 {
  border-bottom: solid 1px var(--theme-orange-color);
  margin-top: 20px;
  color: black;
}
.container-contents-page .page-contents .page-contents-text h4 {
  color: black;
}
.container-contents-page .page-contents .page-contents-text p {
  line-height: 2rem;
  margin-bottom: 40px;
}
.container-contents-page .page-contents .page-contents-text ul, .container-contents-page .page-contents .page-contents-text ol {
  margin-bottom: 40px;
  padding-left: 3rem;
}
.container-contents-page .page-contents .page-contents-text ul li, .container-contents-page .page-contents .page-contents-text ol li {
  line-height: 2rem;
}
.container-contents-page .page-contents .page-contents-text figure {
  text-align: center;
  padding: 3rem 0;
  width: 600px;
}
@media (max-width: 600px) {
  .container-contents-page .page-contents .page-contents-text figure {
    width: 100%;
    margin: 0.5rem 0;
    padding: 0;
  }
}
.container-contents-page .page-contents .page-contents-text figure img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  box-shadow: 5px 5px var(--theme-orange-color);
}
.container-contents-page .page-contents .page-contents-text figure {
  width: auto;
  display: block;
}
.container-contents-page .page-contents .page-contents-text figure table {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 0.8rem;
  border-spacing: 0;
  width: 100%;
}
.container-contents-page .page-contents .page-contents-text figure table tr td {
  border-bottom: #aaa 1px solid;
  padding: 1rem 1rem;
}
.container-contents-page .page-contents .page-contents-text figure table tr td:first-child {
  font-weight: bold;
}
.container-contents-page .page-contents .page-contents-text figure img {
  width: 600px;
}
.container-contents-page .page-contents .page-contents-text figure figcaption {
  display: block;
}
.container-contents-page .page-contents .page-contents-sidebar {
  padding-left: 50px;
  width: 300px;
  box-sizing: border-box;
  padding-right: 1rem;
  background-color: var(--theme-green-color);
}
@media (max-width: 600px) {
  .container-contents-page .page-contents .page-contents-sidebar {
    display: none;
  }
}
.container-contents-page .page-contents .page-contents-padding-right {
  flex: 1;
  background-color: var(--theme-green-color);
}
@media (max-width: 600px) {
  .container-contents-page .page-contents .page-contents-padding-right {
    display: none;
  }
}
.container-contents-page .page-contact {
  max-width: 1000px;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 70px;
  margin-bottom: 70px;
}
.container-contents-page .page-contact .page-contact-title-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--theme-green-vivid-color);
  font-size: 30px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .container-contents-page .page-contact .page-contact-title-wrap {
    font-size: 20px;
  }
}
.container-contents-page .page-contact .page-contact-title-wrap .blog-contact-title {
  margin-bottom: 10px;
  text-align: center;
}
.container-contents-page .page-contact .page-contact-description {
  margin-top: 60px;
  text-align: center;
  color: var(--theme-green-vivid-color);
  font-weight: bold;
  font-size: 30px;
}
@media (max-width: 600px) {
  .container-contents-page .page-contact .page-contact-description {
    font-size: 20px;
  }
}
.container-contents-page .contents-page-inner {
  max-width: 1000px;
  padding: 1rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
}
.container-contents-page .contents-page-inner .contents-page-contents {
  width: 70%;
  line-height: 2rem;
  padding-bottom: 4rem;
  padding-right: 2rem;
}
.container-contents-page .contents-page-inner .contents-page-contents h2 {
  margin-top: 4rem;
  font-size: 1.7rem;
  padding-bottom: 1rem;
  border-bottom: solid 1px #777;
}
.container-contents-page .contents-page-inner .contents-page-contents {
  /*h2:first-child{
      margin-top: 0;
  }*/
}
.container-contents-page .contents-page-inner .contents-page-contents h3 {
  margin-top: 2.5rem;
  background-color: #efefef;
  padding: 1rem;
}
.container-contents-page .contents-page-inner .contents-page-contents ul {
  padding-left: 3rem;
}
.container-contents-page .contents-page-inner .contents-page-contents figure {
  text-align: center;
  padding: 3rem 0;
  width: 600px;
}
@media (max-width: 600px) {
  .container-contents-page .contents-page-inner .contents-page-contents figure {
    width: 100%;
    margin: 0.5rem 0;
    padding: 0;
  }
}
.container-contents-page .contents-page-inner .contents-page-contents figure img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}
.container-contents-page .contents-page-inner .contents-page-contents figure {
  width: auto;
  display: block;
}
.container-contents-page .contents-page-inner .contents-page-contents figure table {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 0.8rem;
  border-spacing: 0;
  width: 100%;
}
.container-contents-page .contents-page-inner .contents-page-contents figure table tr td {
  border-bottom: #aaa 1px solid;
  padding: 1rem 1rem;
}
.container-contents-page .contents-page-inner .contents-page-contents figure table tr td:first-child {
  font-weight: bold;
}
.container-contents-page .contents-page-inner .contents-page-contents figure img {
  width: 600px;
}
.container-contents-page .contents-page-inner .contents-page-contents figure figcaption {
  display: block;
}
.container-contents-page .contents-page-inner .contents-page-contents .usr-login-wrap {
  padding-top: 2rem;
}
.container-contents-page .contents-page-inner .contents-page-contents .usr-login-wrap .login-form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container-contents-page .contents-page-inner .contents-page-contents .usr-login-wrap .login-form .login-form-wrap {
  width: 300px;
  display: flex;
  flex-direction: column;
  border: 1px #555 solid;
  padding: 2rem;
}
.container-contents-page .contents-page-inner .contents-page-contents .usr-login-wrap .login-form .login-form-wrap .login-user-name {
  margin-top: 1rem;
  font-size: 1.2rem;
  height: 35px;
}
.container-contents-page .contents-page-inner .contents-page-contents .usr-login-wrap .login-form .login-form-wrap .login-user-pass {
  margin-top: 1rem;
  font-size: 1.2rem;
  height: 35px;
}
.container-contents-page .contents-page-inner .contents-page-contents .usr-login-wrap .login-form .login-form-wrap .login-submit-btn {
  margin-top: 1rem;
  height: 40px;
  font-size: 1rem;
  background-color: #1F91BE;
  color: white;
  border: none;
  transition: 0.3s;
}
.container-contents-page .contents-page-inner .contents-page-contents .usr-login-wrap .login-form .login-form-wrap .login-submit-btn:hover {
  background-color: #89ddff;
  transition: 0.3s;
  color: black;
  border: 1px #1F91BE solid;
}
.container-contents-page .contents-page-inner .contents-page-contents .usr-login-status-wrap dl dt {
  float: left;
  clear: left;
  margin-right: 0.5rem;
  width: 150px;
  font-weight: bold;
}
.container-contents-page .contents-page-inner .contents-page-contents .usr-login-status-wrap dl dt::after {
  content: "：";
}
@media (max-width: 900px) {
  .container-contents-page .contents-page-inner .contents-page-contents {
    width: 100%;
    padding-right: 0;
  }
  .container-contents-page .contents-page-inner .contents-article-sidebar {
    display: none;
  }
}

.sidebar-contents {
  padding-top: 100px;
  padding-bottom: 100px;
  position: sticky;
  top: 0;
}
.sidebar-contents .sidebar-catch {
  height: 250px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sidebar-contents .sidebar-catch .sidebar-catch-wrap {
  position: relative;
  width: 100%;
  z-index: 3;
}
.sidebar-contents .sidebar-catch .sidebar-catch-wrap .sidebar-catch-text {
  width: 100%;
  margin-bottom: 30px;
}
.sidebar-contents .sidebar-catch .sidebar-catch-wrap .sidebar-catch-text .sidebar-catch-text-title {
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  margin-bottom: 10px;
}
.sidebar-contents .sidebar-catch .sidebar-catch-wrap .sidebar-catch-image {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  z-index: -1;
}
.sidebar-contents .sidebar-catch .sidebar-catch-wrap .sidebar-catch-image img {
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
.sidebar-contents .sidebar-category {
  margin-bottom: 50px;
}
.sidebar-contents .sidebar-category .sidebar-category-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.sidebar-contents .sidebar-category .sidebar-category-item {
  display: flex;
  margin-bottom: 10px;
}
.sidebar-contents .sidebar-category .sidebar-category-item .sidebar-category-item-title::before {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  font-size: 16px;
  font-weight: 900;
  margin-left: 4px;
  color: var(--theme-orange-color);
  margin-right: 4px;
}
.sidebar-contents .sidebar-category .sidebar-category-item .sidebar-category-item-title {
  color: black;
  font-size: 16px;
}
.sidebar-contents .sidebar-recently .sidebar-recently-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.sidebar-contents .sidebar-recently .sidebar-recently-item {
  width: 100%;
  background-color: white;
  box-sizing: border-box;
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-around;
}
.sidebar-contents .sidebar-recently .sidebar-recently-item:hover {
  transition: 0.2s;
}
.sidebar-contents .sidebar-recently .sidebar-recently-item:hover .sidebar-recently-item-arrow {
  transition: 0.2s;
}
.sidebar-contents .sidebar-recently .sidebar-recently-item:hover .sidebar-recently-item-arrow .sidebar-recently-arrow-rightdown {
  transition: 0.2s;
  background-image: linear-gradient(to right top, transparent 43%, var(--theme-green-vivid-color) 43%, var(--theme-green-vivid-color) 57%, transparent 57%);
}
.sidebar-contents .sidebar-recently .sidebar-recently-item:hover .sidebar-recently-item-arrow .sidebar-recently-arrow-rightup {
  transition: 0.2s;
  background-image: linear-gradient(to left top, transparent 43%, var(--theme-green-vivid-color) 43%, var(--theme-green-vivid-color) 57%, transparent 57%);
}
.sidebar-contents .sidebar-recently .sidebar-recently-item .sidebar-recently-item-title {
  padding: 10px;
  width: 80%;
  font-size: 12px;
  margin: 0;
  color: black;
}
.sidebar-contents .sidebar-recently .sidebar-recently-item .sidebar-recently-item-arrow {
  width: 20%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.sidebar-contents .sidebar-recently .sidebar-recently-item .sidebar-recently-item-arrow .sidebar-recently-arrow-rightdown {
  width: 10px;
  height: 10px;
  background-image: linear-gradient(to right top, transparent 47%, var(--theme-green-vivid-color) 47%, var(--theme-green-vivid-color) 53%, transparent 53%);
}
.sidebar-contents .sidebar-recently .sidebar-recently-item .sidebar-recently-item-arrow .sidebar-recently-arrow-rightup {
  width: 10px;
  height: 10px;
  background-image: linear-gradient(to left top, transparent 47%, var(--theme-green-vivid-color) 47%, var(--theme-green-vivid-color) 53%, transparent 53%);
}
.sidebar-contents .sidebar-plan {
  /*margin-bottom: 50px;
      .sidebar-plan-title{
          font-size:20px;
          font-weight: bold;
          margin-bottom: 20px;
          display: block;
          color: black;
      }
      .sidebar-plan-item{
          display: flex;
          margin-bottom: 10px;
          .sidebar-plan-item-title::before{
              font-family: "Font Awesome 5 Free";
              content: '\f111';
              font-size: 16px;
              font-weight: 900;
              margin-left: 4px;
              color: var(--theme-orange-color);
              margin-right: 4px;
          }
          .sidebar-plan-item-title{
              color: black;
              font-size: 16px;
          }
      }
  }*/
}
.sidebar-contents .sidebar-plan .sidebar-plan-title {
  display: block;
  color: black;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.sidebar-contents .sidebar-plan .sidebar-plan-item {
  width: 100%;
  background-color: white;
  box-sizing: border-box;
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-around;
}
.sidebar-contents .sidebar-plan .sidebar-plan-item:hover {
  transition: 0.2s;
}
.sidebar-contents .sidebar-plan .sidebar-plan-item:hover .sidebar-plan-item-arrow {
  transition: 0.2s;
}
.sidebar-contents .sidebar-plan .sidebar-plan-item:hover .sidebar-plan-item-arrow .sidebar-plan-arrow-rightdown {
  transition: 0.2s;
  background-image: linear-gradient(to right top, transparent 43%, var(--theme-green-vivid-color) 43%, var(--theme-green-vivid-color) 57%, transparent 57%);
}
.sidebar-contents .sidebar-plan .sidebar-plan-item:hover .sidebar-plan-item-arrow .sidebar-plan-arrow-rightup {
  transition: 0.2s;
  background-image: linear-gradient(to left top, transparent 43%, var(--theme-green-vivid-color) 43%, var(--theme-green-vivid-color) 57%, transparent 57%);
}
.sidebar-contents .sidebar-plan .sidebar-plan-item .sidebar-plan-item-title {
  padding: 10px;
  width: 80%;
  font-size: 12px;
  margin: 0;
  color: black;
}
.sidebar-contents .sidebar-plan .sidebar-plan-item .sidebar-plan-item-arrow {
  width: 20%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.sidebar-contents .sidebar-plan .sidebar-plan-item .sidebar-plan-item-arrow .sidebar-plan-arrow-rightdown {
  width: 10px;
  height: 10px;
  background-image: linear-gradient(to right top, transparent 47%, var(--theme-green-vivid-color) 47%, var(--theme-green-vivid-color) 53%, transparent 53%);
}
.sidebar-contents .sidebar-plan .sidebar-plan-item .sidebar-plan-item-arrow .sidebar-plan-arrow-rightup {
  width: 10px;
  height: 10px;
  background-image: linear-gradient(to left top, transparent 47%, var(--theme-green-vivid-color) 47%, var(--theme-green-vivid-color) 53%, transparent 53%);
}

.contents-article-sidebar {
  width: 30%;
}
.contents-article-sidebar .sidebar-wrap {
  font-size: 0.9rem;
}
.contents-article-sidebar .sidebar-wrap .sidebar-info {
  padding-bottom: 2rem;
  border-bottom: solid 1px black;
  box-sizing: border-box;
}
.contents-article-sidebar .sidebar-wrap .sidebar-info .sidebar-info-title {
  padding-bottom: 0.9rem;
  font-weight: bold;
  text-align: center;
  color: #1F91BE;
}
.contents-article-sidebar .sidebar-wrap .sidebar-info .sidebar-info-description {
  font-weight: bold;
  text-align: center;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  color: #68CFC3;
}
.contents-article-sidebar .sidebar-wrap .sidebar-info .sidebar-info-button {
  border: #68CFC3 1px solid;
  box-shadow: 0 2px 3px rgba(104, 207, 195, 0.4);
  border-radius: 4px;
  color: #68CFC3;
  text-align: center;
  padding: 1rem;
  margin: auto 2rem;
  width: 200px;
  box-sizing: border-box;
}
.contents-article-sidebar .sidebar-wrap .sidebar-info .sidebar-info-button:hover {
  transition: 0.3s;
  border: #68CFC3 1px solid;
  background-color: #68CFC3;
  color: white;
}
.contents-article-sidebar .sidebar-wrap {
  /*.sidebar-recently-items{
      display: flex;
      flex-direction: column;
      width: 100%;
      padding-bottom: 0;
      padding-top: 0;
      border-bottom: solid 1px black;
      .sidebar-recently-title{
          font-size: 0.9rem;
          font-weight: bold;
          padding-top:1rem;
          padding-bottom: 1rem;
      }
      a{
          justify-content: flex-start;
          .sidebar-recently-item{
              display: flex;
              flex-direction: row;
              width: 100%;
              border-top:#aaa 1px solid;
              margin-bottom: 0;
              font-size: 0.8rem;
              color:black;
              font-weight: bold;
              .sidebar-recently-item-img{

                  //width: 100px;
                  margin:15px;
                  img{
                      width: 60px;
                      height: 60px;
                      object-fit: cover;
                  }
              }
              .sidebar-recently-item-title{
                  margin:15px;
                  align-items: center;
              }
          }
      }
  }*/
}
.contents-article-sidebar .sidebar-wrap .custom-html-widget {
  display: flex;
  align-items: center;
  border-bottom: #f5f7f7 solid 1px;
}
.contents-article-sidebar .sidebar-wrap .custom-html-widget i {
  background-color: black;
  padding: 0.5rem;
  color: white;
  font-size: 2rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
  width: 15%;
  text-align: center;
}
.contents-article-sidebar .sidebar-wrap .custom-html-widget a {
  color: black;
  font-size: 0.8rem;
  font-weight: bold;
}
.contents-article-sidebar .sidebar-wrap ul {
  list-style: none;
}
.contents-article-sidebar .sidebar-wrap ul li {
  padding: 0.5rem 0;
}

.container-contents-profile .container-contents-profile-header {
  position: relative;
  box-sizing: border-box;
}
.container-contents-profile .container-contents-profile-header img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 350px;
}
.container-contents-profile .container-contents-profile-header .profile-header-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container-contents-profile .container-contents-profile-header .profile-header-text {
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents-profile .container-contents-profile-header .profile-header-text .profile-header-text-wrap {
  width: 900px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 600px) {
  .container-contents-profile .container-contents-profile-header .profile-header-text .profile-header-text-wrap {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents-profile .container-contents-profile-header .profile-header-text .profile-header-text-wrap .profile-header-text-title {
  font-size: 50px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 0;
  font-weight: normal;
}
@media (max-width: 600px) {
  .container-contents-profile .container-contents-profile-header .profile-header-text .profile-header-text-wrap .profile-header-text-title {
    font-size: 26px;
  }
}
.container-contents-profile .container-contents-profile-header .profile-header-text .profile-header-text-wrap .profile-header-text-subtitle {
  margin-top: 0px;
  padding-bottom: 10px;
  border-bottom: solid 2px var(--theme-orange-color);
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: normal;
  width: 200px;
  text-align: center;
}
.container-contents-profile .container-contents-profile-header .profile-header-text .profile-header-text-wrap .profile-header-text-description {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}
.container-contents-profile .profile-contents {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
}
.container-contents-profile .profile-contents .profile-contents-padding-left {
  flex: 1;
}
.container-contents-profile .profile-contents .profile-contents-text {
  max-width: 700px;
  box-sizing: border-box;
  padding-left: 1rem;
  padding-right: 50px;
  padding-top: 100px;
  font-size: 16px;
  color: #555;
}
@media (max-width: 600px) {
  .container-contents-profile .profile-contents .profile-contents-text {
    width: 100%;
    padding-right: 1rem;
    padding-top: 30px;
  }
}
.container-contents-profile .profile-contents .profile-contents-text .profile-contents-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
  color: black;
}
.container-contents-profile .profile-contents .profile-contents-text .profile-contents-subtitle {
  font-weight: normal;
  margin: 0;
  font-size: 12px;
  text-align: center;
  margin-bottom: 50px;
  color: black;
}
.container-contents-profile .profile-contents .profile-contents-text dl {
  margin: 3rem auto;
  box-shadow: 5px 5px var(--theme-orange-color);
}
.container-contents-profile .profile-contents .profile-contents-text dl dt {
  float: left;
  clear: left;
  width: 250px;
  height: 50px;
  padding-left: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  font-weight: bold;
  border-top: #ccc solid 1px;
  border-left: #ccc solid 1px;
}
.container-contents-profile .profile-contents .profile-contents-text dl dt:last-of-type {
  border-bottom: #ccc solid 1px;
}
.container-contents-profile .profile-contents .profile-contents-text dl dd {
  display: flex;
  align-items: center;
  margin-left: 250px;
  height: 50px;
  padding-left: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
  border-top: #ccc solid 1px;
  border-right: #ccc solid 1px;
}
.container-contents-profile .profile-contents .profile-contents-text dl dd:last-of-type {
  border-bottom: #ccc solid 1px;
}
@media (max-width: 600px) {
  .container-contents-profile .profile-contents .profile-contents-text dl dt {
    float: none;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    border-bottom: none;
    border-right: #ccc solid 1px;
  }
  .container-contents-profile .profile-contents .profile-contents-text dl dt:last-of-type {
    border-bottom: none;
  }
  .container-contents-profile .profile-contents .profile-contents-text dl dt {
    height: auto;
    font-size: 0.8rem;
  }
  .container-contents-profile .profile-contents .profile-contents-text dl dd {
    padding-top: 0;
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
    border-top: none;
    border-right: #ccc solid 1px;
    border-left: #ccc solid 1px;
    height: auto;
    font-size: 0.8rem;
    padding-right: 1rem;
  }
}
.container-contents-profile .profile-contents .profile-contents-sidebar {
  padding-left: 50px;
  width: 300px;
  box-sizing: border-box;
  padding-right: 1rem;
  background-color: var(--theme-green-color);
}
@media (max-width: 600px) {
  .container-contents-profile .profile-contents .profile-contents-sidebar {
    display: none;
  }
}
.container-contents-profile .profile-contents .profile-contents-padding-right {
  flex: 1;
  background-color: var(--theme-green-color);
}
@media (max-width: 600px) {
  .container-contents-profile .profile-contents .profile-contents-padding-right {
    display: none;
  }
}
.container-contents-profile .contents-profile-ask {
  padding-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #f5f7f7;
  font-size: 0.9rem;
}
.container-contents-profile .contents-profile-ask a {
  text-align: center;
}
.container-contents-profile .contents-profile-ask a .contents-profile-buttons-askmail {
  border: #68CFC3 1px solid;
  box-shadow: 0 2px 3px rgba(104, 207, 195, 0.4);
  border-radius: 4px;
  color: white;
  background-color: #68CFC3;
  text-align: center;
  padding: 1rem;
  margin: 3rem 2rem;
  margin-top: 1rem;
  width: 550px;
  box-sizing: border-box;
}
.container-contents-profile .contents-profile-ask a .contents-profile-buttons-askmail:hover {
  transition: 0.3s;
  border: #68CFC3 1px solid;
  background-color: white;
  color: #68CFC3;
}
@media (max-width: 600px) {
  .container-contents-profile .contents-profile-ask a {
    width: 90%;
  }
  .container-contents-profile .contents-profile-ask a .contents-profile-buttons-askmail {
    width: 90%;
    box-sizing: border-box;
    margin: 3rem auto;
    margin-top: 1rem;
  }
}

.container-contents-qa .container-contents-qa-header {
  position: relative;
  box-sizing: border-box;
}
.container-contents-qa .container-contents-qa-header img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 350px;
}
.container-contents-qa .container-contents-qa-header .qa-header-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container-contents-qa .container-contents-qa-header .qa-header-text {
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents-qa .container-contents-qa-header .qa-header-text .qa-header-text-wrap {
  width: 900px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 600px) {
  .container-contents-qa .container-contents-qa-header .qa-header-text .qa-header-text-wrap {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.container-contents-qa .container-contents-qa-header .qa-header-text .qa-header-text-wrap .qa-header-text-title {
  font-size: 50px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 0;
  font-weight: normal;
}
@media (max-width: 600px) {
  .container-contents-qa .container-contents-qa-header .qa-header-text .qa-header-text-wrap .qa-header-text-title {
    font-size: 26px;
  }
}
.container-contents-qa .container-contents-qa-header .qa-header-text .qa-header-text-wrap .qa-header-text-subtitle {
  margin-top: 0px;
  padding-bottom: 10px;
  border-bottom: solid 2px var(--theme-orange-color);
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: normal;
  width: 200px;
  text-align: center;
}
.container-contents-qa .container-contents-qa-header .qa-header-text .qa-header-text-wrap .qa-header-text-description {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}
.container-contents-qa .qa-contents {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
}
.container-contents-qa .qa-contents .qa-contents-padding-left {
  flex: 1;
}
.container-contents-qa .qa-contents .qa-contents-text {
  max-width: 700px;
  box-sizing: border-box;
  padding-left: 1rem;
  padding-right: 50px;
  padding-top: 100px;
  font-size: 16px;
  color: #555;
}
@media (max-width: 600px) {
  .container-contents-qa .qa-contents .qa-contents-text {
    width: 100%;
    padding-right: 1rem;
    padding-top: 30px;
  }
}
.container-contents-qa .qa-contents .qa-contents-text .qa-contents-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
  color: black;
}
@media (max-width: 600px) {
  .container-contents-qa .qa-contents .qa-contents-text .qa-contents-title {
    font-size: 24px;
  }
}
.container-contents-qa .qa-contents .qa-contents-text .qa-contents-title-item {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
  margin-top: 50px;
  font-weight: bold;
  color: black;
}
@media (max-width: 600px) {
  .container-contents-qa .qa-contents .qa-contents-text .qa-contents-title-item {
    font-size: 24px;
  }
}
.container-contents-qa .qa-contents .qa-contents-text .qa-contents-subtitle {
  font-weight: normal;
  margin: 0;
  font-size: 12px;
  text-align: center;
  margin-bottom: 50px;
  color: black;
}
.container-contents-qa .qa-contents .qa-contents-text .qa-faq-item-wrap {
  box-sizing: border-box;
  padding-bottom: 20px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 50px;
}
.container-contents-qa .qa-contents .qa-contents-text .qa-faq-item-wrap .faq-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px #ccc solid;
  box-sizing: border-box;
}
.container-contents-qa .qa-contents .qa-contents-text .qa-faq-item-wrap .faq-item .faq-item-chk {
  display: none;
}
.container-contents-qa .qa-contents .qa-contents-text .qa-faq-item-wrap .faq-item .faq-item-lbl {
  width: 100%;
}
.container-contents-qa .qa-contents .qa-contents-text .qa-faq-item-wrap .faq-item .faq-item-lbl .faq-item-lbl-content {
  box-sizing: border-box;
  font-size: 16px;
  display: block;
  width: 100%;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.container-contents-qa .qa-contents .qa-contents-text .qa-faq-item-wrap .faq-item .faq-item-lbl .faq-item-lbl-content::after {
  display: block;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-size: 30px;
  font-weight: 900;
  color: var(--theme-orange-color);
  /*position: absolute;
  top:0;
  right: 0;*/
}
.container-contents-qa .qa-contents .qa-contents-text .qa-faq-item-wrap .faq-item .faq-item-text {
  box-sizing: border-box;
  font-size: 16px;
  line-height: 30px;
  opacity: 0;
  visibility: hidden;
  padding: 0 15px;
  margin-left: 20px;
  background-color: var(--theme-green-color);
  height: 0;
}
@media (max-width: 600px) {
  .container-contents-qa .qa-contents .qa-contents-text .qa-faq-item-wrap .faq-item .faq-item-text {
    margin-left: 0;
  }
}
.container-contents-qa .qa-contents .qa-contents-text .qa-faq-item-wrap .faq-item .faq-item-text .faq-item-text_content {
  padding: 5px;
}
.container-contents-qa .qa-contents .qa-contents-text .qa-faq-item-wrap .faq-item .faq-item-chk:checked + .faq-item-lbl > .faq-item-lbl-content::after {
  content: "\f068";
}
.container-contents-qa .qa-contents .qa-contents-text .qa-faq-item-wrap .faq-item .faq-item-chk:checked + .faq-item-lbl + .faq-item-text {
  opacity: 1;
  visibility: visible;
  padding: 15px;
  height: auto;
  box-sizing: border-box;
  transition: 0.5s;
  margin-top: 20px;
}
.container-contents-qa .qa-contents .qa-contents-sidebar {
  padding-left: 50px;
  width: 300px;
  box-sizing: border-box;
  padding-right: 1rem;
  background-color: var(--theme-green-color);
}
@media (max-width: 600px) {
  .container-contents-qa .qa-contents .qa-contents-sidebar {
    display: none;
  }
}
.container-contents-qa .qa-contents .qa-contents-padding-right {
  flex: 1;
  background-color: var(--theme-green-color);
}
@media (max-width: 600px) {
  .container-contents-qa .qa-contents .qa-contents-padding-right {
    display: none;
  }
}
.container-contents-qa .contents-profile-ask {
  padding-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #f5f7f7;
  font-size: 0.9rem;
}
.container-contents-qa .contents-profile-ask a {
  text-align: center;
}
.container-contents-qa .contents-profile-ask a .contents-profile-buttons-askmail {
  border: #68CFC3 1px solid;
  box-shadow: 0 2px 3px rgba(104, 207, 195, 0.4);
  border-radius: 4px;
  color: white;
  background-color: #68CFC3;
  text-align: center;
  padding: 1rem;
  margin: 3rem 2rem;
  margin-top: 1rem;
  width: 550px;
  box-sizing: border-box;
}
.container-contents-qa .contents-profile-ask a .contents-profile-buttons-askmail:hover {
  transition: 0.3s;
  border: #68CFC3 1px solid;
  background-color: white;
  color: #68CFC3;
}
@media (max-width: 600px) {
  .container-contents-qa .contents-profile-ask a {
    width: 90%;
  }
  .container-contents-qa .contents-profile-ask a .contents-profile-buttons-askmail {
    width: 90%;
    box-sizing: border-box;
    margin: 3rem auto;
    margin-top: 1rem;
  }
}

.container-footer {
  width: 100%;
  background-color: var(--theme-orange-color);
  color: white;
}
.container-footer .breadcrumb-wrap .breadcrumb-inner {
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  padding: 0 1rem;
  padding-top: 30px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
}
.container-footer .breadcrumb-wrap .breadcrumb-inner ul {
  list-style: none;
  line-height: 1rem;
  display: flex;
  align-items: center;
}
.container-footer .breadcrumb-wrap .breadcrumb-inner ul li {
  box-sizing: border-box;
  display: inline;
  line-height: 3rem;
  font-size: 0.9rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.container-footer .breadcrumb-wrap .breadcrumb-inner ul li:first-child {
  padding-left: 0;
}
.container-footer .breadcrumb-wrap .breadcrumb-inner ul li a {
  color: white;
}
@media (max-width: 600px) {
  .container-footer .breadcrumb-wrap {
    display: none;
  }
}
.container-footer .container-footer-wrap {
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  padding: 0 1rem;
  padding-top: 20px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  box-sizing: border-box;
  display: flex;
}
@media (max-width: 600px) {
  .container-footer .container-footer-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.container-footer .container-footer-wrap .container-footer-image {
  width: 25%;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .container-footer .container-footer-wrap .container-footer-image {
    width: 100%;
    justify-content: center;
    margin-top: 50px;
  }
}
.container-footer .container-footer-wrap .container-footer-image img {
  margin-right: 20px;
  height: 100px;
}
.container-footer .container-footer-wrap .container-footer-image .container-footer-image-title {
  font-size: 40px;
  color: white;
}
.container-footer .container-footer-wrap .container-footer-text {
  width: 75%;
  font-size: 14px;
}
@media (max-width: 600px) {
  .container-footer .container-footer-wrap .container-footer-text {
    width: 100%;
  }
}
.container-footer .container-footer-wrap .container-footer-text .footer-nav-list {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .container-footer .container-footer-wrap .container-footer-text .footer-nav-list {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .container-footer .container-footer-wrap .container-footer-text .footer-nav-list li {
    margin-top: 50px;
    text-align: center;
  }
}
.container-footer .container-footer-wrap .container-footer-text .footer-nav-list li a {
  color: white;
  font-weight: bold;
}
.container-footer .container-footer-wrap .container-footer-text .footer-nav-list ul {
  list-style-type: none;
}
.container-footer .container-footer-wrap .container-footer-text .footer-nav-list ul li {
  margin-top: 10px;
}
.container-footer .container-footer-wrap .container-footer-text .footer-nav-list ul li a {
  color: white;
  font-weight: normal;
}
.container-footer .container-footer-copyright {
  font-size: 0.5rem;
  text-align: center;
  margin-top: 100px;
  padding-bottom: 10px;
}/*# sourceMappingURL=style.css.map */