@charset "UTF-8";

body {
  color: #333;
}

a {
  color: #333;
  text-decoration: none;
}

h1 {
    font-size: max(2vw, 1.5rem);
    font-size: min(2vw, 1rem);
    text-align: left;
}

hr.style-five {
    width: 85%;
    text-align: center;
    margin: auto;
    border: 0;
    height: 0; /* Firefox... */
    box-shadow: 0 0 10px 1px gray;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
}

section {
  padding-block: 30px;
}

.wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding-inline: 20px;
}

.section-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

.section-title2 {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.section-title-en {
  width: fit-content;
  line-height: 1;
  font-size: 4rem;
  font-family: 'Poppins', sans-serif;
  color: #000;
  border-bottom: 4px solid #FF9F00;
  margin-bottom: 10px;
}

.section-title-ja {
  color: #000080;
  font-size: 2rem;
  border-bottom: none;
}

@media (max-width:768px) {
  section {
    padding-block: 30px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title-en {
    font-size: 2rem;
  }

  .section-title-ja {
    font-size: 1rem;
  }
}

/*                                    アニメーション                           */

.underline-before {

	background: linear-gradient(#FF9F00, #FF9F00) 0 100%/0 6px no-repeat;
	/*左から、カラー（始点と終点それぞれ同じものを指定）、position / サイズ横縦 繰り返しの有無 */

	transition: background 3s;
	/*トランジションの設定。下線を引く動きをアニメーションにするのに必要 */

	text-decoration: none;
	/*テキストの装飾の設定 */
}

.underline-after {
	background-size: 100% 6px;
  /* 変化後のスタイル。横サイズを0から100%に変えることで指定の文字列に下線を引く */
}

/*                                    アニメーション 2                          */

article {
  display: flex;
  align-items: center;
  justify-content: center;

}

.item0 {
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.6s ease-out;

}

/* :has() によるスクロール連動風アニメーション */
article:has(.is-visible) .item0 {
  opacity: 1;
  transform: none;
}

/* sentinel は目印 */
.sentinel {
  width: 1px;
  height: 1px;
  visibility: hidden;
}

/*                                    アニメーション 2亜種                        */

animetion {
  display: flex;
}

.item-right {
  opacity: 0;
  transform: translateX(2rem);
  transition: all 0.6s ease-out;
}

/* :has() によるスクロール連動風アニメーション */
animetion:has(.is-visible) .item-right {
  opacity: 1;
  transform: none;
}

/* sentinel は目印 */
.sentinel {
  width: 1px;
  height: 1px;
  visibility: hidden;
}

/*                                      header                              */

header {
  width: 100%;
  height: 70px;
  position: fixed;
  display: flex; 
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 10px 10px;
  background-color: #eee;
  z-index: 100;
}

.header-left {
  display: flex;
  gap: 20px;
  font-size: min(2vw, 1.5rem);
  align-items: center;
  justify-content:flex-start;
}

header ul {
  display: flex;
}

.header-right {
  margin-left: auto;
}

.header-right a {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  font-size: min(1.5vw, 1rem);
  background: #fff;
  color: #0077C0;
  border-bottom: solid 4px #BFBFBF;
  border-radius: 3px;
}

.header-right a:hover {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}

.header-right .open {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}


header li {
  margin-left: 1rem;
}

.toggle-btn {
  display: none;
}


@media (max-width:768px) {
   header {
    width: 100%;
    height: 50px;
  }

  .header-left {
    display: flex;
    gap: 20px;
    font-size: 2.5vw;
    align-items: center;
  }

  .header-right {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 300px;
    color: #fff;
    padding: 60px 25px;
    background-color: #eee;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.5s;
    z-index: 20;
    opacity: 0;
  }

  .header-right ul {
    flex-direction: column;
  }

  .header-right li {
    margin-bottom: 20px;
    z-index: 30;
  }

  .header-right a {
    text-align: center;
    color: #333;
    font-size: 18px;
    display: block;
    padding: 15px 0;
  }

  .toggle-btn {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    z-index: 100;
    cursor: pointer;
  }

  .toggle-btn span {
    display: block;
    position: absolute;
    width: 40px;
    height: 1px;
    background: #5F5C58;
    transition: all 0.5s;
  }

  .toggle-btn span:nth-child(1) {
    top: 22%;
  }

  .toggle-btn span:nth-child(2) {
    top: 50%;
  }

  .toggle-btn span:nth-child(3) {
    top: 78%;
  }

  #mask {
    display: none;
    transition: all 0.5s;
  }

  /*                                               open                                                  */
  .open .header-right {
    left: 0;
    opacity: 1;
  }

  .open .toggle-btn span:nth-child(1) {
    top: 50%;
    transform: rotate(-315deg);
  }

  .open .toggle-btn span:nth-child(2) {
    opacity: 0;
  }

  .open .toggle-btn span:nth-child(3) {
    top: 50%;
    transform: rotate(315deg);
  }


  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.8;
    z-index: 10;
    cursor: pointer;
  }
}


/*                                                              main                                */
main {
  padding-top: 70px;
}

@media (max-width:768px) {
   main {
  padding-top: 50px;
}

}


/*                                                            mainvisual                            */

.mainvisual {
  background-image: url(../img/fv-pc.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.mv-text {
  position: absolute;
  top: 3%;
  left: 3%;
  width: 100%;
}

.mv-top {
  display: inline-block;
  position: relative;
  color: #FF9F00;
  font-size: 3.5vw;
  font-family: corporate-logo-ver2, sans-serif;
  transform: translate(-2%,-2%);
  -webkit-text-stroke-width: 1.5vw;
  margin-top: 10px;
}
.mv-top::after{
  content: attr(data-text);
  position: absolute;
  color: #fff;
  left: 0;
  -webkit-text-stroke-width: 0.8vw;
  z-index: 20;
}
.mv-top::before{
  content: attr(data-text);
  position: absolute;
  color: #FF9F00;
  left: 0;
  -webkit-text-stroke-width: 0;
  z-index: 30;
}

.mv-middle {
  position: absolute;
  top: 320%;
  width: 100%;
  font-family: Zen Maru Gothic, serif;
  font-size: 4.5vw;
  font-weight: 900;
  color: #000080;
  text-shadow:
    3px 3px 0 #fff, -3px -3px 0 #fff,
    3px -3px 0 #fff, -3px 3px 0 #fff,
    3px 0px 0 #fff, -3px 0px 0 #fff,
    0px 3px 0 #fff, 0px -3px 0 #fff,

    5px 5px 0 #333, -5px -5px 0 #333,
    5px -5px 0 #333, -5px 5px 0 #333,
    5px 0px 0 #333, -5px 0px 0 #333,
    0px 5px 0 #333, 0px -5px 0 #333;
  margin-bottom: 20px;
}

@media (max-width:768px) {
  .mainvisual {
    background-image: url(../img/fv-sp.jpg);
    background-position: 0% 35%;
    height: 38vh;
  }

  .mv-text {
    width: 100%;
    position: absolute;
    top: 2%;
    right: 0;
    padding-inline: 10px;
  }

  .mv-top {
    font-size: max(1.5rem, 4vw);
    margin-bottom: 50px;
  }

  .mv-middle {
    top: 150%;
    margin-bottom: 50px;
    font-size: max(1.8rem, 5vw);
  }

  .mv-middle br {
    display: inline;
  }

}

/*                                                   top-text                                            */
.top-text {
  padding-block: 50px;
}

.top-textbox {
  position: relative;
  padding: 30px;
  background: #EEEEEE;
  box-shadow: 15px 15px #333;
}
.top-br {
  display: none;
}

.top-textbox p {
  font-size: 1.5rem;
  text-indent: 1rem;
  line-height: 1.5;

}

.top-textbox p span {
  color: #0077C0;
}

@media (max-width:768px) {

  .top-br {
    display: inline;
  }

  .top-textbox p {
    font-size: 1rem;
    text-indent: 1rem;
  }
}

/*                                お悩み                               */
.worries {
  padding-block: 30px;
  position: relative;
  background: #E0F2F7;
  text-align: center;
}

.worries .wrapper::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  bottom: -80px;
  left: 50%;
  transform: translate(-50%, -100px);
  border-style: solid;
  border-width: 114px 72px 0px 72px;
  border-color: #E0F2F7 transparent transparent transparent;
  opacity: 0;
}

.fadein .wrapper::after {
  transform: translate(-50%, 0);
  transition: all 1.5s;
  opacity: 1;
}

.worries-title {
  text-align: center;
  font-family: corporate-logo-ver2, sans-serif;
  font-size: 2.3rem;
  color: #000080;
  margin-bottom: 50px;
  line-height: 1.1;
}

.worries-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.worries-circle {
  height: 275px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  background: #fff;
}

.worries-circle p {
  display: inline-block;
  width: 100%;
  font-size: 1.75rem;
}

.worries-br {
  display: none;
}

.worries-br2 {
  display: inline;
}

@media (max-width:768px) {
  .worries-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }

  .worries-item p {
    font-size: 1.1rem;
    letter-spacing: -0.1rem;
  }

  .worries-circle {
    border-radius: 40px;
    height: 100px;
    width: 100%;
  }

  .worries-br {
    display: inline;
  }

  .worries-br2 {
    display: none;
  }

  .worries img {
    width: 50%;
  }
}

/*                                feature                                 */
.feature {
  position: relative;
}

.feature-box {
  margin: 0 auto;
  max-width: 960px;
  border-radius: 20px;
  border: 1px solid #333;
  padding-block: 30px;
  padding-inline: 100px;
  background: #E0F2F7;
}

.feature-box li {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.feature-box p {
  vertical-align: middle;
  margin-top: 5px;
}

.feature-box li img {
  width: 48px;
  margin-right: 70px;
}

.feature-img {
  position: absolute;
  top: 65%;
  right: 0;
  max-width: 250px;
  width: 100%;
}

@media (max-width:768px) {
  .feature {
    margin-top: 50px;
    margin-bottom: 80px;
  }

  .feature-box li img {
    width: 30px;
    margin-right: 20px;
  }

  .feature-box {
    padding-bottom: 20px;
    padding-inline: 15px;
  }

  .feature-box li {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .feature-img {
    top: auto;
    bottom: 0;
    right: 5%;
    width: 30%;
  }
}

/*                                BA                            */
.BA {
  background: #E0F2F7;
}

.ba-cover {
  position: relative;
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 60px;
}

.ba-arrow {
  position: absolute;
  top: 30%;
  left: 42%;
  width: 10%;
}

.before-item,
.after-item {
  width: 45%;
}

.before-title {
  width: fit-content;
  font-size: 2rem;
  border-bottom: 3px solid #0077C0;
  margin-bottom: 10px;
}

.before-message {
  display: block;
  width: 50%;
  margin: 0 auto;
  position: relative;
  font-size: 2rem;
  padding: 20px;
  border-radius: 30px;
  background: #fff;
}

.before-message::after {
  position: absolute;
  content: "";
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 10px 17.3px 10px;
  border-color: transparent transparent #ffffff transparent;
}

.before-img,
.after-img {
  width: 75%;
}

.after-item {
  margin-left: 20px;
}

.ba-stars-top {
  position: absolute;
  top: 10%;
  left: 43%;
}

.ba-stars-bottom {
  position: absolute;
  bottom: -6%;
  right: 5%;
}

.after-title {
  width: fit-content;
  font-size: 2rem;
  border-bottom: 3px solid #FF9F00;
  margin-bottom: 10px;
}

@media (max-width:768px) {
  .ba-cover {
    margin-bottom: 30px;
  }

  .ba-arrow {
    position: absolute;
    top: 52%;
    left: 43%;
    width: 10%;
  }

  .before-title,
  .after-title {
    font-size: 1.5rem;
  }

  .before-img,
  .after-img {
    width: 85%;
  }

  .before-message {
    font-size: 1rem;
    width: fit-content;
  }


  .before-message::after {
    top: -10%;
  }

  .ba-stars-top {
    width: 15%;
    left: 46%;
  }

  .ba-stars-bottom {
    width: 15%;
    right: -2%;
  }

}

/*                                    introduce                            */
.introduce {
  padding-block: 30px;
}

.introduce-title {
  position: relative;
  padding-block: 30px;
  text-align: center;
  font-size: 2rem;
  color: #0077C0;
}

.introduce-title:before {
  position: absolute;
  left: 20%;
  top: 15%;
  content: "";
  width: 2px;
  height: 60%;
  background: #0077C0;
  border-radius: 3px;
  transform: rotate(-25deg);
}

.introduce-title::after {
  position: absolute;
  content: "";
  right: 20%;
  top: 15%;
  width: 2px;
  height: 60%;
  background: #0077C0;
  border-radius: 3px;
  transform: rotate(25deg);
}

.introduce-cover {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-inline: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.introduce-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.introduce-item img {
  position: relative;
  width: 100%;
}

.introduce-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  display: inline-block;
  color: #ffffff;
  opacity: 0.7;
  font-size: 1.75rem;
  -webkit-text-stroke: 5px #000;
  paint-order: stroke;
  background: #ffffff;
  z-index: 15;
}

@media (max-width:768px) {
  .introduce-title {
    font-size: 1.25rem;
  }

  .introduce-title:before {
    top: 38%;
    left: 5%;
    height: 30%;
  }

  .introduce-title::after {
    top: 38%;
    right: 5%;
    height: 30%;
  }

  .introduce-cover {
    grid-template-columns: repeat(2, 1fr);
  }

  .introduce-text {
    font-size: 1.25rem;
  }
}


/*                               flow                           */

.flow-cover {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-bottom: 50px;
}

.flow-item {
  position: relative;
  height: 100%;
  padding-block: 20px;
  padding-inline: 10px;
  display: flex;
  flex-direction: column;
  width: fit-content;
  height: fit-content;
  text-align: center;
  background: #E0F2F7;
}

.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -48px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0px 25px 35px;
  border-color: transparent transparent transparent #0077C0;
}

.flow-item img {
  width: 60px;
  margin-bottom: 30px;
}

.flow-item p {
  height: 450px;
  display: flex;
  text-align: center;
  align-items: center;
  font-size: 1.5rem;
  writing-mode: vertical-lr;
}

.flow-text {
  border: 1px solid #333;
  padding: 20px 40px;
  box-shadow: 15px 15px #333;
}

.flow-text h3 {
  width: fit-content;
  font-size: 2vw;
  margin-bottom: 30px;
}

.flow-text h3 span {
  font-size: min(3vw, 2.25rem);
}

.flow-br {
  display: none;
}

.flow-text p {
  font-size: 1.5rem;
  text-indent: 1rem;
  line-height: 1.5;
}

.flow-text span {
  font-weight: bold;

}


@media (max-width:768px) {
  .flow {
    margin-bottom: 30px;
  }

  .flow-cover {
    flex-direction: column;
    gap: 15px;
  }

  .flow-item {
    width: 100%;
    height: 60px;
    flex-direction: row;
    justify-content: space-between;
    padding-block: 10px;
    margin-bottom: 30px;
  }

  .flow-item p {
    writing-mode: horizontal-tb;
    width: 80%;
    height: 80%;
    justify-content: center;
    font-size: 1.25rem;
  }

  .flow-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 15px 0px 15px;
    border-color: #0077C0 transparent transparent transparent;
  }

  .flow-item img {
    width: 20%;
    margin-bottom: 0;
  }

  .flow-br {
    display: inline;
  }

  .flow-text {
    padding-inline: 20px;
  }

  .flow-text h3 {
    font-size: min(3vw, 2rem);
  }

  .flow-text h3 span {
    font-size: min(5vw, 1.5rem);
  }

  .flow-text p {
    font-size: 1rem;
  }

  .flow-text span {
    font-size: 1rem;
    font-weight: bold;
  }
}


/*                              対応エリア                     */
.area {
  background: #E0F2F7;
}

.area-cover {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.area-left {
  width: fit-content;
  font-size: 2rem;
  border-bottom: 3px solid #FF9F00;
}

.area-right {
  position: relative;
  width: 60%;
  padding: 30px 80px;
  background: #fff;
}

.area-br {
  display: none;
}

.area-right h3 {
  font-size: min(2.3vw, 1.75rem);
  margin-bottom: 20px;
}

.area-right p {
  display: inline-block;
  font-size: 1.5rem;
  text-indent: 1rem;
}

.area-right::after {
  position: absolute;
  content: "";
  top: 30%;
  left: -30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 52px 78px 52px 0px;
  border-color: transparent #ffffff transparent transparent;
}

@media (max-width:768px) {
  .area {
    margin-bottom: 20px;
  }

  .area-cover {
    flex-direction: column;
  }

  .area-left {
    display: flex;
    font-size: 1.5rem;
    margin-bottom: 50px;
  }

  .area-left p {
    display: inline-block;
  }

  .area-right h3 {
    font-size: min(1.5rem, 4.5vw);
  }

  .area-right {
    position: relative;
    width: 100%;
    padding: 20px;
  }

  .area-right p {
    font-size: 1rem;
  }

  .area-right::after {
    position: absolute;
    content: "";
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 10px 17.3px 10px;
    border-color: transparent transparent #ffffff transparent;
  }
}
 
/*                             contact                                */
.contact-top {
  margin: 0 auto;
  font-size: 2.3rem;
  text-align: center;
  padding-bottom: 5px;
  text-decoration: underline 3px solid #FF9F00;
  margin-bottom: 30px;
}

.contact-br {
  display: none;
}

.contact-bottom {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.7);
  padding: 30px;
}

.contact-bottom img {
  margin-right: 20px;
  width: 60px;
  height: 60px;
}

.contact-bottom a {
  transition: all 0.3s;
}

.contact-bottom a:hover {
  transform: scale(1.1, 1.1);
}

.contact-mail,
.contact-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  font-size: 1.5rem;
  padding: 10px;
  box-shadow: 15px 15px #333;
}

