@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* ーーーーーーーー　全体　ーーーーーーーー */

/* テキストフォント */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.english {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* 固定ページタイトル消す */
.c-pageTitle {
	display: none;
}

/* パンくずリスト消す */
#breadcrumb {
 display: none;
}

/* ーーーーーーーー　ヘッダー　ーーーーーーーー */
/* 波型 */
.l-header::after {
  content: "";
  position: absolute;
  top: 79px;
  left: 0;
  width: 100%;
  height: 110px;
	object-fit: cover;
  background-image: url('https://nicecream-jp.com/wp-content/uploads/2026/01/header_-mani2.png');
  background-repeat: no-repeat;
	background-size: contain;
}

/* 英語フォント */
.l-header .l-header__inner {
	font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
	height: 80px;
}

/* アイコンリスト */
.original_pc_headericon .headericon_iconbox_ul {
	display: flex;
    width: 130px;
}

.headericon_iconbox_ul .headericon_iconbox_li {
	padding-right: 15px;
	padding-left: 15px;
}

.headericon_iconbox_ul .headericon_iconbox_li:hover {
	opacity: 0.7;
}

/* 全体バランス調整 */
.l-header {
	height: 80px;
}

.c-gnav .menu-item a {
    padding-right: 20px;
	padding-left: 20px;
}

.c-gnav .menu-item a .ttl {
    font-size: 18px;
}

/*　ーーーーーーーー ブログページ ーーーーーーーー　*/
.p-postListTab .c-tabList__button{
	font-family: "Poppins", sans-serif;
	font-size:16px;
}

/*　ーーーーーーーー お問い合わせ ーーーーーーーー　*/
/* フォーム全体のスタイル */
.wpcf7 {
	max-width: 100%;
	margin: auto;
}

/* ラベルのスタイル */
.wpcf7-form label {
	display: block;
	margin-bottom: 10px;
}

/* 必須フィールドのラベルスタイル */
.wpcf7-form .required {
	background-color: #FACC55;
	color: #ffffff;
	padding: 2px 5px;
	border-radius: 3px;
	margin-left: 10px;
	font-size: 12px;
}

/* インプットフィールドのスタイル */
.wpcf7-text,
.wpcf7-submit,
.wpcf7-select {
	width: 100%;
	background-color: #FFF4D7;
	border: none;
}

/* テキストエリアのスタイル */
.wpcf7-form input, 
.wpcf7-form textarea,
.wpcf7-select{
	color: #7A7361;
}

.wpcf7-form textarea {
	width: 100%;
	background-color: #FFF4D7;
	color: #7A7361;
	border: none;
}

/* 送信できないボタンの色 */
.wpcf7-submit:disabled {
	background-color: #7A7361;
	color: white;
}

/* プラポリ、セキュリティーボタン */
.wpcf7-form-control-wrap .wpcf7-list-item,
.wpcf7-turnstile {
	margin: 1em 0;
	display: block;
	text-align: center;
}

/* 文字色やボーダーの色 */
.wpcf7-not-valid-tip {
	color: #FACC55;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #FACC55;
}

/*　ーーーーーーーー home,aboutページ ーーーーーーーー　*/
/* 行間 */
.wp-block-column {
	line-height:1.7;
}

/*　ーーーーーーーー aboutページ ーーーーーーーー　*/
/* 波型 */
.about-mission::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
	object-fit: cover;
  background-image: url('https://nicecream-jp.com/wp-content/uploads/2026/01/mission_nami2.png');
  background-repeat: no-repeat;
	background-size: contain;
}

/* missonのマージン */
.swell-block-fullWide__inner .aboutmission_mt0 {
	margin-top: 0px;
}

/*　ーーーーーーーー 記事ページ ーーーーーーーー　*/
body .single-post .l-article {
	margin-top: 100px;
}

@media screen and (max-width: 782px){
	body .single-post .l-article {
	margin-top: 50px;
}
}

/*　ーーーーーーーー ローディングページ ーーーーーーーー　*/
.loading {
  background-color: #fff; /*背景色*/
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2s forwards;
}

.loading img {
  opacity: 0;
  animation: logo_fade 2s 0.2s forwards;
  width: 250px; /* ロゴのサイズを指定（パソコン） */
}

@media screen and (max-width: 959px) {
  .loading img {
    width: 200px; /* ロゴのサイズを指定（スマホ） */
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}

/*　ーーーーーーーー スマホ ーーーーーーーー　*/
/* ヘッダー文字 */
.p-spMenu__inner {
	font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* ハンバーガーメニューアイコン */
.p-spMenu__bottom .widget_text .p-blogParts {
	margin-left: 20px;
	max-width: 80px;
}

@media screen and (max-width: 599px){
	.p-spMenu__bottom .widget_text .p-blogParts {
	max-width: 22%;
}
}


@media screen and (max-width: 782px){
/* top1.2.3の画像 */
	.wp-block-column .wp-image-221 ,
	.wp-block-column .wp-image-222 ,
	.wp-block-column .wp-image-223	{
		width: 220px;
	}
	
/* h2のmargin-top */
	.post_content .homeh2_sp_mt80 {
		margin-top: 80px;
	}

/* about1.2.3の画像 */
	.wp-block-column .wp-image-400 ,
	.wp-block-column .wp-image-401 ,
	.wp-block-column .wp-image-402 ,
	.wp-block-column .wp-image-403 {
		width: 400px;
	}
	
}
