@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}
body{
    font-family: "Noto Sans JP", sans-serif;
    margin: 0;
}

.contents {
    margin: 0 auto;
    margin-top: 67px;
    width: 500px;
}


a {
    text-decoration-color: none;  /*リンクの色を消す*/
    font-family: "Noto Sans JP", sans-serif;
    color: #ffffff;
    font-weight: 400;
    text-decoration: none;
    width: fit-content;
}
img {
    object-fit: fill;
    object-position: center center;
    width: 100%;
}

.logo{
    object-fit: contain;
}

p{
    font-family: "Noto Sans JP", sans-serif;
}

.h2_box {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
    margin-bottom: 2.5vw;
}

h2 {
    background-color: #ffffff;
    color: #2291BF;
    font-size: 3vw;
    font-weight: 500;
    padding: 0.5vw;
    width: fit-content;
    letter-spacing: -0.1em;
}

h1 {
    line-height: 1.1;
}

.komidasi {
    color: #1c1c1c;
    font-size: 2.3vw;
    font-weight: 500;
}


.roma_box {
    display: flex;
    align-items: center;
}



.roma {
    font-family: "Rubik", sans-serif;
    font-size: 1vw;
    color: #ffffff70;
}

.midasi {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 4.5vw;
    font-weight: 500;
    letter-spacing: -0.1em;
    line-height: 1.2;
    color: #ffffff;
}

.text{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
}

  html,body {
    overflow-x: hidden;
  }

/*追従*/


.inner {
    width: 1000px;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

/*画像の下の隙間を消すコード*/



img{
	vertical-align:top;
}

.w_85 {
    margin: 0 2vw 0 15vw;
}

.view_w {
    border-radius: 100vw;
    padding: 0.8vw 1.5vw;
    border: solid #ffffff 0.2vw;
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 17vw;
}

.view_w p {
    font-family: "Rubik", sans-serif;
    font-size: 1.5vw;
}

.view_b {
    background-color: #2291BF;
    border-radius: 100vw;
    padding: 0.8vw 1.5vw;
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 17vw;
}

.view_b p {
    font-family: "Rubik", sans-serif;
    font-size: 1.5vw;
}

.yajirusi_w {
    width: 2.5vw;
    position: absolute;
    right: 1.5vw;
    top: 50%;
    transform: translateY(-50%);
}

.solid_box {
    display: flex;
    margin-right: 2vw;
    display: flex;
    justify-content: end;
}

.solid {
    background-color: #ffffff60;
    height: 0.2vw;
    width: 85%;
}

.no {
    font-family: "Rubik", sans-serif;
    font-size: 7.5vw;
    font-weight: 400;
}





/* HEADER
------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  width: 500px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}

/* ロゴ */
.logo img {
  height: 40px;
}

/* ハンバーガー */
.hamburger {
  width: 44px;
  height: 44px;
  background: #e60023; /* 赤丸 */
  border-radius: 50%;
  border: none;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  transform: translateX(-50%);
  transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }

/* ×に変形 */
.hamburger.active span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

/* オーバーレイ */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  width: 500px;
  margin: 0 auto;
}

.overlay.active {
  display: flex;
}

/* メニュー */
.menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  background: #F0F0F0;
  padding: 12px 20px 12px 25px;
  text-align: center;
  text-decoration: none;
  color: #FF0000;
  border-radius: 10px;
  font-weight: bold;
  width: 430px;
}

