@charset "UTF-8";

/* * {
  outline: 2px solid blue;
} */

/* フリードリヒ大王 */
/* .fredericka-the-great-regular {
  font-family: "Fredericka the Great", serif;
  font-weight: 400;
  font-style: normal;
} */

/* ひな明朝 */
/* .hina-mincho-regular {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-style: normal;
} */

/* Zen Old Mincho */
/* .zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  } */

/* .zen-old-mincho-medium {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
} */

/* .zen-old-mincho-semibold {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
} */

/* .zen-old-mincho-bold {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
} */

/* .zen-old-mincho-black {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-style: normal;
} */

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  font-size: 62.5%;
}

:root {
  --main-color: #516080;
  --main-color01: #d8e7f2;
  --main-color02: #5D7DC1;
  --sab-color: #ed9d52;
  --ttl: #ddcecd;
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-red: #de0e0e;
}

body {
  font-size: 1.5rem;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.6;
  letter-spacing: .05em;
  color: #333;
  background-color: #fff;
  background-color: #e6e6e6;
}

.wrap {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

.container {
  text-align: center;
  font-size: 2rem;
}

a {
  color: #555;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  opacity: .7;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

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

p {
  margin-bottom: 1em;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

span.markker_one {
  background: linear-gradient(#e28b8a, #e28b8a);
    color: #fff;
    padding: 5px;
    border-radius: 5px;
  padding: 0 5px;
}

.markker {
  background: linear-gradient(#e28b8a, #e28b8a);
  color: #fff;
  padding: 5px;
  border-radius: 5px;
}

.markker_thin {
  background: linear-gradient(transparent 85%, rgb(229, 117, 117) 85%);
}

.fwb {
  font-weight: bold;
}

.en {
  font-family: "Fredericka the Great", serif;
}

.sab {
  color: #ed9d52;
}

.red {
  color: #de0e0e;
}

.blue {
  color: cornflowerblue;
}

.bk {
  color: #585858;
}

/* アンダーライン赤 */
.underline {
  text-decoration: underline;
  text-decoration-color: red;
}

.underline-red {
  display: inline;
  background: linear-gradient(to bottom, transparent 90%, red 90%);
}

/* バナー */
.banner {
  width: 550px;
 margin: 60px auto;
}

.banner p {
  font-size: 20px;
  text-align: center;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
  margin-left: 0;
}

/* section */
/* section {
  padding-bottom: 8rem;
} */

.section {
  padding-top: 8rem;
}

/* タイトル */
h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  color: var(--main-color);
}

h3 {
  text-transform: uppercase;
  font-size: 25px;
  color: #585858;
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 5px;
  margin-bottom: 30px;
}

/* ボタン 共通*/

/* solid */
.button_solid a {
  background: #fff;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 220px;
  padding: 10px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  box-shadow: 5px 5px 0 #6bb6ff;
}

.button_solid a:hover {
  background-color: #b3d9ff;
  box-shadow: 0 0 0;
  transform: translate(5px, 5px);
}

/* custom-button */
.btn_content {
  display: flex;
  justify-content: space-evenly
}
.btn_box {
  text-align: center;
}

.custom-button {
  display: inline-block;
  padding: 15px 20px;
  margin-bottom: 30px;
  font-size: 20px;
  color: #333;
  font-weight: 500;
  background-color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.custom-button:hover {
  background-color: #f2f4fb;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.custom-button:active {
  transform: translateY(2px);
}

@media screen and (max-width:768px) {

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

  body {
    overflow-x: hidden;
    font-size: 14px;
  }

  .wrap {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

}

/*================================================
 *  ヘッダー
 ================================================*/
header {
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  box-sizing: border-box;
  padding: 20px 10px;
  background: #e6e6e6;
  height: 100px;
}

header#mainnav {
  transition: background-color .8s ease;
}

#mainnav.scrolled {
  background-color: rgba(255, 255, 255, 0.88);
}

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

/* inner-left */
header .inner-left {
  width: 30%;
  position: relative;
}

header .inner-left h1 {
  font-size: 23px;
  font-family: 'Poiret One', cursive;
}

header .inner-left h1 a {
  color: #fff;
}

header .inner-left h1 a img {
  width: 200px;
}

/* inner-right */
header .inner-right {
  width: 70%;
}

h2.salon_ttl {
  display: none;
}

.menu_list li{
  width: calc(26vw / 5);
  height: 100%;
  position: relative;
}

.global-nav {
  position: relative;
  z-index: 10; 
}

nav.gnav ul {
  text-align: right;
}

nav.gnav ul li {
  display: inline-block;
  padding: 0 12px;
  text-align: center;
  font-size: 10px;
}

nav.gnav ul.menu_list li a {
  color: var(--main-color);
  font-weight: bold;
  font-size: 12px;
}

nav.gnav ul li span {
  display: block;
  font-size: 17px;
  font-family: "Fredericka the Great", serif;
}

.has_child > a span::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 5px 10px; 
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(45deg); 
}

li.has_child ul.has_childNav {
  position: absolute;
  top: 54px;
  left: 0;
  display: none;
  flex-direction: column;
  background-color: #fcfcfc;
  z-index: 20;
}

li.has_child ul.has_childNav li {
  width: 200px;
  text-align: left;
}

nav.gnav ul.menu_list li .large-text a {
  font-size: 20px;
  color: var(--main-color);
  }

.line-friend-btn {
  width: 150%;
  max-width: 180px; 
  height: auto; 
  padding-left: 10px;
}

#side_contact {
  position: fixed;
  display: flex;
  justify-content: space-between;
  top: 200px;
  right: 0;
}

#side_contact ul li a {
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-size: 16px;
  padding: 15px;
  background: #516080;
  border-radius: 10px;
  color: #fff;
}


/* =======================================================
* main
* ======================================================= */
.main {
  position: relative;
  max-width: 1200px;
  width: 100%;
  height: 80vh;
  margin: 100px auto 0;
}

/* .main_row {
  z-index: -1;
} */

.main_txt.rollAnime {
  position: absolute;
  top: 150px;
  left: 50%;
  text-align: center;
  /* font-size: 40px; */
  text-shadow:
  -1px -1px 0 white,
  1px -1px 0 white,
  -1px 1px 0 white,
  1px 1px 0 white;
}

.main_img {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background-image: url(../images/top_img.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  max-width: 1200px;
  width: 100%;
  height: 80vh;

/* object-fit: cover;
object-position: 10% 50%; */


}

.main_title {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 1000px;
  transform: translate(-50%, -50%);
  display: inline-block;
  color: var(--main-color);
  padding: 0 20px 50px;
  text-align: center;
  text-shadow:
    -1px -1px 0 white,
    1px -1px 0 white,
    -1px 1px 0 white,
    1px 1px 0 white;
    font-size: 8rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  line-height: 1;
}

.main_title span {
  font-size: 30px;
}

.rollAnime {
  position: absolute;
  top: 80%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  line-height: 1.2;
  text-align: center;
}

.rollAnime span {
  opacity: 0;
  transform: scale(0) rotateY(0deg);
  display: inline-block;
  font-size: 5rem;
  color: rgb(61, 58, 58);
  text-shadow:
    -1px -1px 0 white,
    1px -1px 0 white,
    -1px 1px 0 white,
    1px 1px 0 white;
}

.rollAnime span.show {
  opacity: 1;
  transform: scale(1) rotateY(360deg);
  /* ズームインしながら360度回転 */
  transition: all 2s cubic-bezier(.77, 0, .175, 1);
}

.second {
  transition-delay: 0s;
}

.main_title p {
  letter-spacing: .5rem;
  font-family: "Pinyon Script", cursive;
}

/*スクロールダウン*/
.scroll {
  position: absolute;
  top: 100%;
  left: -5%;
}

.scroll span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: #8a5252;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.scroll:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 75px;
  }

  100% {
    bottom: -5px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }
}

