/***********************************************************/
/* Author.     : WEB9                                      */
/* Date.       : Novenber/25/2025                          */
/* Title       : Element Style                             */
/* Description : Shared Style.                             */
/***********************************************************/

/*** Share Style ***/
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
  scroll-padding-top: 135px;
}

body {
  background-color: rgb(255, 255, 255);
}
/* Shared Style */
section {
  margin: 0px auto;
  padding: 15px 0 30px;
  font-family: 'Noto Sans JP', sans-serif;
}

section#heroSec {
  text-align: left !important; 
}

.secWhole {
  text-align: left !important; 
  max-width: 1280px;
  margin: auto;
}

.sectionTheme {
  width: 960px;
  margin: 30px auto;
}

.secContent {
  width: 960px;
  margin: 45px auto;
}

@media (max-width: 960px) and (min-width: 640px){
  .secWhole {
  max-width: 640px;
  margin: auto;
  }

  .sectionTheme {
    width: 640px;
    margin: 30px auto;
  }

  .secContent {
    width: 640px;
    margin: 45px auto;
  }
}

@media (max-width: 639px){
  .secWhole {
    max-width: 100vw;
    margin: auto;
  }

  .sectionTheme {
    width: 90vw;
    margin: 30px auto;
  }

  .secContent {
    width: 90vw;
    margin: 45px auto;
  }
}


/*** Section ***/
/* Individual Style */
#firstViewSec,
#assignmentSec,
#serviceSec,
#planSec,
#faqSec {
  background-color: rgb(255, 255, 255);
}

#solutionSec,
#provisionSec {
  background-color: rgba(240, 240, 240, 0.5);
}


/* Assignment Section */
.presentationWhole {
  width: 600px;
  margin: auto;
  margin-bottom: 45px;
}


@media (max-width: 960px) and (min-width: 640px){
  .presentationWhole {
    width: 600px;
  }
}

@media (max-width: 639px){
  .presentationWhole {
    width: 90vw;
  }
}

.issueLine {
  border-left: 3px solid #4BB492;
  border-top: 1.5px solid rgba(99, 99, 99, 0.45); 
  padding: 30px 0px 30px 75px;
}

.issueLine:first-child {
  border-top: none;
}

.issueLine_title {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  line-height: 26px;
  margin-bottom: 15px;
}

.issueLine_title::before {
  content: "!";
  width: 26px;
  height: 26px;
  background-color: #4BB492;
  border-radius: 50%;
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #FFFFFF;
  font-weight: bold;
  line-height: 26px;
  box-shadow: 1px 1px 3px rgba(125, 125, 125, 0.5);
}

.issueLine_string {
  font-size: 14px;
  font-weight: normal;
  line-height: 30px;
}

@media (max-width: 639px){
  .issueLine {
    padding: 30px 0px 30px 60px;
  }

  .issueLine_title {
    font-size: 14px;
  }
  .issueLine_string {
    font-size: 12px;
  }
}

/* Hero Style */
#heroSec {
  padding: 0;
  margin-top: 108px;
  margin-bottom: 0px;
}

@media (max-width: 767px) {

  #heroSec {
    margin-top: 13px;
  }
}

#heroWhole {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin: auto;
  min-height: 600px;
}

#heroWhole_left {
  flex: 1.5;
}

#heroWhole_themeArea {
  margin: 0vw 7.5vw;
  padding: 10vw 0 5vw;
}

#themeArea_title {
  margin-bottom: 15px;
}

#themeArea_btn {
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 0vw 7.5vw;
  gap: 5vw;
}

#themeArea_btn .btnFrame {
  margin: 15px 0;
}

#heroWhole_right {
  flex: 1;
  overflow: hidden;
  max-height: 680px;
}

#heroWhole_right_media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) and (min-width: 640px){

  #heroWhole_themeArea {
    margin: 0vw 5vw;
    padding: 10vw 0 5vw;
  }

  #themeArea_btn {
    display: block;
    text-align: left;
  }
  #themeArea_btn .btnFrame:first-child {
    margin-bottom: 30px;
  }
} 