.maru {
    background-color: #ffffff;
    border-radius: 100vw;
    height: 40px;
    width: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.r {
    background-color: #FF0000;
    width: 100px;
}

.maru img {
    height: auto;
    width: 20px;
}

.menu .logo {
    width: 150px;
}










.pc_header {
    display: block;
    z-index: 100;
    padding: 1vw 2vw;
    position: fixed;
    width: 100%;
    transition: opacity 0.6s ease;
    opacity: 1;
    background-color: #2291BF;
}

.pc_header.hidden {
  opacity: 0;
  pointer-events: none; /* フェードアウト時にクリックできないように */
}

.pc_header .u {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}


.contact_btn_box {
    display: flex;
    gap: 1.5vw;
}

.tel {
    background-color: #ffffff;
    border-radius: 100vw;
    padding: 1vw 2vw;
    position: relative;
    width: 20vw;
}
.tel_no {
    font-weight: 400;
    color: #2291BF;
    font-size: 1.5vw;
}

.tel .text {
    color: #2291BF;
    font-size: 1.2vw;
}

.time {
    font-weight: 400;
    color: #2291BF;
}

.tel .yajirusi {
    width: 2.5vw;
    position: absolute;
    right: 2vw;
    top: 50%;
    transform: translateY(-50%);
}

.contact_btn_box .contact {
    border-radius: 100vw;
    border: solid 0.2vw #ffffff;
    background-color: #2291BF;
    padding: 1vw 2vw;
    position: relative;
    width: 20vw;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}


.contact_btn_box .contact p {
    font-weight: 500;
}

.contact_btn_box .contact .text {
    color: #ffffff;
    font-size: 1.5vw;
}

.contact_btn_box .contact .yajirusi {
    width: 2.5vw;
    position: absolute;
    right: 2vw;
    top: 50%;
    transform: translateY(-50%);
}

.pc_header .d {
    display: flex;
    flex-direction: column;
    gap: 0.8vw;
    position: absolute;
    top: 10vw;
    left: 2vw;
}

.pc_header .d a {
    font-size: 1.2vw;
}

.pc_header.headerColorScroll {
    background-color: rgba(52, 52, 52, 0.562);
    transition: color 0.4s ease-in;
  }

.pc_top {
    background-image: url(../images/20241118_1250.png);
    background-size: cover;
    height: 770px;
}



.top_icon {
    width: 28vw;
    height: auto;
}

.pc_menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pc_menu p{
    font-size: 15px;
    color: #ffff;
    font-weight: 700;
}

.pc_menu a {
    font-size: 16px;
    height: max-content;
    color: #ffff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    letter-spacing: 0.1em;
    font-weight: 600;
}


.pc_menu .btn {
	position: relative;
	width: 230px;
	height: 80px;
	margin: 0 auto;
	display: block;
	overflow: hidden;
	cursor: pointer;
}
.pc_menu .btn img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	display: block;
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
.pc_menu .btn:hover img:nth-of-type(2) {
	opacity: 0;
}




/* top_ga------------------------------- */

/*

.top_ga {
    height: 640px;
    background-image: url(../images/20241004_1545.svg);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
}

.top_ga .text_box {
    width: 1000px;
}

.top_ga .no1 {
    font-weight: 700;
    font-size: 45px;
    color: #FF0000;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: inline;
    padding: 0.2em;
    line-height: 2.2;
    background-color: #ffff;
}

.top_ga .no2 {
    font-weight: 700;
    font-size: 18px;
    color: #FF0000;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: inline;
    padding: 0.2em;
    line-height: 2.2;
    background-color: #ffff;
}

*/




/* area_top
------------------------------- */

.area_top {
    margin-top: 8vw;
}

.area_top .w_85 {
    display: flex;
    justify-content: end;
    position: relative;
}

.area_top img {
    width: 70vw;
}

.area_top .text_box {
    position: absolute;
    bottom: 2.5vw;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.area_top h1 {
    background-color: #ffffff;
    color: #2291BF;
    font-size: 5.5vw;
    font-weight: 600;
    padding: 0.5vw;
    width: fit-content;
    letter-spacing: -0.1em;
}




/* area1
---------------------------------------- */

.area1 {
    padding-bottom: 50px;
}

.cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.cta img{
    width: 80%;
}
/* area2------------------------------- */


.area2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* area3------------------------------- */

.area3 {
    padding-top: 60px;
}



/* area4------------------------------- */


/* area5------------------------------- */

.area5 {
    padding-top: 60px;
}


/* area6------------------------------- */

.area6 {
    padding-top: 60px;
}

/* area7------------------------------- */

.area7 {
    padding-top: 60px;
}

/* area8------------------------------- */

.area8 {
    background-color: #CDEFFF;
    padding-bottom: 50px;
}

/* area10------------------------------- */

.area10 {
    background-color: #CDEFFF;
    padding-bottom: 50px;
}

/* area12------------------------------- */

.area12 {
    background-color: #CDEFFF;
}

/* area13------------------------------- */

.area13 {
    background-color: #ffffff;
    padding-bottom: 50px;
}

/* area14------------------------------- */

.area14 {
    background-color: #CDEFFF;
}

/* area16------------------------------- */

.area16{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.area16 .midasi {
    font-size: 50px;
    font-weight: 700;
    background: linear-gradient(180deg, #0085EB, #20C3FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.area16 .midasi_box {
    margin-bottom: 20px;
}

.form {
    padding: 20px 0;
}

/* footer------------------------------------------------------------------------------------------------ */

.page-fotter {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #111111;
    padding: 15px;
    color: #ffffff;
    
}

.page-fotter p {
    font-size: 14px;
}





/* contact ======================================================================================== */
/* ======================
   Contact Form 基本デザイン
====================== */

.wp-contactform {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  gap: 24px;
  padding: 0 20px;
}

.wp-contactform  div {
    width: 100%;
}


.wp-contactform dt {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  color: #222;
}

.wp-contactform .required,
.requied {
  color: #e60000;
  font-size: 14px;
}

.wp-contactform dd {
  margin: 0;
}

/* ======================
    input / select / textarea 共通
====================== */
.wp-contactform input,
.wp-contactform select,
.wp-contactform textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background: #fff;
  box-sizing: border-box;
  font-family: inherit;
}

.wp-contactform input:focus,
.wp-contactform select:focus,
.wp-contactform textarea:focus {
  border-color: #000;
  outline: none;
}

/* ======================
    select box (矢印)
====================== */
.wp-contactform select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23000' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
}

/* ======================
    textarea
====================== */
.wp-contactform textarea {
  resize: vertical;
  min-height: 160px;
}

/* ======================
    送信ボタン
====================== */
.submitwrap {
  text-align: center;
  margin: 32px;
}

.submitwrap input[type="submit"] {
  background: #FF0000;
  color: #fff;
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.submitwrap input[type="submit"]:hover {
  opacity: 0.85;
}


/* ======================
    スマホ調整
====================== */
@media (max-width: 768px) {
  .wp-contactform {
    gap: 18px;
    padding: 0 20px;
  }

  .wp-contactform dt {
    font-size: 15px;
  }

  .submitwrap input[type="submit"] {
    width: 100%;

  }

}





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

.pulse {
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  animation: pulseEffect 1s ease-in-out infinite;
}

@keyframes pulseEffect {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}


/*モバイル版
--------------------------------------------------------------------------モバイル版*/
@media (max-width: 600px) {



    .contents {
        width: 100%;
    }

    p {
        line-height: 1.2em;
        font-size: 4vw;
    }

    h2 {
        font-size: 9vw;
        padding: 1vw;
    }

    .h2_box {
        gap: 1.5vw;
        margin-bottom: 5vw;
    }

    .text {
        font-size: 4vw;
    }

    a {
        font-size: 4vw;
    }

    .midasi {
        font-size: 10vw;
    }

    .midasi_box {
        padding-bottom: 10vw;
    }

    .komidasi {
        font-size: 6vw;
    }

    

    .roma {
        font-size: 4vw;
    }

    .view_w {
        border: solid #ffffff 0.5vw;
        padding: 2vw 5.5vw;
        width: 50vw;
    }

    .view_b {
        padding: 2vw 5.5vw;
        width: 50vw;
    }

    .view_w p {
        font-size: 4.5vw;
    }

    .view_b p {
        font-size: 4.5vw;
    }

    .yajirusi_w {
        width: 5.5vw;
        right: 4vw;
    }


    .pc {
        display: none;
    }

    .sp {
        display: block;
    }


    /* ヘッダー------------------------------- */

    .header {
        width: 100%;
    }

    .overlay {
        width: 100%;
    }

    .menu {
        width: 100%;
        padding: 0 20px;
    }

    .menu a {
        width: 100%;
    }

    /* area_top------------------------------- */


    /* area1------------------------------- */



    /* area2------------------------------- */

    /* area3------------------------------- */

  

    /* area4------------------------------- */

  

    /* area5------------------------------- */


  

    /* area6------------------------------- */

  

    /* area7------------------------------- */ 




    /* footer------------------------------- */

    .page-fotter {
        background-color: #111111;
        color: #ffffff;
        padding: 20px;
    }
    







    /* contact ======================================================================================== */



    .contact_area1 .wrapper_w {
        margin: 10vw 0 20vw 0;
    }
    
    .contact_area1 label {
        font-size: 4vw;
    }

    .contact_area1 .contact .inner {
        width: 90%;

    }

    .contact_area1 form {
        width: 100%;
    }

    .contact_area1 form div {
        flex-direction: column;
        margin-bottom: 5vw;
    }

    .contact_area1 .contact label {
        margin-bottom: 10px;
        margin: 0 0 3vw 0;
    }

    .contact_area1 input[type="text"], .contact_area1 input[type="email"], .contact_area1 input[type="tel"], .contact_area1 select {
        width: 100%;
        height: 10vw;
        border-radius: 2vw;
    }

    .contact_area1 input[type="text"], .contact_area1 input[type="email"], .contact_area1 input[type="tel"], .contact_area1 textarea, .contact_area1 select {
        font-size: 4vw;
    }

    .contact_area1 textarea {
        width: 100%;
    }

    .contact_area1 input[type="image"]{
        width: 100%;
        margin-top: 20px;


    }

    .contact_area1 .contact .required {
        font-size: 3vw;
        margin-left: 2.5vw;
        padding: 0.2vw 0.8vw;
    }

    .contact_area1 input[type="text"], .contact_area1 input[type="email"], .contact_area1 input[type="tel"], .contact_area1 textarea, .contact_area1 select {
        padding: 2vw;
    }

    .contact_area1 textarea {
        height: 35vw;
    }

    .contact_area1 input[type="text"], .contact_area1 input[type="email"], .contact_area1 input[type="tel"], .contact_area1 textarea, .contact_area1 select {
        border-radius: 2vw;
    }

    .contact_area1 .contact button {
        width: 50vw;
    }



}