/* 線の描写 */
.scroll:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 80px;
  background: #333;
}
/*スクロールダウン終了*/

/* =======================================================
* thoughts
* ======================================================= */
.thoughts_container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.thoughts_box {
  width: 55%;
}

.thoughts_img {
  width: 25%;
}

.thoughts_img img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 6px 3px 30px rgba(0, 0, 0, 0.25);
}

/* =======================================================
* tool
* ======================================================= */
.back_color {
  background-color: #e6e6e6;
}

.tool_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.tool_box {
  width: 25%;
  background-color: white;
  border: 2px solid #516080;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tool_box .icon {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.tool_box .loot_text {
  font-size: 1.6rem;
  color: #333;
}

p.lootText {
  font-size: 20px;
  text-align: center;
  margin-top: 30px;
}

/* レスポンシブ対応: 画面幅が768px以下の場合は2列表示 */
@media (max-width: 768px) {
  .tool_box {
    width: 45%;
  }
}

/* =======================================================
*worries悩み
* ======================================================= */
#worries {
  margin-bottom: 30px;
}

h3.worries_ttl {
  display: inline-block;
  border-bottom: none;
  margin-bottom: 0;
}

h3.worries_ttl:first-letter {
  font-size: 1.8em;
  color: #c8430f;
}

.worries_box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 30px;
}