@media (max-width: 659px) {
  #heroWhole {
    display: block;
	min-height: 0 !important;
  }

  #heroWhole_left {
    position: relative;
    overflow: hidden;
    background-image: url('../image/regular/item_hero01.jpg');
    background-size: cover;
    background-repeat: no-repeat;
	background-position: 80% 60%;
	min-height: 560px;
  }

 #heroWhole_left::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    inset: 0;
	background-color: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
	pointer-events: none;
  } 

  #heroWhole_themeArea {
    margin: 0vw 5vw;
    padding: 20vw 0 5vw;
  }

  #themeArea_title {
    font-size: 24px;
    color: #FFFFFF;
	padding-top: 0px;
  }

  #themeArea_subtitle {
  	font-size: 16px;
	font-weight: 500;
    color: #FFFFFF;

  }

  #themeArea_btn {
    display: flex;
    padding-bottom: 20vw;
  }

  #heroWhole_right {
    display: none;
  } 
}

@media (max-width: 475px) {

  #heroWhole_left {
	background-position: 80% 140%;
	min-height: 500px;
  }
  
  #heroWhole_themeArea {
    text-shadow: 2px 2px 12px rgba(99,99,99,.75);
    padding: 30vw 0 5vw;
    padding-top: calc(35vw + 25px);
  }

  #themeArea_btn {
    display: block;
  }
}


/* Solutino Section */
.squareCard {
  flex: 1 1 280px;
  max-width: 280px;
  margin: 15px;
  border: 1.5px solid rgba(99, 99, 99, 0.45); 
  box-shadow: 0.5px 0.5px 3px rgba(0, 0, 0, 0.5);
  padding: 30px 15px 15px;
  position: relative;
  background-color: #FFFFFF;
}

@media (max-width: 960px) and (min-width: 640px){
  .squareCard {
    flex: 1 1 280px;
    max-width: 280px;
    min-height: 250px;
  }
}
@media (max-width: 639px){
  .squareCard {
    flex: 1 1 85vw;
    max-width: 85vw;
    min-height: 200px;
  }
}

.squareCard::before {
  display: block;
  width: 45px;
  height: 45px;
  background-color: #39A4E0;
  border-radius: 50%;
  position: absolute;
  left: 20px;
  top: -15px;
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: bold;
  line-height: 45px;
}

.squareCard:nth-child(1)::before {
  content: "01";
}

.squareCard:nth-child(2)::before {
  content: "02";
}

.squareCard:nth-child(3)::before {
  content: "03";
}


.squareCard_title {
  font-size: 16px;
  font-weight: bold;
  line-height: 45px;
  color: #39A4E0;
}

.squareCard_string {
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
}


/* Service Section */
#serviceSec.cardStyle_string {
  line-height: 20px;
}

/* Text Style */
.greenText {
  color: #4BB492;
}

/*** Theme Style ***/
/* Section Theme */
.sectionTheme_title {
  color: #121214;
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
}

.sectionTheme_subtitle {
  color: #121214;
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
}

.sectionTheme_desc {
  color: #121214;
  font-size: 14px;
}

/* Central Theme */
.centralThemeStyle {
  text-align: center;
}

/* Left Theme */
.leftThemeStyle {
  text-align: left;
  padding-bottom: 15px;
  border-bottom: 1.5px solid rgba(57, 164, 224, 0.8);
}

@media (max-width: 639px){
  .sectionTheme_subtitle {
    line-height: 24px;
  }
}


/*** Button Style ***/
/* Shared Button */
.btnFrame {
  margin: 15px auto;
}

.btnFrame_right {
  text-align: right;
}

.btnFrame_center {
  text-align: center;
}

.sharedBtn {
  display: inline-block;
  padding: 5px 45px;
  box-shadow: 1px 3px 3px rgba(125, 125, 125, 0.3);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.5s;
}

.sharedBtn:hover {
  box-shadow: none;
  transform: translateY(3px);
}

.sharedBtn_string {
  font-size: 14px;
  line-height: 30px;
  font-weight: bold;
}