.contact-mail {
  width: 40%;
  color: #fff;
  background: #FF9F00;
}

.phone-box {
  width: 40%;
}

.contact-phone {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  color: #fff;
  background: #0077C0;
}

.contact-phone span {
  display: block;
}

.contact-attention {
  margin-left: 40px;
  font-size: min(1rem, 3vw);
}

.contact-attention span {
  padding-left: 1rem;
}

@media (max-width:768px) {
  .contact-top {
    text-align: center;
    font-size: 1.5rem;
  }

  .contact-br {
    display: none;
  }

  .contact-bottom {
    flex-direction: column;
    text-align: center;
    padding-inline: 0;
  }

  .contact-mail,
  .phone-box {
    font-size: 1.25rem;
    width: 85%;
    margin: 0 auto;
  }

  .contact-mail {
    margin-bottom: 40px;
  }

  .phone-text {
    font-size: 1rem;
  }

  .contact-attention {
    display: block;
    margin-left: 40px;
    text-align: left;
  }
}

/*                                   footer                             */
footer {
  background: rgba(255, 159, 0, 0.7);
}

footer .wrapper {
  display: flex;
  justify-content: space-between;
  padding-block: 30px;
}

.to-top {
  position: fixed;
  pointer-events: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FF9F00;
  border: 1px solid #fff;
  bottom: 30px;
  right: 30px;
  z-index: 15;
}