.worries_box img {
  width: 25%;
}

.worries_box p {
  width: 60%;
  font-size: 16px;
}

/* =======================================================
*appraisai
* ======================================================= */
#appraisai {
  background-color: #f4f4f4;
  padding-bottom: 40px;
}
.ttl_bpx {
  display: flex;
  flex-direction: column-reverse;
  line-height: .7;
  gap: 5px;
}

.ttl_bpx p {
  text-align: center;
  font-size: 20px;
}

.highlight {
  font-size: 30px;
  color: rgb(202, 77, 19);
}

.appraisai_container {
  flex-direction: row-reverse;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}

.appraisai_text {
  width: 50%;
}

.appraisai_img {
  width: 30%;
}

.appraisai_img img {
  width: 80%;
}

.refuse {
  max-width: 600px;
  margin: 100px auto 0;
  padding: 0 20px;
}

.no_text {
  margin-top: 10px;
  padding: 0.5em 1em;
  font-weight: bold;
  color: #6091d3;
  background: #FFF;
  border: solid 2px #df5e47;
  border-radius: 10px;
}

.no_text h3 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}

/* =======================================================
*course
* ======================================================= */
section#course {
  margin-bottom: 8rem;
}

.course .accordion_one {
  margin: 0 auto;
}

.course .accordion_one .accordion_header {
  background-color: #b8848c;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  padding: 20px 11%;
  text-align: center;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
}

.course .accordion_one:nth-of-type(2) .accordion_header {
  background-color: #c6a97d;
}

.course .accordion_one:nth-of-type(3) .accordion_header {
  background-color: #70a5cd;
}

.course .accordion_one:nth-of-type(4) .accordion_header {
  background-color: #6d866c;
}

.course .accordion_one:nth-of-type(5) .accordion_header {
  background-color: #6c6e86;
}

.course .accordion_one .accordion_header:hover {
  opacity: .8;
}

.accordion_header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion_header img.icon01 {
  margin-right: 15px;
  /* 一文字分のスペースを追加 */
}

.accordion_header img {
  width: 35px;
}

.course .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}

.course .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}

.course .accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.course .accordion_one .accordion_header .i_box .one_i:before,
.course .accordion_one .accordion_header .i_box .one_i:after {
  display: flex;
  content: '';
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}

.course .accordion_one .accordion_header .i_box .one_i:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}

.course .accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}

.course .accordion_one .accordion_header.open .i_box .one_i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.accordion_inner {
  display: none;
  padding: 30px 30px 5px;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  box-sizing: border-box;
  background-color: #e8eff5;
}

.box_one {

  height: auto;
}

.box_one img {
  width: 20%;
  display: block;
  margin: 0 auto;
}

.accordion_center {
  text-align: center;
}

.accordion_inner h4 {
  font-size: 20px;
  color: #fff;
  background-color: #b8848c ;
  display: inline-block;
  padding: 5px 20px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 20px;
}

.list_flex {
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  gap: 5px;
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

.list_flex li {
  background-color: #dfdfdf;
  padding: 5px 10px;
  text-align: center;
}

.sab_text {
  text-align: center;
  font-size: 20px;
}

.btn_left {
  text-align: center;
  margin-bottom: 30px;
}

.button_design {
  display: inline-block;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #8599a7;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.button_design:hover {
  background-color: #132b3b;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* =======================================================
*instagram
* ======================================================= */
section#instagram {
  margin-bottom: 80px;
}
.eapps-widget-toolbar {
  display: none !important;
}

/* =======================================================
*question
* ======================================================= */
.accordion {
  padding-bottom: 80px;
}
.toggle {
  display: none;
}

.Label_01 {
  padding: 1em;
  display: block;
  color: #fff;
  background: #95afc5;
  margin: 0;
  border-radius: 3px;
  width: 800px;
  margin: 0 auto;
}

.Label_01::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  transform: rotate(135deg);
}

.Label_01,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
  width: 90%;
  margin: 2px auto 0;
  border-radius: 3px;
}

.content {
  /*本文*/
  height: 0;
  padding-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}

.content p {
  margin: 0 10%;
  width: 70%;
}

.toggle:checked+.Label_01+.content {
  /*開閉時*/
  height: auto;
  padding: 20px;
  transition: all .3s;
}

.toggle:checked+.Label_01::before {
  transform: rotate(-45deg) !important;
}

.content a {
  color: rgb(50, 47, 230);
}

/* =======================================================
*sub_main
* ======================================================= */