/* First Button */
.firstBtn {
  background-color: #39A4E0;
}

.firstBtn_string {
  color: #FFFFFF;
}

/* Second Button */
.secondBtn {
  background-color: #FFFFFF;
  border: 1.5px solid #39A4E0;;
}

.secondBtn_string {
  color: #39A4E0;
}


/*** Card Style ***/
/* Shared Style */
.cardWhole {
  width: 960px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 30px;
}

@media (max-width: 960px) and (min-width: 640px){
  .cardWhole {
    width: 640px;
  }
}
@media (max-width: 639px){
  .cardWhole {
    width: 90vw;
  }
}

.cardStyle {
  flex: 1 1 280px;
  max-width: 280px;
  height: auto;
  box-shadow: 0.5px 0.5px 3px rgba(125, 125, 125, 0.5);
  border-radius: 15px;
  border: 1px solid rgba(99, 99, 99, 0.45); 
  margin: 15px;
  background-color: #FFFFFF;
}


.cardStyle_media {
  width: 278.5px;
  height: 180px;
  border-radius: 15px 15px 0 0;
  background-size: cover;
  background-position: center;
}


@media (max-width: 639px){

  .cardStyle {
    flex: 1 1 85vw;
    max-width: 85vw;
  }

  .cardStyle_media {
    width: calc(85vw - 2px);
    height: calc(85vw / 1.6);
  }
}

.cardStyle_content {
  padding: 15px 15px 30px;
}

.cardStyle_title {
  font-size: 18px;
  line-height: 30px;
  font-weight: bold;
  color:#39A4E0;
  padding-bottom: 15px;
}

.cardStyle_subtitle {
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  color: #121214;
  padding-bottom: 15px;
}

.cardStyle_string {
  font-size: 14px;
  line-height: 24px;
  font-weight: normal;
  color: #121214;
}

.serviceMenu {
  width: 680px;
  margin: auto;
  margin-bottom: 45px;
}

.serviceMenu_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 15px;
  width: 100%;
  margin: 30px 0 45px;
  padding: 30px;
  border: 2px solid #39A4E0;
  border-radius: 15px;
  position: relative;
}

.serviceMenu_list::before {
  content: "サービスメニュー";
  display: block;
  width: auto;
  height: 45px;
  background-color: #FFFFFF;
  font-weight: bold;
  color: #39A4E0;
  font-size: 16px;
  text-align: center;
  line-height: 45px;
  padding: 0 15px;
  position: absolute;
  top: -22.5px;
  left: 50%;
  transform: translateX(-50%);
}

.serviceMenu_list_item {
  flex: 1 1 120px;
  max-width: 140px;
  min-width: 140px;
  background-color: #FFFFFF;
  padding: 0 5px;
  line-height: 40px;
  border: 1.5px solid #39A4E0;
  border-radius: 5px; 
  font-weight: bold;
  color: #39A4E0;
  font-size: 14px;
  text-align: center;
  margin: 5px 0;
}

@media (max-width: 960px) and (min-width: 640px){
  .serviceMenu {
    width: 600px;
  }
  
  .serviceMenu_list_item {
    max-width: calc(6vw + 70px);
    min-width: calc(6vw + 70px);
  }
}

@media (max-width: 639px){

  .serviceMenu {
    width: 85vw;
  }
  
  .serviceMenu_list {
    padding: 30px 10px;
  }

  .serviceMenu_list_item {
    max-width: calc(10vw + 40px);
    min-width: calc(10vw + 40px);
    flex: 1 1 80px;
    font-size: 12px;
  }

  .serviceMenu_list::before {
    min-width: 150px;
    padding: 0 10px;
    font-size: 15px;
  }
}


/* Plan Card */
.cardPlanStyle {
  flex: 1 1 280px;
  max-width: 280px;
  height: auto;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  border: 1px solid rgba(99, 99, 99, 0.45); 
  margin: 15px;
}

@media (max-width: 960px) and (min-width: 640px){
  .cardPlanStyle{
    flex: 1 1 280px;
    max-width: 280px;
  }
}