.to-top::after {
  content: "";
  position: absolute;
  border-bottom: 8px solid #fff;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  position: relative;
  bottom: 5px;
  left: 16px;
}

.contact-btn {
  position: fixed;
  pointer-events: auto;
  width: 300px;
  height: 50px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  background: #FF9F00;
  border: 1px solid #fff;
  box-shadow: 5px 5px #333;
  bottom: 100px;
  right: 30px;
  padding: 10px;
  padding-inline: 10px;
  transition: all .3s;
  z-index: 50;
}

.contact-btn:hover {
  transform: scale(1.1, 1.1);
}

.contact-btn img {
  width: 15%;
}

.footer-name {
  font-size: 2rem;
}

.footer-adress {
  margin-bottom: 20px;
}

.footer-right {
  width: 25%;
}

.footer-right li {
  position: relative;
  margin-bottom: 10px;
}

.footer-right li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0px 8px 16px;
  border-color: transparent transparent transparent #333333;
}

footer small {
  font-size: 0.75rem;
  color: #333;
  display: flex;
  justify-content: center;
  padding-block: 5px;
}

@media (max-width:768px) {
  footer .wrapper {
    flex-direction: column;
  }

  .to-top {
    bottom: 10px;
  }

  .contact-btn {
    width: 250px;
    height: 50px;
    border-radius: 30px;
    gap: 5px;
    bottom: 80px;
    padding-inline: 10px;
  }


  .footer-name {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-left {
    margin-bottom: 20px;
  }

  .footer-right {
    margin-left: 30px;
  }
}

/*                                  about                                */
/*                                  about visual                            */

.aboutvisual {
  background-image: url(../img/fv-pc2.jpg);
  background-position: 0% 50%;
  background-repeat: no-repeat;
  position: relative;
  text-align:center;
  display: block;
  margin: 0 80px 0 80px;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

@media (max-width:768px) {
  .aboutvisual {
    background-image: url(../img/fv-sp2.jpg);
    background-position: 0% 75%;
    margin: 0;
    height: 38vh;
  }

  .mv-text {
    width: 100%;
    position: absolute;
    top: 2%;
    right: 0;
    padding-inline: 10px;
  }
}

/*                               description                             */
.description-text {
  padding: 20px 80px;
  background: #EEEEEE;
  box-shadow: 15px 15px #333;
  margin-bottom: 80px;
}

.description-text p {
  font-size: 1.25rem;
  text-indent: 1.25rem;
  margin-bottom: 5px;
  line-height: 1.5;
}

.description-text span {
  font-size: 1.5rem;
  color: #0077C0;
}

.description-cover {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.description-item {
  width: 23%;
  padding: 20px;
  border: 3px solid #0077C0;
  background: #fff;
  border-radius: 30px;
  text-align: center;
}

.description-item h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.25rem;
  color: #0077C0;
}

.description-item p {
  font-size: 1.25rem;
  text-align: left;
}

.description-item span {
  display: inline;
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.description-bottomtext {
  font-size: 2rem;
  line-height: 2;
  display: inline;
}

.description-br {
  display: none;
}

.description-bottomtext .text-top {
  text-align: center;
  font-size: min(1.5rem, 4vw);
  color: #0077C0;
  margin: 0 auto;
  margin-bottom: 20px;
  text-decoration: underline;
  text-decoration-color: #FF9F00;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.description-bottomtext .text-bottom {
  color: #333;
  text-align: center;
}

@media (max-width:768px) {
  .description-text {
    padding-inline: 10px;
  }

  .description-text p {
    font-size: 1rem;
  }

  .description-text span {
    font-size: 1.25rem;
  }

  .description-cover {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .description-item {
    width: 100%;
    padding: 10px;
  }

  .description-item h3 {
    font-size: 1rem;
  }

  .description-item span {
    font-size: 1.25rem;
  }

  .description-item p {
    font-size: 1rem;
    text-align: left;
  }

  .description-bottomtext {
    font-size: 1.25rem;
  }

  .description-br {
    display: inline;
  }
}

/*                                    item                               */
.item {
  background: #E0F2F7;
}

.item-text {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
}

.item-br {
  display: none;
}

.item-container {
  position: relative;
  background: #fff;
  border: 1px solid #333;
  padding: 50px;
  margin-bottom: 60px;
}

.material-title,
.place-title {
  position: absolute;
  top: -5%;
  left: 10%;
  width: 242px;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

.material-title {
  color: #FFF;
  background: #000080;
  -webkit-text-stroke: 2px #000;
  paint-order: stroke;

}

.place-title {
  color: #fff;
  background: #FF9F00;
  -webkit-text-stroke: 2px #000;
  paint-order: stroke;
}

.material-item span {
  font-size: 1.75rem;
}

.material-list {
  margin-bottom: 20px;
}

.material-list span {
  font-size: 1.5rem;
}

.material-br {
  display: none;
}

.item-undertext {
  margin: 0 auto;
  position: relative;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 50px;
}

.item-undertext::before {
  position: absolute;
  content: "";
  left: 2%;
  top: 15%;
  width: 3px;
  height: 75%;
  background: #FF9F00;
  border-radius: 3px;
  transform: rotate(-25deg);
}

.item-undertext::after {
  position: absolute;
  content: "";
  right: 2%;
  top: 15%;
  width: 3px;
  height: 75%;
  background: #FF9F00;
  border-radius: 3px;
  transform: rotate(25deg);
}

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

@media (max-width:768px) {
  .item-text {
    font-size: 1.5rem;
  }

  .item-br {
    display: inline;
  }

  .item-container {
    padding: 30px 10px;
  }

  .material-title,
  .place-title {
    width: 150px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
  }

  .material-item span {
    font-size: 1.25rem;
  }

  .material-list span {
    font-size: 1rem;
  }

  .material-br {
    display: inline;
  }

  .item-undertext {
    font-size: 1.1rem;
    letter-spacing: -0.1rem;
    max-width: 90%;
  }

  .item-undertext::before {
    left: 0;
  }

  .item-undertext::after {
    right: 0;
  }

  .item-bottomtext {
    font-size: 1.2rem;
    letter-spacing: -0.1rem;
  }
}

/*                                     scene                             */
.scene-cover {
  display: flex;
  justify-content: space-between;
}

.scene-item {
  position: relative;
  width: 30%;
  height: 580px;
  border: 4px solid #000080;
  border-radius: 30px;
  padding: 20px;
}

.scene-title {
  width: fit-content;
  font-size: 2rem;
  border-bottom: 3px solid #FF9F00;
  font-weight: 500;
  margin: 0 auto;
  margin-bottom: 20px;
}

.scene-item ul {
  font-size: 1.5rem;
  margin-left: 40px;
}

.scene-item li {
  position: relative;
}

.scene-item li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background: #333;
}

.scene-item img {
  position: absolute;
  bottom: 0;
  width: 90%;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

@media (max-width:768px) {
  .scene-cover {
    flex-direction: column;
  }

  .scene-item {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
    padding: 10px;
  }

  .scene-title {
    font-size: 1.5rem;
  }

  .scene-list {
    display: flex;
    justify-content: center;
  }

  .scene-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .scene-list img {
    position: static;
    width: 50%;
    margin: 0;
    height: auto;
  }

  .scene-item ul {
    font-size: 1rem;
  }

}

/*                                   message                            */
.message-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.message-left {
  width: 40%;
  display: flex;
  justify-content: center;
}

.message-left img {
  width: 40%;
}

.message-right {
  width: 70%;
  background: #EEEEEE;
  padding: 20px;
  box-shadow: 15px 15px #333;
}

.message-right p {
  font-size: 1.3rem;
  text-indent: 1.5rem;
  line-height: 1.5;
}

@media (max-width:768px) {
  .message-container {
    flex-direction: column-reverse;
  }

  .message-left {
    width: 0%;
  }

  .message-right {
    width: 100%;
    margin-bottom: 20px;
  }

  .message-right p {
    font-size: 1.1rem;
  }
}

/*                                    company                            */
.company {
  background: #FFF;
}

.company-detail {
  width: 100%;
  height: 100%;
  font-size: 1.25rem;
  background: #fff;
  padding: 10px;
  margin-bottom: 10px;
}

.company-detail dl {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 20% 80%;
}

.company-detail dt {
  text-align-last: justify;
  padding: 10px 20px;
  font-weight: bold;
  font-family: corporate-logo-ver2, sans-serif;
  color: #FFF;
  background-color: #000080;
  border: 2px solid #FFF;
}

.company-detail dd {
  padding:10px 10px 10px 40px;
  font-family: corporate-logo-ver2, sans-serif;
  background-color: #EEEEEE;
  vertical-align: middle;
  border: 2px solid #fff;
}

.company-detail br {
    display: none;
    line-height: 2;
}

@media (max-width: 768px) {
  .company-container {
    flex-direction: column;
  }

  .company-detail {
    margin: 0 auto;
    font-size: 1;
    padding: 10px;
  }

  .company-detail dl {
    width: 100%;
    display: block;
    font-size: 1.1rem;;
  }

  .company-detail dt {
    display: block;
    width: 100%;
    margin: 0;
    text-align-last: left;
    border: 1px solid #fff;
  }

  .company-detail dd {
    display: block;
    width: 100%;
    border: 1px solid #fff;
  }

  .company-detail br {
    display: inline;
    line-height: 1;
  }

}

/*                                  お問い合わせ                          */
.contact-page {
  font-size: 1.5rem;
  line-height: 1.5;
}

.contact-title2 {
  color: #000080;
  font-size: 2rem;
}

.qa-link a {
  color: #FF9F00;
  text-decoration: underline;
}

.contact-form {
  padding-block: 0 50px;
}

.contact-form input,
textarea {
  border: 1px solid #333;
  background: #fff;
}

.form-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-form input {
  width: 40%;
  padding: 5px;
}

.form-radio-group input {
  width: 20px;
}

.form-radio-group label {
  margin-right: 20px;
}

.form-item textarea {
  height: 200px;
  padding: 10px;
  margin-bottom: 40px;
}

.form-btn-container {
  text-align: center;
}

.form-btn-container input {
  width: 400px;
  height: 60px;
  border-radius: 30px;
  font-size: 1.5rem;
  border: none;
  color: #fff;
  background: #FF9F00;
}

.submit-btn {
  transition: all 0.3s;
}

.submit-btn:hover {
  transform: scale(1.1, 1.1);
}

.faq-table tr {
  display: flex;
  padding-bottom: 10px;
}

.faq-table tr:nth-child(even) {
  border-bottom: 1px solid #333;
  margin-bottom: 20px;
}

.faq-table {
  width: 100%;
  border-collapse: collapse;
}

.q-icon,
.a-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  border-radius: 50%;
  margin-right: 12px;
  font-size: 14px;
  flex-shrink: 0;
}

.q-icon {
  background-color: #0077C0;

}

.a-icon {
  background-color: #FF9F00;
}

.q-text {
  margin-bottom: 10px;
}

.qa-content {
  margin-bottom: 20px;
}

.imgsize {
  height: 1.8rem;
  vertical-align: middle;
  margin-left: 5px;
}

::placeholder {
   font-size: 0.75em;
   color: #aaa;
}

@media (max-width:768px) {
  .contact-page {
    font-size: 1rem;
    line-height: 1.5;
  }

.contact-title2 {
  font-size: 1.25rem;
  }

  .contact-form input {
    width: 80%;
  }

  .form-radio-group {
    display: flex;
    flex-direction: column;
  }

  .form-radio-group input {
    width: 20px;
  }

  .contact-qa {
    padding-top: 80px;
  }

  .imgsize {
    height: 1.1rem;
    vertical-align: middle;
  }

}

/*  縁取り
  -webkit-text-stroke: 2px #FFF;
  paint-order: stroke;

   アンダーライン
  border-bottom: 4px solid #FF9F00;

   字間を詰める
  letter-spacing: -0.1rem;

*/