#sub_main {
  max-width: 1200px;
  width: 100%;
  height: 500px;
  margin: 100px auto 30px;
}

#sub_main .sub_container h1 {
  font-size: 40px;
  color: #585858;
}

#sub_main .sub_container h1 span.en.small_ttl {
  font-size: 34px;
}

.sub_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-evenly
}

.sub_container .sub_img {
  width: 60%;
  margin-top: 20px;
}

.sub_container .sub_img img {
  width: 100%;
  border-radius: 20%;
}

.sub_container .sub_ttl {
  width: 40%;
}

/* =======================================================
*naming、comprehensive共通ページ  total_mane
* ======================================================= */
.total_mane_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.total_box {
  width: 30%;
  border: 1px solid #ccc;
    padding: 10px;
    border-radius: 10px;
    background-color: #f9f9f9; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.total_ttl {
  display: block;
  text-align: center;
  font-size: 22px;
  margin: 10px 0;
}

.top_ttl p {
  font-size: 18px;
}

.sab.fwb.ac {
  display: block;
  text-align: center;
  line-height: 1.5;
}


/* comprehensive */
.total_mane_container.two_rows {
  justify-content: space-evenly
}

.merit {
  margin-top: 100px;
}

.merit {
 display: flex;
 justify-content: space-around
}

.merit img {
  width: 40%;
}

/* =======================================================
*naming
* ======================================================= */
.icon10 {
  width: 40px;
}

.naming_container.pink {
  background-color: #b8848c;
}
.naming_container.yellow {
  background-color: #c6a97d;
}

.naming_container {
  background-color: #6d866c;
  margin-bottom: 20px;
  padding: 0 5px 5px;
  border-radius: 10px;
}

ul.accordion-content {
  background-color: #fff;
  padding: 20px;
}

ul.accordion-content li.contact_box {
  background-color: #effcf7;
  padding: 20px 25px;
}

ul.accordion-content li.contact_box.pink_01 {
  background-color: #fcefef;
}

ul.accordion-content li.contact_box.yellow_01 {
  background-color: #fffaf2;
}

h3.naming_contact.accordion-header {
  border-bottom: none;
  margin-bottom: 0;
 padding: 15px;
  color: #fff;
}

h3.naming_contact.accordion-header span.big {
  font-size: 30px;
}

.naming_contact {
  font-size: 24px;
  text-align: center;
}

h3.contactNo {
  font-size: 22px;
  display: inline-block;
  color: #a43030;
  font-weight: bold;
  border-bottom: none;
}

.accordion-content {
  display: none; 
}

.accordion-header {
  cursor: pointer;
}

.naming_container ul li p {
  font-size: 18px;
}

.naming_container ul li ul li {
  list-style-type: disc;
}

.naming_container ul li ul {
  padding-left: 30px;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #516080;
  margin: 20px auto;
}

/* comprehensiveページ */
.indent {
  padding-left: 36px;
}


/* =======================================================
*initial_appraisal 初期設定鑑定書
* ======================================================= */
#initial_appraisal img {
  width: 100%;
  height: auto;
  object-fit: revert-layer;
  margin: 0 auto 60px;
  display: block;
}

ul.possibility li {
  list-style-type: disc;
  margin-left: 20px;
  font-size: 22px;
}

.initial_appraisalBox {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* ソフトな影 */
  max-width: 800px;
  margin: 40px auto 20px;
}

.initial_appraisalBox p {
  font-size: 18px;
}

.apprasisal_content {
  margin-top: 60px;
  text-align: center;
}

.apprasisal_content h3 {
  font-size: 34px;
}

.apprasisal_content p {
  font-size: 20px;
  text-align: left;
}

.apprasisal_content h4 {
  text-align: left;
 margin: 30px auto 10px;
  font-size: 28px;
  color: #406f70;
}

.apprasisal_content ul {
  text-align: left;
  margin-left: 20px;
}

.apprasisal_content ul li {
  font-size: 22px;
  list-style-type: disc;
 
}

.initial_appraisalBox p.price {
  font-size: 28px;
}

/* =======================================================
*profile
* ======================================================= */
p.about_text {
  padding: 30px;
  font-size: 20px;
}

.about_text span {
  color: #1a2ad9;
}

.profile_box {
  max-width: 500px;
 margin: 0 auto 60px;
}

.profile_container img {
 border-radius: 10px;
}

.profile_name {
  text-align: center;
  margin-top: 20px;
  font-size: 24px;
}

.divination_content p {
  line-height: 1.7;
}

.profile_box span.license {
  text-align: left;
} 