@media (max-width: 639px){
  .cardPlanStyle{
    flex: 1 1 85vw;
    max-width: 85vw;
  }
}


/* Plan Card Upper */
.cardPlanStyle_theme {
  background-color: #39A4E0;
  text-align: center;
  padding: 15px;
  border-radius: 15px 15px 0 0;
}

.cardPlanStyle_title {
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  color:#FFFFFF;
}

.cardPlanStyle_firstTheme_title {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  margin: 0px auto 15px;
  padding: 3px 30px;
  color: #FFFFFF;
}

.cardPlanStyle_secondTheme_title {
  display: inline-block;
  background-color: #FFFFFF;
  border-radius: 15px;
  margin: 15px auto 5px;
  padding: 3px 30px;
  color: #39A4E0;
}

.cardPlanStyle_span {
  color: #39A4E0;
  font-size: 12px;
  line-height: 20px;
}

/* Plan Card Middle */
.cardPlanStyle_content {
  text-align: left;
  padding: 0px 15px 30px;
}

.cardPlanStyle_contentWhole {
  border-bottom: rgba(125, 125, 125, 0.5);
}

.cardPlanStyle_contentWhole_title {
  font-size: 16px;
  font-weight: bold;
  line-height: 30px;
  color: #39A4E0;
  padding: 15px 0 10px;
}

.cardPlanStyle_contentWhole_string {
  font-size: 12px;
  font-weight: normal;
  line-height: 20px;
  color: #121214;
}

.cardPlanStyle_contentFrame {
  text-align: center;
  background-color: #F5F5F5;
}

.cardPlanStyle_contentFrameWhole {
  display: inline-block;
  padding: 12px 25px;
}

.cardPlanStyle_contentFrameWhole_title {
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  color: #121214;
}

.cardPlanStyle_contentFrameWhole_string {
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
  color: #555555;
}

/* Plan Card Lower */
.cardPlanStyle_price {
  text-align: center;
  border-top: 3px solid #39A4E0;
  margin: 0px auto 15px;
  padding-top: 15px;
}

.cardPlanStyle_price_title {
  font-size: 20px;
  font-weight: bold;
  line-height: 45px;
  color: #39A4E0;
}

.cardPlanStyle_price_string {
  font-size: 14px;
  font-weight: normal;
  line-height: 30px;
  color: #121214;
}

@media (max-width: 639px){

}


/* FAQ Content */
.faqCardStyle {
  margin: 30px;
  padding: 30px 30px 30px 90px;
  background-color: rgba(235, 235, 235, 0.5);
}

.faqCardStyle_title {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  color: #121214;
  margin-bottom: 30px;
}

.faqCardStyle_title::before {
  content: "Q";
  display: block;
  width: 30px;
  height: 30px;
  background-color: #4BB492;
  border-radius: 50%;
  position: absolute;
  left: -60px;
  top: 0px;
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 30px;
}

.faqCardStyle_string {
  position: relative;
  font-size: 14px;
  font-weight: normal;
  line-height: 30px;
  color: #121214;

}

.faqCardStyle_string::before {
  content: "A";
  display: block;
  width: 30px;
  height: 30px;
  background-color: #FFFFFF;
  border-radius: 50%;
  border: 1px solid #4BB492;
  position: absolute;
  left: -60px;
  top: 0px;
  text-align: center;
  color: #4BB492;
  font-size: 14px;
  font-weight: 700;
  line-height: 30px;
}

@media (max-width: 639px){
  .faqCardStyle {
    margin: 30px 0;
    padding: 15px 15px 15px 60px;
  }

  .faqCardStyle_title {
    line-height: 26px;
  }

  .faqCardStyle_title::before {
    width: 26px;
    height: 26px;
    line-height: 26px;
    left: -45px;
  }
  .faqCardStyle_string {
    line-height: 26px;
  }

  .faqCardStyle_string::before {
    width: 26px;
    height: 26px;
    line-height: 26px;
    left: -45px;
  }
}