span.aligned-text {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.5; 
}

.chance,
.good_at {
  text-align: center;
}

.chance h4 ,
.good_at h4 {
  font-size: 24px;
  margin-bottom: 20px;
}

.good_at h4 {
  margin-top: 20px;
}

.supplement {
  margin-top: 30px;
  font-size: 24px;
}

/* voice */
#voice {
  margin-bottom: 50px;
}

.voice_container {
  display: flex;
  align-items: center;
  background-color: #ededed;
  padding: 20px;
  border: 1px double #000;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 800px; 
}

.voice_img {
  width: 30%;
}

.voice_img img {
  width: 50%;
  margin: 0 auto;
  display: block;
}

.ttl_box_br {
  text-align: center;
}

.voice_text {
  width: 70%;
}
/* =======================================================
*contact
* ======================================================= */
#contact {
margin-top: 150px;
}

.contact_ttl {
  font-size: 28px;
text-align: center;
}
.policy {
  font-size: 1rem;
  font-weight: normal;
  height: 180px;
  margin-top: 30px;
  margin-bottom: 10px;
  overflow: auto;
  padding: 20px;
  border: 1px solid #c7c4b5;
  border-radius: 3px;
  background: #fff;
}

.policy dt {
  font-size: 16px;
}

.policy dd {
  font-size: 14px;
}

/* =======================================================
*intro
* ======================================================= */

form {
  max-width: 700px;
  margin: 50px auto;
}

label {
  display: block;
  margin: 35px auto 10px;
}

label small {
  font-size: 11px;
}

input[type="email"],
input[type="number"],
input[type="text"],
input[type="tel"],
select,
textarea {
  width: 100%;
  display: block;
  border: 1px solid #ccc;
  outline: none;
  height: 50px;
  line-height: 1.8;
  background: #f9f9f9;
  font-size: 15px;
  padding-left: 10px;
  border-radius: 5px;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', Arial, Verdana, 游ゴシック, YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', メイリオ, Meiryo, sans-serif;
}

textarea {
  height: 300px;
  padding: 10px;
}

form sup {
  background-color: #e65a5a;
  color: #fff;
  font-size: 10px;
  margin-left: 4px;
  padding: 2px 5px;
  border-radius: 3px;
  vertical-align: text-top;
}

form sup.any {
  background-color: #959796;
}

button {
  text-transform: uppercase;
  border: 1px solid #37538a;
  background: var(--main-color);
  color: #fff;
  padding: 15px 80px;
  border-radius: 50px;
  font-size: 15px;
  margin-bottom: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:hover {
  background: #fff;
  color: var(--sab-color);
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

button:active {
  transform: scale(0.98);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.radioBtn {
  position: relative;
  top: 3px;
  cursor: pointer;
  padding-left: 9px;
  display: inline;
  font-weight: normal;
  margin-right: 15px;
  font-size: 15px;
}


/* course_menu 共通*/

.course_menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 
  gap: 20px;
}

.course_item {
  display: block; 
  text-align: center;
  padding: 20px; /* ボックス内の余白 */
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 10px;
  color: #333;
  width: 100%;
  max-width: 200px;
  transition: background-color 0.3s ease; 
  margin: 50px 0;
}

.course_item.pr {
  max-width: 150px;
}

.course_item:hover {
  background-color: #cfcbcb;
}





/* =======================================================
*footer
* ======================================================= */
footer {
  padding: 50px 0;
  background: #8994ac;
}

.footer_name {
  width: 300px;
  text-align: center;

}

.footer_logo {
  max-width: 100%; 
  height: auto;
}



p.footer_name a {
  color: #fff;
}

.footer_menu {
  display: flex;
  margin-bottom: 20px;
  flex-direction: column;
  align-items: flex-start;
}

.footer_menu a {
  color: #fff;
}

.footer_menu li {
  display: inline-block;
  padding: 0 10px;
  font-size: 20px;
  color: #fff;
}

.footer_sns {
  margin-bottom: 60px;
}

.footer_sns li {
  display: inline-block;
  padding: 0 10px;
}

ul.submenu li {
  font-size: 17px;
}

.copyright {
  text-align: center;
  font-size: 11px;
}




/*================================================
 *  ページトップへの戻り
 ================================================*/
 #pagetop {
  position: fixed;
  right: 15px;
  bottom: 10px;
}

#pagetop p.top {
  font-size: 14px;
  position: relative;
  top: 15px;
  left: 0;
  font-family: serif;
  z-index: 20;
}

#pagetop i {
  font-size: 30px;
  color: var(--main-color);
}
